We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee99159 commit 9517da7Copy full SHA for 9517da7
.github/workflows/build.yml
@@ -209,6 +209,14 @@ jobs:
209
key: ubuntu-cpu-cmake
210
evict-old-files: 1d
211
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
+
220
- name: Build Dependencies
221
id: build_depends
222
run: |
0 commit comments