.travis.yml 387 Bytes
Newer Older
1 2
os:
  - linux
3 4 5 6

language: go

go:
7
  - 1.11.x
8

Jakub Sztandera's avatar
Jakub Sztandera committed
9 10 11 12 13 14 15 16
env:
  global:
    - GOTFLAGS="-race"
  matrix:
    - BUILD_DEPTYPE=gomod


# disable travis install
17
install:
Jakub Sztandera's avatar
Jakub Sztandera committed
18
  - true
19 20 21 22

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

Jakub Sztandera's avatar
Jakub Sztandera committed
23

24 25
cache:
  directories:
Jakub Sztandera's avatar
Jakub Sztandera committed
26 27
    - $GOPATH/pkg/mod
    - $HOME/.cache/go-build
28 29 30

notifications:
  email: false