Run the sanitizers in CI #1
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
# Continuous Integration tests | |
name: GCC | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
# Ensure that only one instance of the workflow is run at a time for each branch/tag. | |
# Jobs currently running on the branch/tag will be cancelled when new commits are pushed. | |
# See https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#concurrency. | |
concurrency: | |
# `github.workflow` is the workflow name, `github.ref` is the current branch/tag identifier | |
group: ${{ format('{0}:{1}', github.workflow, github.ref) }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
linux-gcc: | |
strategy: | |
matrix: | |
sanitiser: | |
- ADDRESS | |
- LEAK | |
- MEMORY | |
- THREAD | |
- UNDEFINED | |
name: Sanitising ${{ matrix.sanitiser }} | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
# Use the container for this specific version of gcc | |
container: ubuntu:22.04 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
# Update for all the actions that need to install stuff | |
- run: | | |
apt-get update | |
apt-get install -y software-properties-common unzip | |
- name: Install GCC | |
run: | | |
add-apt-repository ppa:ubuntu-toolchain-r/test | |
apt-get update | |
apt-get install -y gcc-13 g++-13 | |
- name: Install CMake | |
uses: lukka/get-cmake@latest | |
with: | |
cmakeVersion: 3.27.1 | |
ninjaVersion: 1.11.1 | |
- name: Setup CCache | |
uses: hendrikmuhs/[email protected] | |
with: | |
key: ${{ github.job }}-gcc-${{ matrix.sanitiser }} | |
max-size: 100M | |
- name: Configure CMake | |
run: | | |
cmake -E make_directory build | |
cmake -S . -B build \ | |
-GNinja \ | |
-DCMAKE_C_COMPILER=/usr/bin/gcc-13 \ | |
-DCMAKE_CXX_COMPILER=/usr/bin/g++-13 \ | |
-DCMAKE_C_COMPILER_LAUNCHER=ccache \ | |
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ | |
-DSANITIZE_${{ matrix.sanitiser }}=ON \ | |
-DBUILD_TESTS=ON \ | |
-DCMAKE_BUILD_TYPE=Release \ | |
-DCI_BUILD=ON \ | |
-DENABLE_CLANG_TIDY=OFF | |
- name: Build | |
timeout-minutes: 30 | |
run: cmake --build build --config Release | |
- name: CCache Stats | |
run: ccache --show-stats | |
- name: Test | |
timeout-minutes: 5 | |
working-directory: build/tests | |
run: ctest --output-on-failure -j$(nproc) -E "dsl/UDP" |