Skip to content

Commit

Permalink
travis: add initial support for Travis CI
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Moore <[email protected]>
  • Loading branch information
pcmoore committed Mar 13, 2020
1 parent 1c200e5 commit 20ac881
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .travis.yml
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

0 comments on commit 20ac881

Please sign in to comment.