.travis.yml 321 Bytes
Newer Older
Steven Allen's avatar
Steven Allen committed
1 2 3 4 5 6 7 8 9
sudo: required

os:
  - linux
  - osx

language: go

go:
Hector Sanjuan's avatar
Hector Sanjuan committed
10
  - 1.11.x
Steven Allen's avatar
Steven Allen committed
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

install:
  - make deps

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

cache:
    directories:
        - $GOPATH/src/gx

notifications:
  email: false

env: GOTFLAGS="-race -cpu=5"