
Raymond Toy pushed to branch issue-342-add-ci-static-analyzer at cmucl / cmucl Commits: 5ca1d65f by Raymond Toy at 2024-07-24T07:07:29-07:00 Just make analyzer job completely optional Let's not try running this job when pipelines are scheduled. The pipeline was failing with the message > linux:static-analyzer' job needs 'linux:build' job, but 'linux:build' is not in any previous stage Not yet sure how to fix that. - - - - - 1 changed file: - .gitlab-ci.yml Changes: ===================================== .gitlab-ci.yml ===================================== @@ -236,15 +236,11 @@ osx:benchmark: - CMUCL=../../dist/bin/lisp ./run-cmucl.sh - ../../snapshot/bin/lisp -load report -# Optional job that runs the static analyzer. Either manually start -# it or let it run automatically when scheduled pipelines run. -# It needs the files from the linux-4 directory built in the -# linux:build job. +# Optional job that runs the static analyzer. It needs the files from +# the linux-4 directory built in the linux:build job. linux:static-analyzer: stage: analyze - rules: - - if: $CI_PIPELINE_SOURCE == "schedule" - - when: manual + when: manual tags: - linux artifacts: View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/5ca1d65ffc28b17cd3c81beb... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/5ca1d65ffc28b17cd3c81beb... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)