Raymond Toy pushed to branch issue-334-add-wiki-link-checker at cmucl / cmucl
Commits: 9a413130 by Raymond Toy at 2024-07-10T08:33:44-07:00 Merge link checks into one (new) stage
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
===================================== .gitlab-ci.yml ===================================== @@ -10,6 +10,7 @@ stages: - test - ansi-test - benchmark + - link-check
cache:
@@ -193,24 +194,16 @@ osx:benchmark: - ../../snapshot/bin/lisp -load report
# From https://github.com/tcort/markdown-link-check +# Checks links on the wiki pages whenever any wiki markdown pages change. linkchecker: - stage: test + stage: link-check image: name: ghcr.io/tcort/markdown-link-check:3.11.2 entrypoint: ["/bin/sh", "-c"] script: + # Check links in the main repo - find . -name *.md -print0 | xargs -0 -n1 markdown-link-check - rules: - - changes: - - "**/*.md" - -# Checks links on the wiki pages whenever any wiki markdown pages change. -wikilinkchecker: - stage: test - image: - name: ghcr.io/tcort/markdown-link-check:3.11.2 - entrypoint: ["/bin/sh", "-c"] - script: + # 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 \ No newline at end of file + - find . -name *.md -print0 | xargs -0 -n1 markdown-link-check
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/9a413130c848dcf7ba95da61...