Skip to content

Commit

Permalink
.github: add gcc-14 and clang-16/clang-17/clang-18 jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
ldv-alt committed May 5, 2024
1 parent 5495e96 commit 624cfe2
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,20 @@ jobs:
- name: check
run: git diff-index --check --cached 4b825dc642cb6eb9a060e54bf8d69288fbee4904

gcc14-x86_64:
runs-on: ubuntu-latest
env:
CC: gcc-14
TARGET: x86_64
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
run: ci/install-dependencies.sh
- name: build check
run: ci/run-build-and-tests.sh

gcc13-x86_64:
runs-on: ubuntu-latest
env:
Expand Down Expand Up @@ -80,6 +94,48 @@ jobs:
- name: build check
run: ci/run-build-and-tests.sh

clang18-x86_64:
runs-on: ubuntu-latest
env:
CC: clang-18
TARGET: x86_64
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
run: ci/install-dependencies.sh
- name: build check
run: ci/run-build-and-tests.sh

clang17-x86_64:
runs-on: ubuntu-latest
env:
CC: clang-17
TARGET: x86_64
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
run: ci/install-dependencies.sh
- name: build check
run: ci/run-build-and-tests.sh

clang16-x86_64:
runs-on: ubuntu-latest
env:
CC: clang-16
TARGET: x86_64
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
run: ci/install-dependencies.sh
- name: build check
run: ci/run-build-and-tests.sh

clang15-x86_64:
runs-on: ubuntu-latest
env:
Expand Down

0 comments on commit 624cfe2

Please sign in to comment.