Archived
1
0
Fork 0

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:
Mathieu Othacehe 2022-10-13 11:53:34 +02:00
parent 8b192c5550
commit 7c2b09f924
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -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))))