[Git][cmucl/cmucl][issue-478-run-analyzer-link-chcker-on-schedule] Allow linux:install job to run when scheduled
Raymond Toy pushed to branch issue-478-run-analyzer-link-chcker-on-schedule at cmucl / cmucl Commits: 874302fc by Raymond Toy at 2026-02-28T18:16:37-08:00 Allow linux:install job to run when scheduled Updated so that linux:install is run because linux:build needs it, which is needed by the analyzer when run on a schedule. - - - - - 1 changed file: - .gitlab-ci.yml Changes: ===================================== .gitlab-ci.yml ===================================== @@ -129,6 +129,15 @@ linux:install: variables: osname: "linux" CURL: "curl" + rules: + # 1. Ensure build runs for schedules so the analyzer can use its files + - if: $CI_PIPELINE_SOURCE == "schedule" + when: on_success + # 2. Ensure build runs if the analyzer variable is set + - if: $RUN_ANALYSIS + when: on_success + # 3. Default: run for standard pushes/MRs + - when: on_success linux:build: <<: *build_configuration View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/874302fc9fd3018fe49794c9... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/874302fc9fd3018fe49794c9... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)