IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 80b97dfe authored by Hans Dembinski's avatar Hans Dembinski
Browse files

reverting to 4 threads and log compression

parent 6ba7d035
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ build: ...@@ -7,7 +7,7 @@ build:
stage: build stage: build
tags: tags:
- corsika - corsika
# detect_leaks=0 because leak detection doesn't work in CI, but you can # detect_leaks=0 because leak detection doesn't work in CI, but you can
# try to test with leak detection locally, just set detect_leaks=1 # try to test with leak detection locally, just set detect_leaks=1
script: script:
...@@ -17,11 +17,14 @@ build: ...@@ -17,11 +17,14 @@ build:
- cmake --build . -- -j4 - cmake --build . -- -j4
- UBSAN_OPTIONS=print_stacktrace=1 - UBSAN_OPTIONS=print_stacktrace=1
LSAN_OPTIONS=log_threads=1 LSAN_OPTIONS=log_threads=1
ASAN_OPTIONS=detect_leaks=0:detect_stack_use_after_return=1 ctest -V -O test.txt ASAN_OPTIONS=detect_leaks=0:detect_stack_use_after_return=1 ctest -j4 -V -O test.log
after_script:
- cd build
- gzip -v -9 -S .gz test.log
artifacts: artifacts:
expire_in: 1 week expire_in: 1 week
paths: paths:
- build/test.txt - build/test.log.gz
when: on_failure when: on_failure
reports: reports:
junit: junit:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment