.travis.yml 423 Bytes
Newer Older
1 2
os:
  - linux
Kevin Atkinson's avatar
Kevin Atkinson committed
3

4 5 6
language: go

go:
Steven Allen's avatar
Steven Allen committed
7
  - 1.13.x
8 9 10 11 12 13 14

env:
  global:
    - GOTFLAGS="-race"
    - TEST_STRESS_TIMEOUT_MS=180000
  matrix:
    - BUILD_DEPTYPE=gomod
15

16 17

# disable travis install
18
install:
19
  - true
20 21

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

24

25
cache:
26 27 28
  directories:
    - $GOPATH/pkg/mod
    - $HOME/.cache/go-build
29 30 31

notifications:
  email: false