Skip to content

Commit f196d09

Browse files
committed
ci: build on more Clang versions on GHA
1 parent cb549c8 commit f196d09

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

.github/workflows/clang.yml

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,26 @@ name: Clang
33
on: push
44

55
jobs:
6-
ubuntu_clang:
7-
runs-on: ubuntu-20.04
6+
clang:
87
strategy:
98
fail-fast: false
109
matrix:
11-
version: [7, 8, 9, 10, 11]
10+
include:
11+
- version: 7
12+
os: ubuntu-20.04
13+
- version: 8
14+
os: ubuntu-20.04
15+
- version: 9
16+
os: ubuntu-20.04
17+
- version: 10
18+
os: ubuntu-20.04
19+
- version: 11
20+
os: ubuntu-22.04
21+
- version: 14
22+
os: ubuntu-22.04
23+
- version: 16
24+
os: ubuntu-24.04
25+
runs-on: ${{ matrix.os }}
1226
steps:
1327
# Checks-out the repository under $GITHUB_WORKSPACE.
1428
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)