Raymond Toy pushed to branch issue-478-run-analyzer-link-chcker-on-schedule at cmucl / cmucl

Commits:

1 changed file:

Changes:

  • .gitlab-ci.yml
    ... ... @@ -129,6 +129,15 @@ linux:install:
    129 129
       variables:
    
    130 130
         osname: "linux"
    
    131 131
         CURL: "curl"
    
    132
    +  rules:
    
    133
    +    # 1. Ensure build runs for schedules so the analyzer can use its files
    
    134
    +    - if: $CI_PIPELINE_SOURCE == "schedule"
    
    135
    +      when: on_success
    
    136
    +    # 2. Ensure build runs if the analyzer variable is set
    
    137
    +    - if: $RUN_ANALYSIS
    
    138
    +      when: on_success
    
    139
    +    # 3. Default: run for standard pushes/MRs
    
    140
    +    - when: on_success    
    
    132 141
     
    
    133 142
     linux:build:
    
    134 143
       <<: *build_configuration