diff --git a/Jenkinsfile b/Jenkinsfile index fac4835a..5b6b5952 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -125,6 +125,7 @@ pipeline { [os: 'Fedora-39', container: 'fedora.39.sif', extra: '-DCMAKE_CXX_STANDARD=20'], [os: 'Ubuntu-22.04-LTS', container: 'ubuntu.22.04.sif'], + [os: 'Ubuntu-24.04-LTS', container: 'ubuntu.24.04.sif'], ] def linux_jobs = jobMatrix('slurm', diff --git a/legacy/README.md b/legacy/README.md index 76f5695f..e7ad5cf3 100644 --- a/legacy/README.md +++ b/legacy/README.md @@ -95,6 +95,7 @@ please contact us. | macOS | x86_64 | 14 | AppleClang 15, gfortran 14 | 3.29.4 (brew) | | macOS | arm64 | 14 | AppleClang 15, gfortran 14 | 3.29.4 (brew) | | Ubuntu | x86_64 | 22.04 | GCC 11.4.0 | 3.22.1 | +| Ubuntu | x86_64 | 24.04 | GCC 13.2.0 | 3.28.3 | ## Included packages diff --git a/test/container/legacy/CMakeLists.txt b/test/container/legacy/CMakeLists.txt index b27129bf..ac1d7206 100644 --- a/test/container/legacy/CMakeLists.txt +++ b/test/container/legacy/CMakeLists.txt @@ -59,6 +59,7 @@ fs_legacy_container(OS fedora VERSION 38) fs_legacy_container(OS fedora VERSION 39) fs_legacy_container(OS ubuntu VERSION 20.04 BOOTSTRAP_CMAKE) fs_legacy_container(OS ubuntu VERSION 22.04) +fs_legacy_container(OS ubuntu VERSION 24.04) add_custom_target(all-legacy-containers DEPENDS ${legacy_containers})