Skip to content

Commit

Permalink
CI: Add "gcc13-x86*" jobs to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
solardiz committed Jan 5, 2024
1 parent 767400b commit dbc5d18
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,30 @@ jobs:
- name: build check
run: .ci/run-build-and-tests.sh --enable-asan --enable-simd=avx

gcc13-x86-without-openssl:
runs-on: ubuntu-latest
env:
CC: gcc-13
TARGET: x86
steps:
- uses: actions/checkout@v3
- name: install dependencies
run: .ci/install-dependencies.sh
- name: build check
run: .ci/run-build-and-tests.sh --without-openssl

gcc13-x86-disable-all:
runs-on: ubuntu-latest
env:
CC: gcc-13
TARGET: x86
steps:
- uses: actions/checkout@v3
- name: install dependencies
run: .ci/install-dependencies.sh
- name: build check
run: .ci/run-build-and-tests.sh --disable-openmp --disable-simd --without-openssl

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

0 comments on commit dbc5d18

Please sign in to comment.