Skip to content

Commit eb35c18

Browse files
committed
Merge branch 'sg/travis-help-debug'
Dev support update. * sg/travis-help-debug: travis-ci: do not skip successfully tested trees in debug mode
2 parents cabb145 + c46ebc2 commit eb35c18

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ci/lib.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ save_good_tree () {
3434
# successfully before (e.g. because the branch got rebased, changing only
3535
# the commit messages).
3636
skip_good_tree () {
37+
if test "$TRAVIS_DEBUG_MODE" = true
38+
then
39+
return
40+
fi
41+
3742
if ! good_tree_info="$(grep "^$(git rev-parse $CI_COMMIT^{tree}) " "$good_trees_file")"
3843
then
3944
# Haven't seen this tree yet, or no cached good trees file yet.

0 commit comments

Comments
 (0)