Commit 2dbd51bd by FritzFlorian

Fix: add correct path for sanitizer.log artifact.

parent 017b505a
Pipeline #1094 passed with stages
in 1 minute 37 seconds
......@@ -24,4 +24,4 @@ run_thread_sanitizer:
./ci_scripts/run_thread_sanitizer.sh
artifacts:
paths:
- sanitizer.log.*
- sanitizer.log
......@@ -10,9 +10,9 @@ TSAN_OPTIONS="log_path=sanitizer.log exitcode=1" ./bin/tests
STATUS_CODE=$?
# rename the output log...
mv ./sanitizer.log.* ../sanitizer.log
mv ./sanitizer.log.* ../thread-sanitizer.log
if [[ $? != 0 ]]; then
echo "No sanitizer warnings." > ../sanitizer.log
echo "No sanitizer warnings." > ../thread-sanitizer.log
fi
exit $STATUS_CODE
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment