diff --git a/.github/workflows/build_python.yml b/.github/workflows/build_python.yml index c14df7fad8..00dc3a6a9d 100644 --- a/.github/workflows/build_python.yml +++ b/.github/workflows/build_python.yml @@ -26,7 +26,7 @@ jobs: fail-fast: false matrix: # As of 20240501, macos-11/12/13 are AMD64, and macOS-14 is ARM64. - os: [ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022, macos-11, macos-12, macos-13, macos-14] + os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, windows-2019, windows-2022, macos-11, macos-12, macos-13, macos-14] steps: - name: Clone Repository (Latest) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 70c3636ceb..96c7a59a4c 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -38,7 +38,7 @@ jobs: # See https://github.com/fortran-lang/setup-fortran?tab=readme-ov-file#runner-compatibility # for the toolchains provided by fortran-lang/setup-fortran. We test the latest three on each OS. # First define the toolchains on Linux and macOS. - os: [ubuntu-latest, macos-12, macos-13] + os: [ubuntu-latest, ubuntu-24.04, macos-12, macos-13] toolchain: - {compiler: gcc, version: 11, cflags: '-Wall -Wextra -Wpedantic -Werror', fflags: '-Wall -Wextra -Wpedantic -Werror -fimplicit-none -fcheck=all -fstack-check -Wno-function-elimination'} - {compiler: gcc, version: 12, cflags: '-Wall -Wextra -Wpedantic -Werror', fflags: '-Wall -Wextra -Wpedantic -Werror -fimplicit-none -fcheck=all -fstack-check -Wno-function-elimination'} @@ -59,6 +59,12 @@ jobs: toolchain: {compiler: intel, version: '2024.0', cflags: '-Wall -Werror', fflags: '-warn all -debug extended -fimplicit-none -standard-semantics'} - os: ubuntu-latest toolchain: {compiler: intel, version: '2024.1', cflags: '-Wall -Werror', fflags: '-warn all -debug extended -fimplicit-none -standard-semantics'} + - os: ubuntu-24.04 + toolchain: {compiler: intel, version: '2023.2', cflags: '-Wall -Werror', fflags: '-warn all -debug extended -fimplicit-none -standard-semantics'} + - os: ubuntu-24.04 + toolchain: {compiler: intel, version: '2024.0', cflags: '-Wall -Werror', fflags: '-warn all -debug extended -fimplicit-none -standard-semantics'} + - os: ubuntu-24.04 + toolchain: {compiler: intel, version: '2024.1', cflags: '-Wall -Werror', fflags: '-warn all -debug extended -fimplicit-none -standard-semantics'} # What follows contains the toolchains for Windows, including gcc, intel classic, and intel. - os: windows-latest