Raymond Toy pushed to branch issue-342-add-ci-static-analyzer at cmucl / cmucl
Commits: 1178f928 by Raymond Toy at 2024-07-23T21:29:49-07:00 Add analyze stage for static analysis job
Make sure the static analysis job is in a stage that comes after the build stage.
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
===================================== .gitlab-ci.yml ===================================== @@ -10,6 +10,7 @@ stages: - test - ansi-test - benchmark + - analyze
cache:
@@ -236,7 +237,7 @@ osx:benchmark: - ../../snapshot/bin/lisp -load report
linux:static-analyzer: - stage: build + stage: analyze rules: - if: $CI_PIPELINE_SOURCE == "schedule" - when: manual
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/1178f928106474db83591aff...