435c0d9fc8
This PR switches the Nomad repository from using govendor to Go modules for managing dependencies. Aspects of the Nomad workflow remain pretty much the same. The usual Makefile targets should continue to work as they always did. The API submodule simply defers to the parent Nomad version on the repository, keeping the semantics of API versioning that currently exists.
34 lines
565 B
YAML
34 lines
565 B
YAML
# Travis CI configuration for libseccomp-golang
|
|
|
|
# https://docs.travis-ci.com/user/reference/bionic
|
|
# https://wiki.ubuntu.com/Releases
|
|
|
|
dist: bionic
|
|
sudo: false
|
|
|
|
notifications:
|
|
email:
|
|
on_success: always
|
|
on_failure: always
|
|
|
|
arch:
|
|
- amd64
|
|
|
|
os:
|
|
- linux
|
|
|
|
language: go
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- build-essential
|
|
# TODO: use the main libseccomp git repo instead of a distro package
|
|
- libseccomp2
|
|
- libseccomp-dev
|
|
|
|
# run all of the tests independently, fail if any of the tests error
|
|
script:
|
|
- make check-syntax
|
|
- make check
|