.travis.yml 369 Bytes
Newer Older
1 2
os:
  - linux
Steven Allen's avatar
Steven Allen committed
3 4

language: go
5

Steven Allen's avatar
Steven Allen committed
6 7 8
go:
  - 1.11.x

9 10 11 12
env:
  global:
    - GOTFLAGS="-race"
    - BUILD_DEPTYPE=gomod
13 14 15
  matrix:
    - TEST_PHASE=test
    - TEST_PHASE=benchmark
16 17 18 19

# disable travis install
install:
  - true
Steven Allen's avatar
Steven Allen committed
20 21

script:
22
  - ./bin/test-exec.sh
Steven Allen's avatar
Steven Allen committed
23 24 25 26

cache:
  directories:
    - $GOPATH/src/gx
27 28
    - $GOPATH/pkg/mod
    - $HOME/.cache/go-build
Steven Allen's avatar
Steven Allen committed
29 30 31

notifications:
  email: false