SILKIT-1896: Fix the start of the registry for Windows system service #176
This file contains hidden or 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: 'Linux + Address Sanitizer' | |
| on: | |
| workflow_call: | |
| inputs: | |
| run_build: | |
| required: true | |
| type: boolean | |
| push: | |
| branches: [ 'main' ] | |
| jobs: | |
| clang-asan: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/vectorgrp/sil-kit-docker-build/sil-kit-ci-public-runner:main | |
| if: (inputs.run_build == true) || (github.event_name == 'push') | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - uses: ./.github/actions/build-cmake-preset | |
| with: | |
| preset-name: relwithdebinfo | |
| cmake-args: "-D SILKIT_BUILD_DASHBOARD=OFF \ | |
| -DCMAKE_C_COMPILER=clang-18 \ | |
| -DCMAKE_CXX_COMPILER=clang++-18 \ | |
| -DCMAKE_CXX_FLAGS='-fsanitize=address -fno-omit-frame-pointer' \ | |
| -DCMAKE_CXX_FLAGS_RELWITHDEBINFO='-Og -g3'" | |
| artifact-label: ${{ github.job }} |