Skip to content

Commit

Permalink
github: add gcc-13 and clang-15 jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
ldv-alt authored and solardiz committed Jun 13, 2023
1 parent 2e96bda commit 11fa125
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 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-latest
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-latest
env:
Expand Down Expand Up @@ -80,6 +94,20 @@ jobs:
- name: build check
run: ci/run-build-and-tests.sh

clang15-x86_64:
runs-on: ubuntu-latest
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-latest
env:
Expand Down

0 comments on commit 11fa125

Please sign in to comment.