Skip to content

Commit 3c5e265

Browse files
committed
github: Use gcc-14
By default it uses gcc-13, but it's not supported by seastar. The better would be gcc-15, but it's not available in ubuntu:24.03 by default Signed-off-by: Pavel Emelyanov <[email protected]>
1 parent 66bb3e1 commit 3c5e265

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/test.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@ jobs:
6060
run: |
6161
sudo apt-get -y install clang-tools-20
6262
63+
- name: Install g++
64+
if: ${{ inputs.compiler == 'g++' }}
65+
run: |
66+
sudo apt-get -y install gcc-14 g++-14
67+
6368
- name: Install ccache
6469
if: ${{ inputs.enable-ccache }}
6570
run: |
@@ -77,8 +82,8 @@ jobs:
7782
CC=clang-20
7883
CPP=clang++-20
7984
else
80-
CC=gcc
81-
CPP=g++
85+
CC=gcc-14
86+
CPP=g++-14
8287
fi
8388
if ${{ inputs.enable-ccache }}; then
8489
MAYBE_CCACHE_OPT="--ccache"

0 commit comments

Comments
 (0)