Raymond Toy pushed to branch issue-478-run-analyzer-link-chcker-on-schedule at cmucl / cmucl Commits: 9090260c by Raymond Toy at 2026-03-11T16:17:13-07:00 Allow analyzer and link-checker to run when RUN_CHECKS var is set When the variable RUN_CHECKS is set to any value, the analyzer and link-checker are run. This can be can set it as a pipeline variable when triggering a pipeline manually via the GitLab UI, via the API, or by defining it in a scheduled pipeline's variable list. - - - - - 1 changed file: - .gitlab-ci.yml Changes: ===================================== .gitlab-ci.yml ===================================== @@ -302,6 +302,7 @@ linux:static-analyzer: artifacts: true rules: - if: $CI_PIPELINE_SOURCE == "schedule" + - if: $RUN_CHECKS - when: manual allow_failure: true script: @@ -370,6 +371,7 @@ markdown-link-check: needs: [] rules: - if: $CI_PIPELINE_SOURCE == "schedule" + - if: $RUN_CHECKS - when: manual allow_failure: true script: @@ -380,3 +382,4 @@ markdown-link-check: # https://gitlab.com/gitlab-org/gitlab/-/issues/17845. - git clone https://gitlab.common-lisp.net/cmucl/cmucl.wiki.git - find cmucl.wiki -name \*.md -print0 | xargs -0 -n1 markdown-link-check + View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/9090260c0ef06d3b6d63f54d... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/9090260c0ef06d3b6d63f54d... You're receiving this email because of your account on gitlab.common-lisp.net.