Raymond Toy pushed to branch issue-342-add-ci-static-analyzer at cmucl / cmucl
Commits: 36374808 by Raymond Toy at 2024-07-23T18:43:49-07:00 Add rule to run static-analyzer when pipeline is scheduled
When the pipeline is scheduled, run the static-analyzer job. Currently the pipeline is scheduled to run automatically once a month, so the static analyzer should eventually get run periodically if we ever forget to trigger it manually.
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
===================================== .gitlab-ci.yml ===================================== @@ -235,7 +235,9 @@ osx:benchmark:
linux:static-analyzer: stage: build - when: manual + rules: + - if: $CI_PIPELINE_SOURCE = "schedule" + - when: manual tags: - linux artifacts:
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/363748084deb7a146b4c1b46...