33 lines
604 B
YAML
Raw Permalink Normal View History

2019-04-02 13:32:33 +01:00
os:
- linux
language: go
go:
2020-01-06 20:31:17 +01:00
- 1.13.x
2019-04-02 13:32:33 +01:00
env:
2020-03-09 20:28:14 +01:00
global:
- PIONS_LOG_WARN=all
- PIONS_LOG_ERROR=all
2019-04-02 13:32:33 +01:00
matrix:
- BUILD_DEPTYPE=gomod
# disable travis install
install:
- true
2019-05-07 13:49:22 +02:00
# run tests with and without race detection
2019-04-02 13:32:33 +01:00
script:
- bash <(curl -s https://raw.githubusercontent.com/ipfs/ci-helpers/master/travis-ci/run-standard-tests.sh)
2019-05-07 13:49:22 +02:00
- GOTFLAGS="-race" bash <(curl -s https://raw.githubusercontent.com/ipfs/ci-helpers/master/travis-ci/run-standard-tests.sh)
2019-04-02 13:32:33 +01:00
cache:
directories:
- $GOPATH/src/gx
- $GOPATH/pkg/mod
- $HOME/.cache/go-build
notifications:
email: false