Update travis to ubuntu jammy (22.04)
authorBernd Schubert <bschubert@ddn.com>
Fri, 27 Jan 2023 22:14:55 +0000 (23:14 +0100)
committerNikolaus Rath <Nikolaus@rath.org>
Sat, 28 Jan 2023 09:35:34 +0000 (09:35 +0000)
A newer ubuntu version is required to get a more recent meson
(at least 0.50 now)

.travis.yml
test/travis-build.sh

index bcee2f2f0e7f7d5e24fd04579f127b8cb9b51dcf..0b5749c636c23666c5f417aa2e9f16807b418ad6 100644 (file)
@@ -1,10 +1,6 @@
 sudo: required
-dist: bionic
+dist: jammy
 
-before_install:
-    - curl https://spot.fedorapeople.org/spotfoss-ppa.key | sudo apt-key add -
-    - wget https://launchpad.net/~spotfoss/+archive/ubuntu/ppa/+files/valgrind_3.16.1-2_amd64.deb
-    - sudo apt install ./valgrind_3.16.1-2_amd64.deb
 language:
     - c
     - c++
@@ -15,14 +11,15 @@ addons:
     packages:
     - doxygen
     - clang
-    - libstdc++-7-dev 
+    - libstdc++-9-dev
     - libstdc++-10-dev
     - gcc
-    - gcc-7
+    - gcc-9
     - gcc-10
     - python3-pip
     - python3-setuptools
     - ninja-build
+    - valgrind
 install: test/travis-install.sh
 script: test/travis-build.sh
 
index 22b3e6adb9517ccd32828ed7e0f0bfa9ea622dad..f3a106a9b65ac8bb4b401498c7cd60d34fa730c0 100755 (executable)
@@ -24,7 +24,7 @@ export ASAN_OPTIONS="detect_leaks=1"
 export CC
 
 # Standard build
-for CC in gcc gcc-7 gcc-10 clang; do
+for CC in gcc gcc-9 gcc-10 clang; do
     echo "=== Building with ${CC} ==="
     mkdir build-${CC}; cd build-${CC}
     if [ "${CC}" == "clang" ]; then