.travis.yml 431 Bytes
Newer Older
1 2
os:
  - linux
3 4

language: go
5

6
go:
7 8 9 10 11 12 13 14 15 16 17
  - 1.11.x

env:
  global:
    - GOTFLAGS="-race"
  matrix:
    - BUILD_DEPTYPE=gx
    - BUILD_DEPTYPE=gomod


# disable travis install
18
install:
19 20
  - true

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

24 25 26 27

cache:
  directories:
    - $GOPATH/src/gx
28 29
    - $GOPATH/pkg/mod
    - $HOME/.cache/go-build
30 31

notifications:
32
  email: false