Skip to content

Commit c17c3f8

Browse files
committed
travis: drop support for Ubuntu Precise
Ubuntu Precise is end of life since April 2017. At that point in time, Precise was still the main distro on which Travis CI built upon, with the Trusty-based images still being in a beta state. But since June 21st, Trusty has officially moved out of beta and is now the default image for all new builds. Right now, we build on both old and new images to assure we support both. Unfortunately, this leaves us with the highest minimum version for CMake being 2.8.7, as Precise has no greater version in its repositories. And because of this limitation, we cannot actually use object libraries in our build instructions. But considering Precise is end of life and Trusty is now the new default for Travis, we can and should drop support for this old and unmaintained distribution. And so we do.
1 parent 524c1d3 commit c17c3f8

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ matrix:
3030
- os: osx
3131
compiler: gcc
3232
include:
33-
- compiler: gcc
34-
env: PRECISE=1
35-
os: linux
36-
dist: precise
3733
- compiler: gcc
3834
env: COVERITY=1
3935
os: linux

script/install-deps-linux.sh

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,4 @@
22

33
set -x
44

5-
if [ -z "$PRECISE" ]; then
6-
echo "deb http://libgit2deps.edwardthomson.com trusty libgit2deps" | sudo tee -a /etc/apt/sources.list
7-
sudo apt-key adv --keyserver pgp.mit.edu --recv 99131CD5
8-
sudo apt-get update -qq
9-
sudo apt-get install -y curl libcurl3 libcurl3-gnutls libcurl4-gnutls-dev
10-
fi
11-
125
sudo apt-get install -y cmake libssh2-1-dev openssh-client openssh-server valgrind

0 commit comments

Comments
 (0)