[Git][ghc/ghc][master] gitlab-ci: Don't use .full-ci to run test-primops
Ben Gamari (@bgamari)
gitlab at gitlab.haskell.org
Tue Feb 4 15:01:24 UTC 2025
Ben Gamari pushed to branch master at Glasgow Haskell Compiler / GHC
Commits:
9a59b026 by Ben Gamari at 2025-02-04T10:00:18-05:00
gitlab-ci: Don't use .full-ci to run test-primops
test-primops depends upon the existence of validate jobs, yet these do
not exist in the context of nightly jobs, which .full-ci includes.
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
=====================================
.gitlab-ci.yml
=====================================
@@ -909,7 +909,10 @@ test-primops-label:
extends: .test-primops-validate-template
rules:
- if: '$CI_MERGE_REQUEST_LABELS =~ /.*test-primops.*/'
- - *full-ci
+ # We do not use *.full-ci here since that would imply running in nightly
+ # where we do not have the normal validate jobs. We have the -nightly job
+ # below to handle this case.
+ - if: '$CI_MERGE_REQUEST_LABELS =~ /.*full-ci.*/'
test-primops-nightly:
extends: .test-primops
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/9a59b026608c339ed7872f3d4b8a66b77c52b967
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/9a59b026608c339ed7872f3d4b8a66b77c52b967
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20250204/79198df9/attachment.html>
More information about the ghc-commits
mailing list