k3s/vendor/github.com/opencontainers/runc/.travis.yml

35 lines
763 B
YAML
Raw Normal View History

2019-01-12 04:58:27 +00:00
language: go
go:
- 1.9.x
- 1.10.x
- 1.11.x
- tip
matrix:
allow_failures:
- go: tip
go_import_path: github.com/opencontainers/runc
# `make ci` uses Docker.
sudo: required
services:
- docker
env:
global:
- BUILDTAGS="seccomp apparmor selinux ambient"
before_install:
2019-08-30 18:33:25 +00:00
- echo "deb http://archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse" | sudo tee -a /etc/apt/sources.list
2019-01-12 04:58:27 +00:00
- sudo apt-get -qq update
2019-08-30 18:33:25 +00:00
- sudo apt-get install -y libseccomp-dev/trusty-backports
2019-01-12 04:58:27 +00:00
- go get -u golang.org/x/lint/golint
- go get -u github.com/vbatts/git-validation
- env | grep TRAVIS_
script:
- git-validation -run DCO,short-subject -v
- make BUILDTAGS="${BUILDTAGS}"
- make BUILDTAGS="${BUILDTAGS}" clean ci cross