Skip to content

Commit

Permalink
pwd
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert committed Oct 10, 2024
1 parent 863cb8a commit 6cc61f0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/sanitize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,12 @@ jobs:
elif [ "${{ matrix.os }}" = "macos-latest" ]; then
# llvm-symbolizer (as part of llvm) is installed by default on macOS runners
TARGET="aarch64-apple-darwin"
# Suppress leaks on macOS. TODO: Check occasionally if these are still needed.
# Suppress non-neqo leaks on macOS. TODO: Check occasionally if these are still needed.
{
echo "leak:dyld4::RuntimeState"
echo "leak:fetchInitializingClassList"
} > suppressions.txt
export LSAN_OPTIONS="suppressions=suppressions.txt"
PWD=$(pwd)
export LSAN_OPTIONS="suppressions=$PWD/suppressions.txt"
fi
cargo nextest run -Z build-std --features ci --target "$TARGET"

0 comments on commit 6cc61f0

Please sign in to comment.