Skip to content

Commit 11fa125

Browse files
ldv-altsolardiz
authored andcommitted
github: add gcc-13 and clang-15 jobs
1 parent 2e96bda commit 11fa125

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,20 @@ jobs:
1010
- name: check
1111
run: git diff-index --check --cached 4b825dc642cb6eb9a060e54bf8d69288fbee4904
1212

13+
gcc13-x86_64:
14+
runs-on: ubuntu-latest
15+
env:
16+
CC: gcc-13
17+
TARGET: x86_64
18+
steps:
19+
- uses: actions/checkout@v3
20+
with:
21+
fetch-depth: 0
22+
- name: install dependencies
23+
run: ci/install-dependencies.sh
24+
- name: build check
25+
run: ci/run-build-and-tests.sh
26+
1327
gcc12-x86_64:
1428
runs-on: ubuntu-latest
1529
env:
@@ -80,6 +94,20 @@ jobs:
8094
- name: build check
8195
run: ci/run-build-and-tests.sh
8296

97+
clang15-x86_64:
98+
runs-on: ubuntu-latest
99+
env:
100+
CC: clang-15
101+
TARGET: x86_64
102+
steps:
103+
- uses: actions/checkout@v3
104+
with:
105+
fetch-depth: 0
106+
- name: install dependencies
107+
run: ci/install-dependencies.sh
108+
- name: build check
109+
run: ci/run-build-and-tests.sh
110+
83111
clang14-x86_64:
84112
runs-on: ubuntu-latest
85113
env:

0 commit comments

Comments
 (0)