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

language: go

go:
hannahhoward's avatar
hannahhoward committed
7
  - 1.11.x
Jeromy's avatar
Jeromy committed
8

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:
19
  - true
Jeromy's avatar
Jeromy committed
20 21

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

24

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

notifications:
  email: false