Skip to content

Commit

Permalink
Tweak asan and tsan
Browse files Browse the repository at this point in the history
Signed-off-by: Michael X. Grey <[email protected]>
  • Loading branch information
mxgrey committed Dec 11, 2023
1 parent 22ab63f commit 912b5e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/asan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ jobs:
image: osrf/ros:iron-desktop-jammy
steps:
- name: create_blacklist
run: echo "fun:*Eigen*" > /home/runner/work/blacklist.txt
run: |
mkdir -p ${{ github.workspace }}/
touch ${{ github.workspace }}/blacklist.txt
echo "fun:*Eigen*" > ${{ github.workspace }}/blacklist.txt
- name: build_and_test
uses: ros-tooling/[email protected]
env:
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/tsan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ jobs:
- name: tsan_build_test
uses: ros-tooling/[email protected]
id: tsan_build_test
env:
CC: clang
CXX: clang++
with:
target-ros2-distro: iron
# build all packages listed in the meta package
Expand Down

0 comments on commit 912b5e0

Please sign in to comment.