about summary refs log blame commit diff stats
path: root/.travis.yml
blob: c4d93ff5ab8f015daa937d36dfd53d88729efd5c (plain) (tree)
1
2
3
4
5
6
7
8
9


            

         
 

         
 

            

                  
 


                                                      
           




                                                                                                                 
                                         
                                                                  

         




                                           
language: go

go:
 - 1.11.x
 - 1.12.x

os: 
  - linux

dist: xenial

env:
  - GO111MODULE=on

before_script:
  - sudo apt-get update
  - sudo apt-get install -y libc6:i386 libstdc++6:i386
  - cd svc/
  - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
  - chmod +x ./cc-test-reporter
  - ./cc-test-reporter before-build

script: 
  - go test -v -race --coverprofile=c.out
  - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
  - cd ..
  - make

after_script:
  - make clean
  - cd svc/
  - go test -v -run=NONE -bench . -benchmem