
This breaks out the following service interfaces: - locks.Service - keyvalue.Service - notifications.Service - vulnerabilities.Service - layers.Service - namespaces.Service Make Travis work on my fork by rsyncing the build dir as coreos/clair
33 lines
492 B
YAML
33 lines
492 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.6
|
|
- 1.5
|
|
- tip
|
|
|
|
sudo: false
|
|
|
|
before_install:
|
|
- export GO15VENDOREXPERIMENT=1
|
|
|
|
install:
|
|
- echo 'nop'
|
|
|
|
script:
|
|
- mkdir -p $HOME/gopath/src/github.com/coreos/clair/
|
|
- rsync -az ${TRAVIS_BUILD_DIR}/ $HOME/gopath/src/github.com/coreos/clair/
|
|
- cd $HOME/gopath/src/github.com/coreos/clair/
|
|
- go test -v $(go list ./... | grep -v /vendor/)
|
|
|
|
services:
|
|
- postgresql
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- rpm
|
|
postgresql: "9.4"
|
|
|
|
notifications:
|
|
email: false
|