Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Commit 78fd714

Browse files
committed
switch asan back to release build
debug build is too big. cmake uses gmake under the hood, pass it -i to ignore warnings
1 parent c5cf8a4 commit 78fd714

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ jobs:
8181
conda run -n ${{ env.CONDA_ENV }} ./ArrowBasedExecuteTest --build-rel-alg-cache=cache.txt
8282
8383
cd ../.. # rebuild with ASAN
84-
conda run -n ${{ env.CONDA_ENV }} cmake -B ./build -S . -DCMAKE_BUILD_TYPE=DEBUG -DENABLE_CUDA=off -DENABLE_ASAN=on
85-
conda run -n ${{ env.CONDA_ENV }} cmake --build ./build/ --parallel 2
84+
conda run -n ${{ env.CONDA_ENV }} cmake -B ./build -S . -DCMAKE_BUILD_TYPE=Release -DENABLE_CUDA=off -DENABLE_ASAN=on
85+
conda run -n ${{ env.CONDA_ENV }} cmake --build ./build/ --parallel 2 -- -i
8686
8787
cd ..
8888
tar -zcf /tmp/build.tgz .

0 commit comments

Comments
 (0)