mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-02 15:45:25 +00:00
Unify Python interpreter used by TSAN and JUnit helpers
Reportedly we don't have python2-enabled TSAN builds, so we can remove one more hardcoded python3 call from .gitlab-ci.yaml.
This commit is contained in:
@@ -338,8 +338,8 @@ stages:
|
|||||||
<<: *system_test_common
|
<<: *system_test_common
|
||||||
after_script:
|
after_script:
|
||||||
- cat bin/tests/system/test-suite.log
|
- cat bin/tests/system/test-suite.log
|
||||||
- find bin -name 'tsan.*' -exec python3 util/parse_tsan.py {} \;
|
|
||||||
- *find_python
|
- *find_python
|
||||||
|
- find bin -name 'tsan.*' -exec "$PYTHON" util/parse_tsan.py {} \;
|
||||||
- >
|
- >
|
||||||
"$PYTHON" bin/tests/convert-trs-to-junit.py . > "$CI_PROJECT_DIR"/junit.xml
|
"$PYTHON" bin/tests/convert-trs-to-junit.py . > "$CI_PROJECT_DIR"/junit.xml
|
||||||
artifacts:
|
artifacts:
|
||||||
@@ -383,8 +383,8 @@ stages:
|
|||||||
.unit_test_tsan: &unit_test_tsan_job
|
.unit_test_tsan: &unit_test_tsan_job
|
||||||
<<: *unit_test_common
|
<<: *unit_test_common
|
||||||
after_script:
|
after_script:
|
||||||
- find lib -name 'tsan.*' -exec python3 util/parse_tsan.py {} \;
|
|
||||||
- *find_python
|
- *find_python
|
||||||
|
- find lib -name 'tsan.*' -exec "$PYTHON" util/parse_tsan.py {} \;
|
||||||
- >
|
- >
|
||||||
"$PYTHON" bin/tests/convert-trs-to-junit.py . > "$CI_PROJECT_DIR"/junit.xml
|
"$PYTHON" bin/tests/convert-trs-to-junit.py . > "$CI_PROJECT_DIR"/junit.xml
|
||||||
artifacts:
|
artifacts:
|
||||||
|
Reference in New Issue
Block a user