Skip to content

Commit

Permalink
github: add gcc-14 and clang-18/clang-17/clang-16 jobs
Browse files Browse the repository at this point in the history
These jobs explicitly use ubuntu-24.04 because ubuntu-latest still
points to ubuntu-22.04 where these compilers are not available.
  • Loading branch information
ldv-alt authored and solardiz committed Nov 5, 2024
1 parent 6b115e1 commit 71523eb
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-24.04
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 @@ -94,6 +108,48 @@ jobs:
- name: build check
run: ci/run-build-and-tests.sh

clang18-x86_64:
runs-on: ubuntu-24.04
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-24.04
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-24.04
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 71523eb

Please sign in to comment.