ci:add the env that builds with sanitizer

This commit is contained in:
chenhaoran 2022-11-10 09:58:13 +08:00
parent 04c6d7f26f
commit 14a499c22b
1 changed files with 4 additions and 1 deletions

View File

@ -57,8 +57,11 @@ docker run \
--rm --ulimit core=-1 taos_test:v1.0 sh -c "cd $REP_DIR;rm -rf debug;mkdir -p debug;cd debug;cmake .. -DBUILD_HTTP=false -DBUILD_TOOLS=true -DBUILD_TEST=true -DWEBSOCKET=true;make -j $THREAD_COUNT"
if [[ -d ${WORKDIR}/debugNoSan ]] ;then
echo "delete ${WORKDIR}/debugNoSan"
rm -rf ${WORKDIR}/debugNoSan
elif [[ -d ${WORKDIR}/debugSan ]] ;then
fi
if [[ -d ${WORKDIR}/debugSan ]] ;then
echo "delete ${WORKDIR}/debugSan"
rm -rf ${WORKDIR}/debugSan
fi