diff options
| author | Joe Richey joerichey@google.com <joerichey@google.com> | 2017-07-18 11:04:50 -0700 |
|---|---|---|
| committer | Joe Richey joerichey@google.com <joerichey@google.com> | 2017-07-18 21:07:01 -0700 |
| commit | f898a826ab24e03019323ade6a8785e2bf463a41 (patch) | |
| tree | d78b435841a164c56981f9be6f5b702baf7b6de7 /.travis.yml | |
| parent | 8867856db45abaed8b9e2539ee7c34d99360db56 (diff) | |
Travis.yml and Makefile now run integration tests.
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..2a186aa --- /dev/null +++ b/.travis.yml @@ -0,0 +1,24 @@ +language: go +sudo: required +go: + - 1.8.x +dist: trusty + +addons: + apt: + sources: + - sourceline: 'deb http://en.archive.ubuntu.com/ubuntu/ artful main universe' + packages: + - libargon2-0-dev + - libblkid-dev + - libpam0g-dev + - e2fsprogs + - protobuf-compiler + - git # Needed to stop git from getting deleted + +install: + - make go-tools + - make test-setup + +script: + - make check |