Skip to content

Commit 9517da7

Browse files
committed
devops: upgrade to gcc 15
Signed-off-by: Aaron Teo <[email protected]>
1 parent ee99159 commit 9517da7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/build.yml

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

212+
- name: Install GCC 15
213+
id: install_gcc
214+
run: |
215+
sudo apt-get update
216+
sudo apt-get install -y --no-install-recommends gcc-15 g++-15
217+
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-15 15
218+
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-15 15
219+
212220
- name: Build Dependencies
213221
id: build_depends
214222
run: |

0 commit comments

Comments
 (0)