]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Do not run "make recheck" if the test suite fails
authorMichał Kępień <michal@isc.org>
Fri, 7 Aug 2020 12:35:05 +0000 (14:35 +0200)
committerMichał Kępień <michal@isc.org>
Fri, 7 Aug 2020 12:35:05 +0000 (14:35 +0200)
Running "make recheck" after the test suite fails hides intermittent
system test failures in GitLab CI.  This makes it hard to identify which
branches are affected by a particular test failure mode and causes CI
results to be overly optimistic.  Prevent "make recheck" from being run
when "make check" fails to ensure GitLab CI results properly reflect the
stability of the "main" branch.

.gitlab-ci.yml

index 6b5b422828f348ec91aa1ead3e4646fe96b35c3e..178dc5d0fbc3ba85511370d5673ea06245dd0d8c 100644 (file)
@@ -248,7 +248,7 @@ stages:
     - *setup_softhsm
   script:
     - cd bin/tests/system
-    - make -j${TEST_PARALLEL_JOBS:-1} -k check V=1 || make -j${TEST_PARALLEL_JOBS:-1} -k recheck V=1
+    - make -j${TEST_PARALLEL_JOBS:-1} -k check V=1
   after_script:
     - cat bin/tests/system/test-suite.log