Skip to content

Commit 0261fbd

Browse files
committed
devops: switch to gcc 14 instead
Signed-off-by: Aaron Teo <[email protected]>
1 parent 179acc0 commit 0261fbd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ jobs:
209209
key: ubuntu-cpu-cmake
210210
evict-old-files: 1d
211211

212-
- name: Install GCC 15
212+
- name: Install GCC 14
213213
id: install_gcc
214214
run: |
215215
sudo apt-get update
@@ -218,9 +218,9 @@ jobs:
218218
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
219219
sudo apt-get update
220220
sudo apt-get install -y --no-install-recommends \
221-
gcc-15 g++-15
222-
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-15 15
223-
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-15 15
221+
gcc-14 g++-14
222+
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-14 14
223+
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-14 14
224224
225225
- name: Build Dependencies
226226
id: build_depends

0 commit comments

Comments
 (0)