Skip to content

Commit cfa82cb

Browse files
GitHub: use default Clang and GCC
1 parent a981e98 commit cfa82cb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/c-cpp.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ jobs:
2424
name: "Ubuntu - Clang",
2525
os: ubuntu-latest,
2626
build_type: "Debug",
27-
cc: "clang-15",
28-
cxx: "clang++-15",
27+
cc: "clang",
28+
cxx: "clang++",
2929
generators: "Unix Makefiles",
3030
}
3131
- {
3232
name: "Ubuntu - GCC",
3333
os: ubuntu-latest,
3434
build_type: "Debug",
35-
cc: "gcc-12",
36-
cxx: "g++-12",
35+
cc: "gcc",
36+
cxx: "g++",
3737
generators: "Unix Makefiles"
3838
}
3939
runs-on: ${{ matrix.config.os }}

0 commit comments

Comments
 (0)