2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

Merge branch 'pspacek/tsan-ci-artifacts-fix-v9_18' into 'v9_18'

Fix TSAN artifact gathering in CI [v9_18]

See merge request isc-projects/bind9!6857
This commit is contained in:
Petr Špaček
2022-10-05 07:45:12 +00:00

View File

@@ -340,12 +340,12 @@ stages:
after_script:
- cat bin/tests/system/test-suite.log
- *find_python
- find bin -name 'tsan.*' -exec "$PYTHON" util/parse_tsan.py {} \;
- find -name 'tsan.*' -exec "$PYTHON" util/parse_tsan.py {} \;
- >
"$PYTHON" bin/tests/convert-trs-to-junit.py . > "$CI_PROJECT_DIR"/junit.xml
artifacts:
expire_in: "1 day"
untracked: true
expire_in: "1 day"
when: always
reports:
junit: junit.xml
@@ -385,15 +385,12 @@ stages:
<<: *unit_test_common
after_script:
- *find_python
- find lib -name 'tsan.*' -exec "$PYTHON" util/parse_tsan.py {} \;
- find -name 'tsan.*' -exec "$PYTHON" util/parse_tsan.py {} \;
- >
"$PYTHON" bin/tests/convert-trs-to-junit.py . > "$CI_PROJECT_DIR"/junit.xml
artifacts:
untracked: true
expire_in: "1 day"
paths:
- tests/*/tsan.*
- tsan/
- junit.xml
when: always
reports:
junit: junit.xml