Skip to content

Commit bd9fc84

Browse files
committed
update workflows to use gcc 11/13/15
instead of gcc 10/12, because it's not 2023 anymore
1 parent 8c8e39f commit bd9fc84

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ on:
6666
default: false
6767
gcc-ver:
6868
type: string
69-
default: "10"
69+
default: "11"
7070

7171
jobs:
7272
build-linux64:

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,11 @@ jobs:
5959
fail-fast: false
6060
matrix:
6161
include:
62-
- gcc: 10
62+
- gcc: 11 # baseline compatibility with ubuntu LTS 22.04
6363
plugins: "default"
64-
- gcc: 12
64+
- gcc: 13 # future compatibility with ubuntu LTS 24.04
65+
plugins: "all"
66+
- gcc: 15 # cutting-edge
6567
plugins: "all"
6668

6769
test-windows:

0 commit comments

Comments
 (0)