Raymond Toy pushed to branch issue-334-add-wiki-link-checker at cmucl / cmucl
Commits: bf0b507d by Raymond Toy at 2024-07-10T10:32:34-07:00 Run linkchecker first, for now.
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
===================================== .gitlab-ci.yml ===================================== @@ -5,12 +5,12 @@ variables:
stages: + - link-check - install - build - test - ansi-test - benchmark - - link-check
cache:
@@ -205,5 +205,4 @@ linkchecker: - find . -name *.md -print0 | xargs -0 -n1 markdown-link-check # Clone the wiki pages and check the links there. - git clone https://gitlab.common-lisp.net/cmucl/cmucl.wiki.git - - cd cmucl.wiki - - find . -name *.md -print0 | xargs -0 -n1 markdown-link-check + - find cmucl.wiki -name *.md -print0 | xargs -0 -n1 markdown-link-check
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/bf0b507d08dce66fd3b09be8...