From e60528d3fed5584f4a4ed901dd9295c276aff57c Mon Sep 17 00:00:00 2001 From: Federico Perini Date: Tue, 4 Jun 2024 08:32:35 +0200 Subject: [PATCH 1/4] deactivate gcc-13 from CI --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index e5b706361..e4a5bfcf3 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -20,7 +20,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-12] - gcc_v: [10, 11, 12, 13] # Version of GFortran we want to use. + gcc_v: [10, 11, 12] # Version of GFortran we want to use. build: [cmake] include: - os: ubuntu-latest From 47c20415be982d0e5db9d0f0b86363e1477d2241 Mon Sep 17 00:00:00 2001 From: Federico Perini Date: Tue, 4 Jun 2024 14:23:33 +0200 Subject: [PATCH 2/4] add gcc-14, back 13, remove ubuntu+gcc-13 --- .github/workflows/CI.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index e4a5bfcf3..a92971ede 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -20,8 +20,11 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-12] - gcc_v: [10, 11, 12] # Version of GFortran we want to use. + gcc_v: [10, 11, 12, 13, 14] # Version of GFortran we want to use. build: [cmake] + exclude: + - os: ubuntu-latest + gcc_v: 13 include: - os: ubuntu-latest gcc_v: 10 From ee9f8b87d8f3255bda1e04ce5001f8924fd1b90b Mon Sep 17 00:00:00 2001 From: Federico Perini Date: Tue, 4 Jun 2024 15:20:25 +0200 Subject: [PATCH 3/4] Revert "add gcc-14, back 13, remove ubuntu+gcc-13" This reverts commit 47c20415be982d0e5db9d0f0b86363e1477d2241. --- .github/workflows/CI.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a92971ede..e4a5bfcf3 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -20,11 +20,8 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-12] - gcc_v: [10, 11, 12, 13, 14] # Version of GFortran we want to use. + gcc_v: [10, 11, 12] # Version of GFortran we want to use. build: [cmake] - exclude: - - os: ubuntu-latest - gcc_v: 13 include: - os: ubuntu-latest gcc_v: 10 From 54fb942bafeb340aeed26c66d6bd9c559c12616e Mon Sep 17 00:00:00 2001 From: Federico Perini Date: Tue, 4 Jun 2024 19:28:31 +0200 Subject: [PATCH 4/4] upgrade ubuntu to `ubuntu-24.04` --- .github/workflows/CI.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index e4a5bfcf3..71c4464b6 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,11 +19,14 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-12] - gcc_v: [10, 11, 12] # Version of GFortran we want to use. + os: [ubuntu-24.04, macos-12] + gcc_v: [10, 11, 12, 13] # Version of GFortran we want to use. build: [cmake] + exclude: + - os: macos-12 + gcc_v: 13 include: - - os: ubuntu-latest + - os: ubuntu-24.04 gcc_v: 10 build: cmake-inline env: