Skip to content

Commit 8517604

Browse files
authored
Merge pull request #17 from rursprung/GHA-disable-ubuntu-checks
CI: skip testing on ubuntu until 24.04 is avialable on GHA
2 parents 8df62be + d5ba857 commit 8517604

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/CI.yaml

+14-14
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ jobs:
2020
#
2121
# To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
2222
matrix:
23-
os: [ubuntu-latest, windows-latest]
23+
os: [windows-latest] # skip ubuntu until 24.04 is available in GHA (required for newer GCC & CLang)
2424
build_type: [Debug]
25-
c_compiler: [gcc, cl]
26-
include:
27-
- os: windows-latest
28-
c_compiler: cl
29-
cpp_compiler: cl
30-
- os: ubuntu-latest
31-
c_compiler: gcc
32-
cpp_compiler: g++
33-
exclude:
34-
- os: windows-latest
35-
c_compiler: gcc
36-
- os: ubuntu-latest
37-
c_compiler: cl
25+
c_compiler: [cl] # skip gcc & clang until ubuntu 24.04 is available in GHA
26+
# include:
27+
# - os: windows-latest
28+
# c_compiler: cl
29+
# cpp_compiler: cl
30+
# - os: ubuntu-latest
31+
# c_compiler: gcc
32+
# cpp_compiler: g++
33+
# exclude:
34+
# - os: windows-latest
35+
# c_compiler: gcc
36+
# - os: ubuntu-latest
37+
# c_compiler: cl
3838

3939
steps:
4040
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)