open-consul/.travis.yml

24 lines
417 B
YAML
Raw Normal View History

2014-04-19 20:40:38 +00:00
language: go
go:
# Please keep this in-sync with the go version we build against in
# build-support/docker/Build-Go.dockerfile.
- "1.11.1"
2014-04-19 20:40:38 +00:00
branches:
only:
- master
2018-09-06 14:41:29 +00:00
- f-envoy
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 20:40:38 +00:00
script:
- make test-ci
2015-07-28 16:13:25 +00:00
sudo: false