diff options
| author | Joseph Richey <joerichey@google.com> | 2018-08-30 13:41:49 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-30 13:41:49 -0700 |
| commit | 0f451a722918f39fa07bd9337e4a14ca154b13ae (patch) | |
| tree | 9868ffed8cb74357a06e63b88c56d71b13b415af /.travis.yml | |
| parent | 1e1b67dae6c3ae3b5acb5ce377b01b286c3e676b (diff) | |
| parent | 1c9bafdec78b8f238a82314b6d9c566a951486c2 (diff) | |
Merge pull request #107 from google/mod
Use Go Modules and support Go 1.11 building
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 4c7bea4..309bcc2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: go sudo: false dist: trusty -go: 1.10.x +go: 1.11.x notifications: email: false @@ -23,11 +23,8 @@ jobs: - stage: presubmits env: Generate, Format, and Lint install: - - wget -q https://github.com/golang/dep/releases/download/v0.4.1/dep-linux-amd64 -O /tmp/dep - - chmod a+x /tmp/dep - make tools script: - - /tmp/dep status - make gen - bin/files-changed proto - make format @@ -41,6 +38,9 @@ jobs: - go build github.com/google/fscrypt/cmd/fscrypt - make + - <<: *build + go: 1.10.x + - env: Integration Tests sudo: required addons: |