.travis.yml 408 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 13 14 15 16 17 18
env:
  global:
    - GOTFLAGS="-race"
  matrix:
    - BUILD_DEPTYPE=gomod


# disable travis install
install:
  - true
Steven Allen's avatar
Steven Allen committed
19 20 21 22 23 24 25 26

script:
  - bash <(curl -s https://raw.githubusercontent.com/ipfs/ci-helpers/master/travis-ci/run-standard-tests.sh)


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