Skip to content

Commit

Permalink
.github: add gcc-13, clang-15, and clang-16 jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
ldv-alt committed May 13, 2023
1 parent 2a735b3 commit 6573438
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 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

gcc13-x86_64:
runs-on: ubuntu-22.04
env:
CC: gcc-13
TARGET: x86_64
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: install dependencies
run: ci/install-dependencies.sh
- name: build check
run: ci/run-build-and-tests.sh

gcc12-x86_64:
runs-on: ubuntu-22.04
env:
Expand Down Expand Up @@ -66,6 +80,34 @@ jobs:
- name: build check
run: ci/run-build-and-tests.sh

clang16-x86_64:
runs-on: ubuntu-22.04
env:
CC: clang-16
TARGET: x86_64
steps:
- uses: actions/checkout@v3
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-22.04
env:
CC: clang-15
TARGET: x86_64
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: install dependencies
run: ci/install-dependencies.sh
- name: build check
run: ci/run-build-and-tests.sh

clang14-x86_64:
runs-on: ubuntu-22.04
env:
Expand Down

0 comments on commit 6573438

Please sign in to comment.