diff options
| author | Eric Biggers <ebiggers@google.com> | 2020-05-09 12:54:37 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-09 12:54:37 -0700 |
| commit | 1aef2541a434bd9e88ebd52be72f13d56c5ef748 (patch) | |
| tree | e8466aa2485f149dac5254ed8153f7bd940bcd32 | |
| parent | c5764330ebc69f15b9bf13b94cfef45732864b5a (diff) | |
travis.yml: stop overriding e2fsprogs version (#222)
There's no longer a need to override the Ubuntu version that the
Travis CI builds install e2fsprogs from, since we now use
"dist: bionic", and e2fsprogs in Bionic supports encryption.
| -rw-r--r-- | .travis.yml | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index ce6c160..0de7c6e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -46,12 +46,7 @@ jobs: - name: Integration Tests sudo: required - addons: - apt: - sources: - - sourceline: 'deb http://en.archive.ubuntu.com/ubuntu/ artful main universe' - packages: - - e2fsprogs + before_install: sudo apt-get -y install e2fsprogs install: - go get -u github.com/mattn/goveralls - make test-setup |