4a1fa67f26
I apologize in advance for the rather long PR, but unfortunately there is not an easy way to break this up into smaller chunks. This separates the agent configuration into smaller, more consumable pieces just like the job specification.
29 lines
405 B
YAML
29 lines
405 B
YAML
sudo: required
|
|
dist: trusty
|
|
|
|
services:
|
|
- docker
|
|
|
|
language: go
|
|
|
|
go:
|
|
- 1.7
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
before_install:
|
|
- sudo apt-get update
|
|
- sudo apt-get install -y docker-engine liblxc1 lxc-dev lxc
|
|
- sudo apt-get install -y qemu
|
|
- ./scripts/install_rkt.sh
|
|
- ./scripts/install_consul.sh
|
|
- ./scripts/install_vault.sh
|
|
|
|
install:
|
|
- make bootstrap
|
|
|
|
script:
|
|
- make travis
|