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

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

language: go

go:
Steven Allen's avatar
Steven Allen committed
10
    - 1.9.x
Jeromy's avatar
Jeromy committed
11

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

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

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

notifications:
  email: false

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