File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,20 +17,20 @@ jobs:
1717 run : |
1818 sudo add-apt-repository ppa:ubuntu-toolchain-r/test
1919 sudo apt update
20- sudo apt-get install g++-15
20+ sudo apt-get install g++-14
2121 - name : compile
2222 run : |
2323 cd cpp
24- find . -name '*.cpp' -print0 | xargs -n1 -0 g++-15 ${{ matrix.config.compiler-options }}
24+ find . -name '*.cpp' -print0 | xargs -n1 -0 g++-14 ${{ matrix.config.compiler-options }}
2525
2626 build-ubuntu-clang :
2727 runs-on : ubuntu-latest
2828 steps :
2929 - uses : actions/checkout@v2
3030 - name : install clang
3131 run : |
32- wget http://mirrors.kernel.org/ubuntu/pool/main/libf/libffi/libffi7_3.3-4_amd64.deb
33- sudo dpkg -i libffi7_3.3-4_amd64.deb
32+ # wget http://mirrors.kernel.org/ubuntu/pool/main/libf/libffi/libffi7_3.3-4_amd64.deb
33+ # sudo dpkg -i libffi7_3.3-4_amd64.deb
3434 sudo apt-key adv --fetch-keys https://apt.llvm.org/llvm-snapshot.gpg.key
3535 sudo add-apt-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-20 main"
3636 sudo apt-get install clang-20
You can’t perform that action at this time.
0 commit comments