Skip to content

Commit 5e3f00f

Browse files
author
Andras Fekete
committed
Specify the OS version
'ubuntu-latest' doesn't have clang-12 in it anymore
1 parent 0f4f677 commit 5e3f00f

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/multi-compiler.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,26 @@ jobs:
1212
include:
1313
- CC: gcc-9
1414
CXX: g++-9
15+
OS: ubuntu-latest
1516
- CC: gcc-10
1617
CXX: g++-10
18+
OS: ubuntu-latest
1719
- CC: gcc-11
1820
CXX: g++-11
21+
OS: ubuntu-latest
1922
- CC: gcc-12
2023
CXX: g++-12
24+
OS: ubuntu-latest
2125
- CC: clang-12
2226
CXX: clang++-12
27+
OS: ubuntu-20.04
2328
- CC: clang-13
2429
CXX: clang++-13
30+
OS: ubuntu-latest
2531
- CC: clang-14
2632
CXX: clang++-14
27-
runs-on: ubuntu-latest
33+
OS: ubuntu-latest
34+
runs-on: ${{ matrix.OS }}
2835
# This should be a safe limit for the tests to run.
2936
timeout-minutes: 4
3037
steps:

0 commit comments

Comments
 (0)