[INFRA] Update CI #43
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ASAN | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: asan-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: ${{ github.event_name != 'push' }} | |
env: | |
TZ: Europe/Berlin | |
defaults: | |
run: | |
shell: bash -Eexuo pipefail {0} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: ${{ matrix.compiler }} | |
if: github.repository_owner == 'xxsds' || github.event_name == 'workflow_dispatch' | |
strategy: | |
fail-fast: false | |
matrix: | |
compiler: ["clang-18", "gcc-14"] | |
cereal: ["0", "1"] | |
container: | |
image: ghcr.io/seqan/${{ matrix.compiler }} | |
volumes: | |
- /home/runner:/home/runner | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Load ccache | |
uses: actions/cache@v4 | |
with: | |
path: /home/runner/.ccache | |
save-always: true | |
key: ccache-${{ runner.os }}-${{ github.workflow }}-${{ matrix.compiler }}-${{ github.ref }} | |
- name: Configure tests | |
run: | | |
mkdir bbuild && cd bbuild | |
cmake .. -DCMAKE_BUILD_TYPE=Debug \ | |
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ | |
-DCMAKE_C_COMPILER_LAUNCHER=ccache \ | |
-DCMAKE_CXX_FLAGS="-pedantic -Wall -Wextra -Werror -std=c++23 -fsanitize=address" \ | |
-DSDSL_CEREAL=${{ matrix.cereal }} | |
make -j gtest_build | |
- name: Build tests | |
working-directory: bbuild | |
run: | | |
ccache -z | |
make -k -j sdsl_test_targets sdsl_examples sdsl_tutorials | |
ccache -sv | |
- name: Run tests | |
working-directory: bbuild | |
run: ctest . -j --output-on-failure -E 'faust|moby' -R '-im' |