Skip to content

Run tests with address, undefined, and thread sanitizer in CI #45

Run tests with address, undefined, and thread sanitizer in CI

Run tests with address, undefined, and thread sanitizer in CI #45

Workflow file for this run

name: Build and test
on:
merge_group:
pull_request:
push:
branches: [main]
jobs:
build-and-test:
strategy:
matrix:
buildtype: [debug, release]
sanitizer: [none, address, leak, undefined, thread]
exclude:
# False positive warnings in release builds: https://godbolt.org/z/vT3nqGxzW
- buildtype: release
sanitizer: address
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Update apt repositories for ccache
run: sudo apt update
- name: Install dependencies
run: sudo apt-get install util-linux libmount-dev slurm-wlm libslurm-dev slurmd slurmctld slurm-client
- name: Set up ccache
uses: hendrikmuhs/[email protected]
with:
key: ccache-linux-${{ matrix.buildtype }}-${{ matrix.sanitizer }}
- name: Setup compiler and build tools
run: sudo apt install --no-install-recommends --yes g++-12 meson ninja-build
- name: Configure
run: |
CXX="ccache g++-12" meson setup \
--buildtype ${{ matrix.buildtype }} \
-Db_sanitize=${{ matrix.sanitizer }} \
--warnlevel 3 \
--werror \
build .
- name: Build
run: ninja -C build
- name: Setup Test
run: cd test/setup && ./setup
- name: Test
run: |
export ASAN_OPTIONS=fast_unwind_on_malloc=0:strict_string_checks=1:detect_leaks=1:detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1
export UBSAN_OPTIONS=print_stacktrace=1
cd build && ./unit