Skip to content

cleanup the swap implementation #18

cleanup the swap implementation

cleanup the swap implementation #18

Workflow file for this run

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