.travis.yml 414 B

123456789101112131415161718192021222324252627282930
  1. os:
  2. - linux
  3. language: go
  4. go:
  5. - 1.11.x
  6. env:
  7. global:
  8. - GOTFLAGS="-race"
  9. - GO111MODULE=on
  10. matrix:
  11. - BUILD_DEPTYPE=gomod
  12. # disable travis install
  13. install:
  14. - true
  15. script:
  16. - bash <(curl -s https://raw.githubusercontent.com/ipfs/ci-helpers/master/travis-ci/run-standard-tests.sh)
  17. cache:
  18. directories:
  19. - $GOPATH/pkg/mod
  20. - /home/travis/.cache/go-build
  21. notifications:
  22. email: false