Skip to content

Commit 57bca0b

Browse files
authored
feat: support clang 19 (#38)
1 parent 2199593 commit 57bca0b

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
@@ -20,9 +20,11 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
clang-version: [ 18, 17, 16, 15, 14, 13, 12.0.1, 12, 11, 10, 9, 8, 7 ]
23+
clang-version: [ 19, 18, 17, 16, 15, 14, 13, 12.0.1, 12, 11, 10, 9, 8, 7 ]
2424
os: [ linux, macosx, windows ]
2525
include:
26+
- clang-version: 19
27+
release: llvm-project-19.1.0.src
2628
- clang-version: 18
2729
release: llvm-project-18.1.5.src
2830
- 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)