Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
kostasrim committed Jan 16, 2025
1 parent 9c29cf7 commit 5e409e3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,17 +123,17 @@ jobs:
df -h
echo "-----------------------------"
ASAN = "OFF"
USAN = "OFF"
export ASAN="OFF"
export USAN="OFF"
if [[ ${{matrix.sanitizers}} == "Sanitizers" ]]; then
# TODO remove this once the weekly is done
apt -y update
apt -y upgrade
apt install -y clang
which clang
ASAN = "ON"
USAN = "ON"
export ASAN="ON"
export USAN="ON"
fi
# -no-pie to disable address randomization so we could symbolize stacktraces
Expand All @@ -145,8 +145,8 @@ jobs:
-DCMAKE_CXX_COMPILER_LAUNCHER=sccache -DCMAKE_C_COMPILER_LAUNCHER=sccache \
-DCMAKE_CXX_FLAGS="${{matrix.cxx_flags}} -no-pie" -DWITH_AWS:BOOL=OFF \
-DHELIO_STACK_CHECK:STRING=4096 \
-DWITH_ASAN=$ASAN \
-DWITH_USAN=$USAN \
-DWITH_ASAN=${ASAN} \
-DWITH_USAN=${USAN} \
-L
cd ${GITHUB_WORKSPACE}/build && pwd
Expand Down

0 comments on commit 5e409e3

Please sign in to comment.