We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6173157 + ef3864e commit 6fcd144Copy full SHA for 6fcd144
3 files changed
ci/run-build-and-tests.sh
@@ -72,5 +72,9 @@ case "$jobname" in
72
;;
73
esac
74
75
+case " $MAKE_TARGETS " in
76
+*" all "*) make -C contrib/subtree test;;
77
+esac
78
+
79
check_unignored_build_artifacts
80
save_good_tree
ci/run-test-slice.sh
@@ -20,4 +20,7 @@ if [ "$1" == "0" ] ; then
20
group "Run unit tests" make --quiet -C t unit-tests-test-tool
21
fi
22
23
+# Run the git subtree tests only if main tests succeeded
24
+test 0 != "$1" || make -C contrib/subtree test
25
26
contrib/subtree/Makefile
@@ -94,7 +94,7 @@ $(GIT_SUBTREE_TEST): $(GIT_SUBTREE)
94
cp $< $@
95
96
test: $(GIT_SUBTREE_TEST)
97
- $(MAKE) -C t/ test
+ $(MAKE) -C t/ all
98
99
clean:
100
$(RM) $(GIT_SUBTREE)
0 commit comments