ci: Honor the system passed to image->job.
Fixes: <https://issues.guix.gnu.org/53480>. * gnu/ci.scm (image->job): Pass the system argument to the underlying lower-object call.
This commit is contained in:
parent
8b192c5550
commit
7c2b09f924
1 changed files with 1 additions and 1 deletions
|
@ -252,7 +252,7 @@ otherwise use the IMAGE name."
|
|||
(drv (run-with-store store
|
||||
(mbegin %store-monad
|
||||
(set-guile-for-build (default-guile))
|
||||
(lower-object (system-image image))))))
|
||||
(lower-object (system-image image) system)))))
|
||||
(parameterize ((%graft? #f))
|
||||
(derivation->job name drv))))
|
||||
|
||||
|
|
Reference in a new issue