aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorMike Taves <mwtoews@gmail.com>2019-09-25 11:47:40 +1200
committerMike Taves <mwtoews@gmail.com>2019-09-25 20:50:07 +1200
commit4013aeaaf7796cfff6b97668870ce4a2af3d509a (patch)
tree3d19245a8df8c4f102d28c4b19a1065d81957b8f /.travis.yml
parent14828d9695ab54272fee0dab35a489180c20f2ea (diff)
downloadPROJ-4013aeaaf7796cfff6b97668870ce4a2af3d509a.tar.gz
PROJ-4013aeaaf7796cfff6b97668870ce4a2af3d509a.zip
Upgrade testing from trusty to xenial, and also:
* From openjdk-7 via apt to openjdk-11 via Travis CI xenial's $JAVA_HOME * From mingw 4.8 -> 5.3, as supported by xenial * clang+llvm for csa kept at version 6.0.0, but for ubuntu-16.04 * Furthermore xenial implicitly has many upgrades, specifically: - gcc 4.8.4 -> 5.4.0 - clang 4.0.0 -> 5.0.0 - cmake 3.9.2 -> 3.12.4 - python 3.4.3 -> 3.5.2 * cppcheck version kept at 1.61 (for trusty) due to many false positives with version 1.72 (for xenial) * Community code contribution documentation simplified to remove version of cppcheck, as this may outdated with updates to scripts
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml23
1 files changed, 11 insertions, 12 deletions
diff --git a/.travis.yml b/.travis.yml
index 79a78611..42924cd2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,4 +1,4 @@
-# This is the config file for building proj.4 and running its test suite
+# This is the config file for building proj and running its test suite
# with Travis-ci.org
language: cpp
@@ -15,9 +15,8 @@ matrix:
include:
- os: linux
- dist: trusty
+ dist: xenial
compiler: gcc
- sudo: required
services:
- docker
env:
@@ -25,9 +24,8 @@ matrix:
- DETAILS="linux, gcc"
- os: linux
- dist: trusty
+ dist: xenial
compiler: gcc
- sudo: required
services:
- docker
env:
@@ -40,12 +38,15 @@ matrix:
apt:
sources:
- ubuntu-toolchain-r-test
- packages: ['g++-7','make','autoconf','automake']
+ packages:
+ - g++-7
+ - make
+ - autoconf
+ - automake
- os: linux
- dist: trusty
+ dist: xenial
compiler: clang
- sudo: required
services:
- docker
env:
@@ -58,17 +59,15 @@ matrix:
- DETAILS="osx"
- os: linux
- dist: trusty
+ dist: xenial
compiler: gcc
- sudo: required
env:
- BUILD_NAME=mingw32
- DETAILS="mingw32"
- os: linux
compiler: gcc
- dist: trusty
- sudo: required
+ dist: xenial
env:
- BUILD_NAME=csa
- DETAILS="CLang Static Analyzer"