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

language: go

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

9 10 11 12 13 14 15 16 17
env:
  global:
    - GOTFLAGS="-race"
  matrix:
    - BUILD_DEPTYPE=gx
    - BUILD_DEPTYPE=gomod


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

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

24

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

notifications:
  email: false