* bug#74787: guile-ssh@0.18 breaks offloading
@ 2024-12-11 12:55 Dariqq
2024-12-11 20:57 ` Dariqq
0 siblings, 1 reply; 4+ messages in thread
From: Dariqq @ 2024-12-11 12:55 UTC (permalink / raw)
To: 74787
Hello,
Today I reconfigured my system and after a reboot offloading no longer
works.
When i try to build something that could be offloaded it instead tries
to build it locally instead and fails with
unsupported-platform
while setting up the build environment: a `*' is required to build `*',
but I am a `*'
However 'guix offload test' is still succeeding
--8<---------------cut here---------------start------------->8---
sudo guix offload test
guix offload: testing 1 build machines defined in
'/etc/guix/machines.scm'...
guix offload: Guix is usable on '*' (test returned "/gnu/store/*-test")
guix offload: '*' is running GNU Guile 3.0.9
guix offload: sending 1 store item (0 MiB) to '*'...
exporting path `/gnu/store/*-export-test'
guix offload: '*' successfully imported '/gnu/store/*-export-test'
retrieving 1 store item from '*'...
guix offload: successfully imported '/gnu/store/*-import-test' from '*'
--8<---------------cut here---------------end--------------->8---
I tracked this down to the guile-ssh update in
da3c8a963f83c044568d99921480259eaa26a923
Reverting that restores offloading for me.
This might also be the cause for the 'guix deploy' error described in
https://logs.guix.gnu.org/guix/2024-12-11.log#033439
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#74795] [PATCH] remote: Do not double-quote the repl-command.
2024-12-11 12:55 bug#74787: guile-ssh@0.18 breaks offloading Dariqq
@ 2024-12-11 16:27 ` Tomas Volf
0 siblings, 0 replies; 4+ messages in thread
From: Tomas Volf @ 2024-12-11 16:27 UTC (permalink / raw)
To: 74787, 74795
Cc: Tomas Volf, Christopher Baines, Josselin Poiret,
Ludovic Courtès, Mathieu Othacehe, Simon Tournier,
Tobias Geerinckx-Rice
In 0.18.0, the `open-remote-pipe*' now correctly quotes the arguments, so the
double quoting that was done by `shell-quote' is not harmful and breaks at
least offloading and deploy.
* guix/remote.scm (remote-pipe-for-gexp): Call object->string just once.
Change-Id: Id922d26d318bfdd4714e267687c1b27461196d90
---
I checked all places where the changed procedures are used and those look
correct. Nothing else in the NEWS file for 0.18.0 jumps out as a potential
issue.
guix/remote.scm | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/guix/remote.scm b/guix/remote.scm
index a58ec2103c..9423f9af12 100644
--- a/guix/remote.scm
+++ b/guix/remote.scm
@@ -48,9 +48,6 @@ (define-module (guix remote)
(define* (remote-pipe-for-gexp lowered session #:optional become-command)
"Return a remote pipe for the given SESSION to evaluate LOWERED. If
BECOME-COMMAND is given, use that to invoke the remote Guile REPL."
- (define shell-quote
- (compose object->string object->string))
-
(define repl-command
(append (or become-command '())
(list
@@ -65,7 +62,7 @@ (define* (remote-pipe-for-gexp lowered session #:optional become-command)
`("-C" ,directory))
(lowered-gexp-load-path lowered))
`("-c"
- ,(shell-quote (lowered-gexp-sexp lowered)))))
+ ,(object->string (lowered-gexp-sexp lowered)))))
(let ((pipe (apply open-remote-pipe* session OPEN_READ repl-command)))
(when (eof-object? (peek-char pipe))
--
2.46.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#74787: [PATCH] remote: Do not double-quote the repl-command.
@ 2024-12-11 16:27 ` Tomas Volf
0 siblings, 0 replies; 4+ messages in thread
From: Tomas Volf @ 2024-12-11 16:27 UTC (permalink / raw)
To: 74787, guix-patches
Cc: Tomas Volf, Christopher Baines, Josselin Poiret,
Ludovic Courtès, Mathieu Othacehe, Simon Tournier,
Tobias Geerinckx-Rice
In 0.18.0, the `open-remote-pipe*' now correctly quotes the arguments, so the
double quoting that was done by `shell-quote' is not harmful and breaks at
least offloading and deploy.
* guix/remote.scm (remote-pipe-for-gexp): Call object->string just once.
Change-Id: Id922d26d318bfdd4714e267687c1b27461196d90
---
I checked all places where the changed procedures are used and those look
correct. Nothing else in the NEWS file for 0.18.0 jumps out as a potential
issue.
guix/remote.scm | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/guix/remote.scm b/guix/remote.scm
index a58ec2103c..9423f9af12 100644
--- a/guix/remote.scm
+++ b/guix/remote.scm
@@ -48,9 +48,6 @@ (define-module (guix remote)
(define* (remote-pipe-for-gexp lowered session #:optional become-command)
"Return a remote pipe for the given SESSION to evaluate LOWERED. If
BECOME-COMMAND is given, use that to invoke the remote Guile REPL."
- (define shell-quote
- (compose object->string object->string))
-
(define repl-command
(append (or become-command '())
(list
@@ -65,7 +62,7 @@ (define* (remote-pipe-for-gexp lowered session #:optional become-command)
`("-C" ,directory))
(lowered-gexp-load-path lowered))
`("-c"
- ,(shell-quote (lowered-gexp-sexp lowered)))))
+ ,(object->string (lowered-gexp-sexp lowered)))))
(let ((pipe (apply open-remote-pipe* session OPEN_READ repl-command)))
(when (eof-object? (peek-char pipe))
--
2.46.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#74787: guile-ssh@0.18 breaks offloading
2024-12-11 12:55 bug#74787: guile-ssh@0.18 breaks offloading Dariqq
@ 2024-12-11 20:57 ` Dariqq
0 siblings, 0 replies; 4+ messages in thread
From: Dariqq @ 2024-12-11 20:57 UTC (permalink / raw)
To: 74787
Another problem (other than the open-input-pipe* change) related to the
guile-ssh update is that the GUIX_CHECK_GUILE_SSH macro now fails
resulting in the guix-daemon not having offload support. I openend
https://issues.guix.gnu.org/74800 for this
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-12-11 20:59 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-11 16:27 [bug#74795] [PATCH] remote: Do not double-quote the repl-command Tomas Volf
2024-12-11 16:27 ` bug#74787: " Tomas Volf
-- strict thread matches above, loose matches on Subject: below --
2024-12-11 12:55 bug#74787: guile-ssh@0.18 breaks offloading Dariqq
2024-12-11 20:57 ` Dariqq
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.