Add ASan and UBSan CI coverage
All checks were successful
All checks were successful
This commit is contained in:
@@ -37,6 +37,23 @@ jobs:
|
||||
fail_on_failure: 'true'
|
||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
||||
|
||||
sanitizer:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v4
|
||||
- name: dependencies
|
||||
run: |
|
||||
sudo apt-get update -y
|
||||
sudo apt-get install -y cmake gcc moreutils
|
||||
- name: build with AddressSanitizer and UBSan
|
||||
run: |
|
||||
cmake -S . -B build/asan -DAKERR_SANITIZE=address,undefined
|
||||
cmake --build build/asan
|
||||
- name: test with AddressSanitizer and UBSan
|
||||
run: ctest --test-dir build/asan --output-on-failure
|
||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
||||
|
||||
coverage:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
Reference in New Issue
Block a user