Raymond Toy pushed to branch issue-334-add-wiki-link-checker at cmucl / cmucl
Commits: f1ddd73c by Raymond Toy at 2024-07-10T14:40:43-07:00 Use the Linux runner for the link checker
Installed markdown-link-check on the Linux runner so we can run the link check there. This is useful because it lets us clone the wiki pages so we can check the links. (I hope; needs testing.)
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
===================================== .gitlab-ci.yml ===================================== @@ -197,9 +197,9 @@ osx:benchmark: # Checks links on the wiki pages whenever any wiki markdown pages change. linkchecker: stage: link-check - image: - name: ghcr.io/tcort/markdown-link-check:3.11.2 - entrypoint: ["/bin/sh", "-c"] + # Only the linux runner has markdown-link-check installed + tags: + - linux script: # Check links in the main repo - find . -name *.md -print0 | xargs -0 -n1 markdown-link-check
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/f1ddd73c5c1866df5d4937d8...