Skip to content

Commit

Permalink
ci: enable tsan workflow again
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusBgm committed Sep 18, 2024
1 parent 2f4e01b commit bb56e85
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/linux-tsan.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,27 @@
name: 'Linux + Thread Sanitizer'
on:
workflow_call:
inputs:
run_build:
required: true
type: boolean
default: true
workflow_dispatch:
inputs:
run_build:
required: true
type: boolean

push:
branches: [ 'main' ]
branches: [ 'main', 'dev_fix_linux-release_dirs']

jobs:
clang-tsan:
name: Thread 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
if: (inputs.run_builds == true) || (github.event_name == 'push')
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit bb56e85

Please sign in to comment.