Skip to content

Commit 8cef426

Browse files
authored
feat: support clang 19 (#36)
* feat: support clang 19 * Update build-amd64.yml * Revert "Update build-amd64.yml" This reverts commit 7e589c5.
1 parent 58f8f2a commit 8cef426

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/build-amd64.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ jobs:
1919
build:
2020
strategy:
2121
matrix:
22-
clang-version: [ 18, 17, 16, 15, 14, 13, 12.0.1, 12, 11, 10, 9, 8, 7 ]
22+
clang-version: [ 19, 18, 17, 16, 15, 14, 13, 12.0.1, 12, 11, 10, 9, 8, 7 ]
2323
os: [ linux, macosx, windows ]
2424
include:
25+
- clang-version: 19
26+
release: llvm-project-19.1.0.src
2527
- clang-version: 18
2628
release: llvm-project-18.1.5.src
2729
- clang-version: 17

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
clang-version: [ 7, 8, 9, 10, 11, 12, 12.0.1, 13, 14, 15, 16, 17, 18 ]
17+
clang-version: [ 7, 8, 9, 10, 11, 12, 12.0.1, 13, 14, 15, 16, 17, 18, 19 ]
1818
os: [ ubuntu-latest, macos-latest, windows-latest ]
1919
include:
2020
- os: ubuntu-latest

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ Includes clang-format, clang-tidy, clang-query and clang-apply-replacements.
88

99
The supported versions are as follows:
1010

11-
|OS/Version |18 |17 |16 |15 |14 |13 |12 |11 |10 |9 |8 |7 |
12-
|-----------|---|---|---|---|---|---|---|---|---|---|---|---|
13-
|Linux 64 |✔️ |✔️|✔️|✔️ |✔️|✔️ |✔️ |✔️|✔️| ✔️|✔️|✔️ |
14-
|Window 64 |✔️ |✔️|✔️|✔️ |✔️|✔️ |✔️ |✔️|✔️| ✔️|✔️|✔️ |
15-
|macOS 64 |✔️ |✔️|✔️|✔️ |✔️|✔️ |✔️ |✔️|✔️| ✔️|✔️|✔️ |
11+
|OS/Version |19|18 |17 |16 |15 |14 |13 |12 |11 |10 |9 |8 |7 |
12+
|-----------|--|---|---|---|---|---|---|---|---|---|---|---|---|
13+
|Linux 64 |✔️|✔️ |✔️|✔️|✔️ |✔️|✔️ |✔️ |✔️|✔️| ✔️|✔️|✔️ |
14+
|Window 64 |✔️|✔️ |✔️|✔️|✔️ |✔️|✔️ |✔️ |✔️|✔️| ✔️|✔️|✔️ |
15+
|macOS 64 |✔️|✔️ |✔️|✔️|✔️ |✔️|✔️ |✔️ |✔️|✔️| ✔️|✔️|✔️ |
1616

1717
## Download
1818

0 commit comments

Comments
 (0)