consul/.travis.yml

21 lines
311 B
YAML
Raw Normal View History

2014-04-19 13:40:38 -07:00
language: go
go:
2017-09-07 18:16:02 +02:00
- 1.x
2014-04-19 13:40:38 -07:00
branches:
only:
- master
matrix:
include:
- env: GOTEST_PKGS="./api"
- env: GOTEST_PKGS="./agent"
- env: GOTEST_PKGS="./agent/consul"
- env: GOTEST_PKGS_EXCLUDE="./api|./agent|./agent/consul"
2014-04-19 13:40:38 -07:00
script:
- GOTEST_FLAGS="-p 3 -parallel 1" make test
2015-07-28 09:13:25 -07:00
sudo: true