.travis.yml 387 Bytes
Newer Older
Kevin Atkinson's avatar
Kevin Atkinson committed
1 2 3 4 5 6
os:
  - linux

language: go

go:
7 8 9 10 11 12 13
  - 1.11.x

env:
  global:
    - GOTFLAGS="-race"
  matrix:
    - BUILD_DEPTYPE=gomod
Kevin Atkinson's avatar
Kevin Atkinson committed
14

15 16

# disable travis install
17
install:
18
  - true
19

Kevin Atkinson's avatar
Kevin Atkinson committed
20
script:
21
  - bash <(curl -s https://raw.githubusercontent.com/ipfs/ci-helpers/master/travis-ci/run-standard-tests.sh)
Kevin Atkinson's avatar
Kevin Atkinson committed
22

23

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

notifications:
  email: false