diff options
| author | Joseph Richey <joerichey@google.com> | 2017-07-18 21:51:15 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-18 21:51:15 -0700 |
| commit | 8f4830c7715e5719780f195ce3400b8768c30688 (patch) | |
| tree | 2db0016cc45fb35ab027a7dd95c8050a05605143 /.travis.yml | |
| parent | 8867856db45abaed8b9e2539ee7c34d99360db56 (diff) | |
| parent | cc2de52228d89b2fbc53bc0e710aae699434d6da (diff) | |
Merge pull request #23 from google/fix
travis CI: Test config file
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 |