Skip to content

Commit bfafb3a

Browse files
authored
Update cpp.yml
1 parent 66dc427 commit bfafb3a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/cpp.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)