Specify the OS version

'ubuntu-latest' doesn't have clang-12 in it anymore
pull/6816/head
Andras Fekete 2023-09-28 10:29:20 -04:00
parent 0f4f677ea4
commit 5e3f00f6f7
1 changed files with 8 additions and 1 deletions

View File

@ -12,19 +12,26 @@ jobs:
include: include:
- CC: gcc-9 - CC: gcc-9
CXX: g++-9 CXX: g++-9
OS: ubuntu-latest
- CC: gcc-10 - CC: gcc-10
CXX: g++-10 CXX: g++-10
OS: ubuntu-latest
- CC: gcc-11 - CC: gcc-11
CXX: g++-11 CXX: g++-11
OS: ubuntu-latest
- CC: gcc-12 - CC: gcc-12
CXX: g++-12 CXX: g++-12
OS: ubuntu-latest
- CC: clang-12 - CC: clang-12
CXX: clang++-12 CXX: clang++-12
OS: ubuntu-20.04
- CC: clang-13 - CC: clang-13
CXX: clang++-13 CXX: clang++-13
OS: ubuntu-latest
- CC: clang-14 - CC: clang-14
CXX: clang++-14 CXX: clang++-14
runs-on: ubuntu-latest OS: ubuntu-latest
runs-on: ${{ matrix.OS }}
# This should be a safe limit for the tests to run. # This should be a safe limit for the tests to run.
timeout-minutes: 4 timeout-minutes: 4
steps: steps: