open-consul/.travis.yml

24 lines
418 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.4"
2014-04-19 20:40:38 +00:00
branches:
only:
- master
- f-acl-ux
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