Skip to content

Commit 3dcf6cc

Browse files
committed
[CI] Retrieve lint job
1 parent 4f3af67 commit 3dcf6cc

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed

dev/lint-commits.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ while IFS= read -r commit; do
4848
then bad_ws+=("$commit")
4949
fi
5050

51-
if ! make check
51+
if ! make
5252
then bad_compile+=("$commit")
5353
fi
5454
done < <(git rev-list "$HEAD_COMMIT" --not "$BASE_COMMIT" --)

dev/lint-repository.sh

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,4 @@ echo Checking end of file newlines
3939
find . "(" -path ./.git -prune ")" -o -type f -print0 |
4040
xargs -0 dev/tools/check-eof-newline.sh || CODE=1
4141

42-
echo Checking overlays
43-
dev/tools/check-overlays.sh || CODE=1
44-
45-
echo Checking CACHEKEY
46-
dev/tools/check-cachekey.sh || CODE=1
47-
48-
# Check that doc/tools/docgram/fullGrammar is up-to-date
49-
echo Checking grammar files
50-
make SHOW='@true ""' doc_gram_verify || CODE=1
51-
5242
exit $CODE

0 commit comments

Comments
 (0)