-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
travis: add initial support for Travis CI
Signed-off-by: Paul Moore <[email protected]>
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# 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 |