Skip to content

Commit f6fb32a

Browse files
author
Jacopin Eliott
committed
[Fix] CI GCC 13 install on ubuntu 22.04 images
Major: - GCC 13 was removed from default ubuntu 22.04 runner images. We have to manually add it back. See: actions/runner-images#9679
1 parent c99888f commit f6fb32a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/tests_linux.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,10 @@ jobs:
103103
submodules: 'recursive'
104104

105105
- name: Install suitable compiler
106-
run: sudo apt-get install gcc-${{ matrix.gcc_version }} g++-${{ matrix.gcc_version }}
106+
run: |
107+
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
108+
sudo apt-get update -y
109+
sudo apt-get install gcc-${{ matrix.gcc_version }} g++-${{ matrix.gcc_version }}
107110
108111
- name: Install CMake and ninja
109112
uses: lukka/get-cmake@latest

0 commit comments

Comments
 (0)