1os:
2  - linux
3
4language: go
5
6go:
7  - 1.13.x
8
9env:
10  global:
11    - GOTFLAGS="-race"
12    - TEST_STRESS_TIMEOUT_MS=180000
13  matrix:
14    - BUILD_DEPTYPE=gomod
15
16
17# disable travis install
18install:
19  - true
20
21script:
22  - bash <(curl -s https://raw.githubusercontent.com/ipfs/ci-helpers/master/travis-ci/run-standard-tests.sh)
23
24
25cache:
26  directories:
27    - $GOPATH/pkg/mod
28    - $HOME/.cache/go-build
29
30notifications:
31  email: false
32