Skip to content

dev: String definitions for SIL Kit error return codes (#163) #79

dev: String definitions for SIL Kit error return codes (#163)

dev: String definitions for SIL Kit error return codes (#163) #79

Workflow file for this run

name: 'Linux + UB Sanitizer'
on:
workflow_call:
inputs:
run_build:
required: true
type: boolean
push:
branches: [ 'main' ]
jobs:
clang-ubsan:
name: Undefined Behavior Sanitizer Tests
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: clang-relwithdebinfo
cmake-args: "-D SILKIT_ENABLE_UBSAN=ON -D SILKIT_BUILD_DASHBOARD=OFF \
-DCMAKE_C_COMPILER=clang-18 \
-DCMAKE_CXX_COMPILER=clang++-18"
artifact-label: ${{ github.job }}