Raymond Toy pushed to branch issue-334-add-wiki-link-checker at cmucl / cmucl
Commits: 287c0942 by Raymond Toy at 2024-07-10T08:18:10-07:00 Check the wiki pages too
To do this clone the wiki repo and run the link checker on the wiki repo.
- - - - - ef40043e by Raymond Toy at 2024-07-10T08:21:21-07:00 Use correct path to wiki repo
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
===================================== .gitlab-ci.yml ===================================== @@ -193,7 +193,6 @@ 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 image: @@ -203,4 +202,15 @@ linkchecker: - find . -name *.md -print0 | xargs -0 -n1 markdown-link-check rules: - changes: - - "**/*.md" \ No newline at end of file + - "**/*.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: + - 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
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/fc4b12bee2957764774350e...