-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (32 loc) · 1.14 KB
/
sanitizers.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: sanitizers
on: push
jobs:
build:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
sanitizer: [ address, undefined ]
include:
- cxx: clang++-15
pkgs: clang-15 llvm-15
env:
ASAN_OPTIONS: check_initialization_order=1:strict_init_order=1:detect_stack_use_after_return=1:detect_leaks=1
UBSAN_OPTIONS: print_stacktrace=1:print_summary=1
defaults:
run:
working-directory: ${{ github.workspace }}/build
name: ${{ matrix.cxx }} -fsanitize=${{ matrix.sanitizer }}
steps:
- name: checkout-repo
uses: actions/checkout@v3
- name: setup-compiler
run: sudo apt update && sudo apt install -y ${{ matrix.pkgs }}
- name: setup-catch
run: sudo bash ./install_catch.sh -DCMAKE_CXX_COMPILER=${{ matrix.cxx }}
- name: setup-build
run: sudo cmake .. -DCMAKE_CXX_COMPILER=${{ matrix.cxx }} -DCMAKE_CXX_FLAGS="-fsanitize=${{ matrix.sanitizer }} -g -fno-omit-frame-pointer"
- name: build
run: sudo cmake --build .
- name: run-tests
run: sudo ctest --output-on-failure --schedule-random