Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
KRM7 committed Sep 8, 2023
1 parent 74c6516 commit a845076
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
matrix:
build-type: [ Release, RelWithDebInfo ]
compiler: [
{ cxx: g++-11, pkgs: g++-11 libtbb-dev },
{ cxx: g++-12, pkgs: g++-12 libtbb-dev },
{ cxx: clang++-14, pkgs: clang-14 libtbb-dev },
{ cxx: clang++-15, pkgs: clang-15 libtbb-dev },
{ cxx: g++-11, pkgs: g++-11 libtbb-dev gdb },
{ cxx: g++-12, pkgs: g++-12 libtbb-dev gdb },
{ cxx: clang++-14, pkgs: clang-14 libtbb-dev gdb },
{ cxx: clang++-15, pkgs: clang-15 libtbb-dev gdb },
]

defaults:
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
run: cmake --build . --parallel

- name: run-tests
run: ctest --output-on-failure --schedule-random
run: gdb -ex run ./unit_tests --args schedule-random

- name: install
run: sudo cmake --install .
4 changes: 2 additions & 2 deletions .github/workflows/sanitizers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ jobs:
strategy:
fail-fast: false
matrix:
sanitizer: [ address, undefined ]
sanitizer: [ address, undefined, thread ]
include:
- cxx: clang++-15
pkgs: clang-15 llvm-15 libtbb-dev

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
TSAN_OPTIONS: suppressions=../.tsan-supressions:external_symbolizer_path=/usr/lib/llvm-15/bin/llvm-symbolizer:verbosity=2:force_seq_cst_atomics=0
TSAN_OPTIONS: external_symbolizer_path=/usr/lib/llvm-15/bin/llvm-symbolizer:verbosity=2:force_seq_cst_atomics=0

defaults:
run:
Expand Down

0 comments on commit a845076

Please sign in to comment.