Skip to content

Commit 7c80008

Browse files
Fix CI (#4)
* linux.yml: Fix compilation with Clang 17 * linux.yml: Add compilation with Clang 18 * linux.yml: Drop compilation with GCC 11, Clang 15, Clang 16 * Actions(deps): Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 2f504a2 commit 7c80008

File tree

1 file changed

+6
-16
lines changed

1 file changed

+6
-16
lines changed

.github/workflows/linux.yml

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,29 +17,19 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
include:
20-
- cc: gcc-11
21-
cxx: g++-11
22-
clang_major_version: null
23-
clang_repo_suffix: null
24-
runs-on: ubuntu-22.04
2520
- cc: gcc-12
2621
cxx: g++-12
2722
clang_major_version: null
2823
clang_repo_suffix: null
2924
runs-on: ubuntu-22.04
30-
- cc: clang-15
31-
cxx: clang++-15
32-
clang_major_version: 15
33-
clang_repo_suffix: -15
34-
runs-on: ubuntu-22.04
35-
- cc: clang-16
36-
cxx: clang++-16
37-
clang_major_version: 16
38-
clang_repo_suffix: -16
39-
runs-on: ubuntu-22.04
4025
- cc: clang-17
4126
cxx: clang++-17
4227
clang_major_version: 17
28+
clang_repo_suffix: -17
29+
runs-on: ubuntu-22.04
30+
- cc: clang-18
31+
cxx: clang++-18
32+
clang_major_version: 18
4333
clang_repo_suffix:
4434
runs-on: ubuntu-22.04
4535
steps:
@@ -67,7 +57,7 @@ jobs:
6757
clang-${{ matrix.clang_major_version }}
6858
6959
- name: Checkout Git branch
70-
uses: actions/checkout@v3
60+
uses: actions/checkout@v4
7161

7262
- name: 'Configure with CMake'
7363
run: |-

0 commit comments

Comments
 (0)