We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 111051f commit 66dc427Copy full SHA for 66dc427
.github/workflows/cpp.yml
@@ -16,11 +16,12 @@ jobs:
16
- name: install g++
17
run: |
18
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
19
+ sudo apt update
20
sudo apt-get install g++-15
21
- name: compile
22
23
cd cpp
- find . -name '*.cpp' -print0 | xargs -n1 -0 /usr/bin/g++-15 ${{ matrix.config.compiler-options }}
24
+ find . -name '*.cpp' -print0 | xargs -n1 -0 g++-15 ${{ matrix.config.compiler-options }}
25
26
build-ubuntu-clang:
27
runs-on: ubuntu-latest
0 commit comments