.travis.yml 312 Bytes
Newer Older
Jeromy's avatar
Jeromy committed
1
os:
Steven Allen's avatar
Steven Allen committed
2 3 4
  - linux

sudo: false
Jeromy's avatar
Jeromy committed
5 6 7 8

language: go

go:
hannahhoward's avatar
hannahhoward committed
9
    - 1.11.x
Jeromy's avatar
Jeromy committed
10

Steven Allen's avatar
Steven Allen committed
11 12
install:
  - make deps
Jeromy's avatar
Jeromy committed
13 14

script:
Steven Allen's avatar
Steven Allen committed
15
  - bash <(curl -s https://raw.githubusercontent.com/ipfs/ci-helpers/master/travis-ci/run-standard-tests.sh)
Jeromy's avatar
Jeromy committed
16 17 18 19

cache:
    directories:
        - $GOPATH/src/gx
Steven Allen's avatar
Steven Allen committed
20 21 22 23 24

notifications:
  email: false

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