summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2019-10-07 02:33:01 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-10-07 02:33:01 (GMT)
commiteb35c18e426e9a05e1007859f41f56dd0b25e40f (patch)
tree6bae9c69d6dfb6be905692cb436889deb1d343ca /ci
parentcabb145fe36c4e11ed9fd18b852b218e9407ac8b (diff)
parentc46ebc2496dc1960b54b7e2678b2eb61000155c3 (diff)
downloadgit-eb35c18e426e9a05e1007859f41f56dd0b25e40f.zip
git-eb35c18e426e9a05e1007859f41f56dd0b25e40f.tar.gz
git-eb35c18e426e9a05e1007859f41f56dd0b25e40f.tar.bz2
Merge branch 'sg/travis-help-debug'
Dev support update. * sg/travis-help-debug: travis-ci: do not skip successfully tested trees in debug mode
Diffstat (limited to 'ci')
-rwxr-xr-xci/lib.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/ci/lib.sh b/ci/lib.sh
index 29dc740..c8c2c38 100755
--- a/ci/lib.sh
+++ b/ci/lib.sh
@@ -34,6 +34,11 @@ save_good_tree () {
# successfully before (e.g. because the branch got rebased, changing only
# the commit messages).
skip_good_tree () {
+ if test "$TRAVIS_DEBUG_MODE" = true
+ then
+ return
+ fi
+
if ! good_tree_info="$(grep "^$(git rev-parse $CI_COMMIT^{tree}) " "$good_trees_file")"
then
# Haven't seen this tree yet, or no cached good trees file yet.