Raymond Toy pushed to branch issue-334-add-wiki-link-checker at cmucl / cmucl
Commits: 534f2ae3 by Raymond Toy at 2024-07-10T15:12:09-07:00 Allow linkchecker to fail so pipeline will continue
We don't want the link checker to stop the pipeline so allow it it fail.
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
===================================== .gitlab-ci.yml ===================================== @@ -200,6 +200,9 @@ linkchecker: # Only the linux runner has markdown-link-check installed tags: - linux + # It's ok if this fails; we don't want to declare the entire + # pipeline as having failed. + allow_failure: true 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/534f2ae3fec75e4d9bc7da77...