diff options
author | Dmitry V. Levin <ldv@strace.io> | 2023-11-13 14:00:00 +0000 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2023-11-14 00:27:49 +0100 |
commit | e8bda3c78ef2df5d71f6f247dc81d8e953659803 (patch) | |
tree | 4bb0e2a43adbab3bf8e840fa460e1503035bb062 /.github | |
parent | ea5722f7304489cd8235a0ade7ce8fc6a62103eb (diff) | |
download | pam-e8bda3c78ef2df5d71f6f247dc81d8e953659803.tar.gz pam-e8bda3c78ef2df5d71f6f247dc81d8e953659803.tar.bz2 pam-e8bda3c78ef2df5d71f6f247dc81d8e953659803.zip |
ci: add --enable-debug jobs to the ci matrix
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8640f572..5486c5e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,6 +75,21 @@ jobs: - name: build check run: ci/run-build-and-tests.sh + gcc13-x86_64-debug: + runs-on: ubuntu-latest + env: + CC: gcc-13 + TARGET: x86_64 + ENABLE_DEBUG: yes + 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: @@ -175,6 +190,21 @@ jobs: - name: build check run: ci/run-build-and-tests.sh + clang15-x86_64-debug: + runs-on: ubuntu-latest + env: + CC: clang-15 + TARGET: x86_64 + ENABLE_DEBUG: yes + 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: |