Skip to content

Commit 9b9f481

Browse files
Use tsan binaries for TSAN workflow (#15)
* Refs #23506: Use tsan binaries for TSAN workflow Signed-off-by: cferreiragonz <carlosferreira@eprosima.com> * Refs #23506: Fix Fast DDS branch for TSAN Signed-off-by: cferreiragonz <carlosferreira@eprosima.com> --------- Signed-off-by: cferreiragonz <carlosferreira@eprosima.com>
1 parent 4d547fe commit 9b9f481

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/actions/project_dependencies/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ runs:
4747
id: fastdds_version
4848
shell: bash
4949
run: |
50-
if [ "${{ inputs.dependencies_artifact_postfix }}" = "_nightly" ]; then
50+
if [ "${{ inputs.dependencies_artifact_postfix }}" = "_nightly" ] || [ "${{ inputs.dependencies_artifact_postfix }}" = "_nightly_tsan" ]; then
5151
echo "value=v3" >> $GITHUB_OUTPUT
5252
else
5353
echo "value=custom" >> $GITHUB_OUTPUT

.github/workflows/reusable-ubuntu-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
with:
133133
os: ubuntu-22.04
134134
cmake_build_type: Debug
135-
dependencies_artifact_postfix: ${{ inputs.dependencies_artifact_postfix }}
135+
dependencies_artifact_postfix: ${{ inputs.dependencies_artifact_postfix }}_tsan
136136
secret_token: ${{ secrets.GITHUB_TOKEN }}
137137

138138
- name: Compile and run tests

0 commit comments

Comments
 (0)