Skip to content

cmake: disable -Wdangling-reference for gcc > 13 #31

cmake: disable -Wdangling-reference for gcc > 13

cmake: disable -Wdangling-reference for gcc > 13 #31

Workflow file for this run

name: 'Linux Address Sanitizer'
on:
workflow_call:
inputs:
run_build:
required: true
type: boolean
push:
branches: [ 'main' ]
jobs:
clang14-asan:
environment: public-github-runners
runs-on: ubuntu-22.04
if: inputs.run_build == true
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: ./.github/actions/build-cmake-preset
with:
preset-name: clang14-relwithdebinfo
cmake-args: "-D SILKIT_ENABLE_ASAN=ON -D SILKIT_BUILD_DASHBOARD=OFF"
do-package: false