-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Luca Della Vedova <[email protected]>
- Loading branch information
1 parent
569b34a
commit 718798c
Showing
1 changed file
with
2 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,15 +43,8 @@ jobs: | |
steps: | ||
- name: Setup ROS | ||
uses: ros-tooling/[email protected] | ||
- name: install_clang_and_tools | ||
run: sudo apt update && sudo apt install -y ccache clang clang-tools lld wget python3-pip python3-colcon-coveragepy-result python3-colcon-lcov-result lcov | ||
- name: create_blacklist | ||
run: | | ||
mkdir -p ${{ github.workspace }}/ | ||
touch ${{ github.workspace }}/blacklist.txt | ||
if [[ ${{ inputs.mixin }} == "asan" ]]; then | ||
echo "fun:*Eigen*" > ${{ github.workspace }}/blacklist.txt | ||
fi | ||
- name: install_tools | ||
run: sudo apt update && sudo apt install -y ccache wget python3-pip python3-colcon-coveragepy-result python3-colcon-lcov-result lcov | ||
- name: set mixins | ||
id: set_mixins | ||
run: | | ||
|
@@ -74,8 +67,6 @@ jobs: | |
uses: ros-tooling/[email protected] | ||
env: | ||
LANG: en_US.UTF-8 | ||
CC: clang -fsanitize-blacklist=${{ github.workspace }}/blacklist.txt | ||
CXX: clang++ -fsanitize-blacklist=${{ github.workspace }}/blacklist.txt | ||
QT_QPA_PLATFORM: offscreen | ||
# We have some new_delete_type_mismatch errors that looks like to come from rclcpp | ||
ASAN_OPTIONS: detect_leaks=0:new_delete_type_mismatch=0 | ||
|