aboutsummaryrefslogtreecommitdiff
path: root/gnu/ci.scm
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2022-10-13 11:53:34 +0200
committerMathieu Othacehe <othacehe@gnu.org>2022-10-13 17:28:46 +0200
commit7c2b09f924788a9ed1b149830a4de4e2920d4618 (patch)
tree27784372c1df6aecc48e2dd6518ca7f4af5e6ac0 /gnu/ci.scm
parent8b192c5550213911f930594f4fd7386f36618237 (diff)
downloadguix-7c2b09f924788a9ed1b149830a4de4e2920d4618.tar
guix-7c2b09f924788a9ed1b149830a4de4e2920d4618.tar.gz
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.
Diffstat (limited to 'gnu/ci.scm')
-rw-r--r--gnu/ci.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/ci.scm b/gnu/ci.scm
index 884dd84469..e1ba0f6100 100644
--- a/gnu/ci.scm
+++ b/gnu/ci.scm
@@ -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))))