From de20d109e9759dcd09a9580a5c32717aa5e5157a Mon Sep 17 00:00:00 2001 From: Christian Kujau Date: Sat, 22 Mar 2025 21:12:02 +0100 Subject: [PATCH] travis-ci: switch to Ubuntu 24.04 Remove references to old g++ versions and switch to a current Ubuntu image instead. Documentation: * [The Ubuntu 24.04 (Noble Numbat) Build Environment](https://docs.travis-ci.com/user/reference/noble/) * [Build a C++ Project](https://docs.travis-ci.com/user/languages/cpp/) --- .travis.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 80001dc..5e5dfa5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,8 @@ +dist: noble +install: make get-deps language: cpp script: - autoreconf -i - - CC=gcc-7 CXX=g++-7 ./configure + - ./configure - make - make -f Makefile.orig check -addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - g++-7