Skip to content

Commit

Permalink
hopefully fixed suppressions file reading
Browse files Browse the repository at this point in the history
  • Loading branch information
r4stered committed Nov 5, 2024
1 parent 400e677 commit f439f5d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/sanitizers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,13 @@ jobs:
- name: Add repository to git safe directories
run: git config --global --add safe.directory $GITHUB_WORKSPACE

- name: Setup proper env for folder
shell: bash
run: |
echo "GITHUB_WORKSPACE=$GITHUB_WORKSPACE" >> $GITHUB_ENV
# Runs a single command using the runners shell
- name: Compile and run tests on robot code
env:
TSAN_OPTIONS: suppressions=${{ github.workspace }}/.github/workflows/tsan_suppressions
TSAN_OPTIONS: suppressions=${{ env.GITHUB_WORKSPACE }}/.github/workflows/tsan_suppressions
run: ./gradlew build ${{ matrix.gradle-flags }}

0 comments on commit f439f5d

Please sign in to comment.