Skip to content

Commit 3e05ff3

Browse files
avargitster
authored andcommitted
CI: have "static-analysis" run "check-builtins", not "documentation"
Move the "make check-builtins" check from the "documentation" job to the "static-analysis" job. The "check-builtins" target added in c74390e (cherry is built-in, do not ship git-cherry.sh, 2006-11-05) is unrelated to the documentation, so it's odd that b98712b (travis-ci: build documentation, 2016-05-04) added it to the "documentation" job. Let's just move it to the "ci-static-analysis" target, and while we're at it improve the output with $(QUIET_CHECK). Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent ecee195 commit 3e05ff3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3384,7 +3384,7 @@ check-docs::
33843384
### Make sure built-ins do not have dups and listed in git.c
33853385
#
33863386
check-builtins::
3387-
./check-builtins.sh
3387+
$(QUIET_CHECK)./check-builtins.sh
33883388

33893389
### Test suite coverage testing
33903390
#
@@ -3474,5 +3474,6 @@ ci-check-directional-formatting:
34743474

34753475
.PHONY: ci-static-analysis
34763476
ci-static-analysis: ci-check-directional-formatting
3477+
ci-static-analysis: check-builtins
34773478
ci-static-analysis: check-coccicheck
34783479
ci-static-analysis: hdr-check

ci/test-documentation.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ filter_log () {
1414
"$1"
1515
}
1616

17-
make check-builtins
1817
make check-docs
1918

2019
# Build docs with AsciiDoc

0 commit comments

Comments
 (0)