.travis.yml 431 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 17
env:
  global:
    - GOTFLAGS="-race"
  matrix:
    - BUILD_DEPTYPE=gx
    - BUILD_DEPTYPE=gomod


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

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
24

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

notifications:
  email: false