Raymond Toy pushed to branch issue-478-run-analyzer-link-chcker-on-schedule at cmucl / cmucl
Commits:
-
4c62881f
by Raymond Toy at 2026-03-11T16:05:53-07:00
1 changed file:
Changes:
| ... | ... | @@ -171,13 +171,7 @@ linux:cross-build: |
| 171 | 171 | CONFIG: "x86_linux"
|
| 172 | 172 | |
| 173 | 173 | needs:
|
| 174 | - |
|
| 175 | - # Normally need the linux:install stage to get the compiler to
|
|
| 176 | - # use. But for #337, we need the normal build from linux:build to
|
|
| 177 | - # do the cross-compile. Once the snapshot is made, we can use
|
|
| 178 | - # linux:install instead.
|
|
| 179 | - - job: linux:build
|
|
| 180 | - #- job: linux:install
|
|
| 174 | + - job: linux:install
|
|
| 181 | 175 | artifacts: true
|
| 182 | 176 | script:
|
| 183 | 177 | - bin/create-target.sh xtarget $CONFIG
|
| ... | ... | @@ -372,6 +366,8 @@ markdown-link-check: |
| 372 | 366 | # It's ok if this fails; we don't want to declare the entire
|
| 373 | 367 | # pipeline as having failed.
|
| 374 | 368 | allow_failure: true
|
| 369 | + # This job doesn't depend on any others.
|
|
| 370 | + needs: []
|
|
| 375 | 371 | rules:
|
| 376 | 372 | - if: $CI_PIPELINE_SOURCE == "schedule"
|
| 377 | 373 | - when: manual
|
| ... | ... | @@ -384,4 +380,3 @@ markdown-link-check: |
| 384 | 380 | # https://gitlab.com/gitlab-org/gitlab/-/issues/17845.
|
| 385 | 381 | - git clone https://gitlab.common-lisp.net/cmucl/cmucl.wiki.git
|
| 386 | 382 | - find cmucl.wiki -name \*.md -print0 | xargs -0 -n1 markdown-link-check |
| 387 | - |