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 9517da7 commit 179acc0Copy full SHA for 179acc0
.github/workflows/build.yml
@@ -213,7 +213,12 @@ jobs:
213
id: install_gcc
214
run: |
215
sudo apt-get update
216
- sudo apt-get install -y --no-install-recommends gcc-15 g++-15
+ sudo apt-get install -y --no-install-recommends \
217
+ software-properties-common
218
+ sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
219
+ sudo apt-get update
220
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
224
0 commit comments