25 lines
316 B
YAML
25 lines
316 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.x
|
|
- master
|
|
|
|
os:
|
|
- linux
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- qemu
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_script:
|
|
- cd $GOPATH/src/github.com/jollheef/out-of-tree/tools/qemu-debian-img
|
|
- ./bootstrap.sh
|
|
- cd $GOPATH/src/github.com/jollheef/out-of-tree
|
|
|
|
script:
|
|
- go test -parallel 1 -v ./...
|