hygguile-d9248cdd-4cc3

job failed

time taken
8 seconds
started at
Fri Jun 26 15:30:58 2026
updated at
Fri Jun 26 15:31:06 2026
log uuid
d9248cdd-4cc3-4a0f-8f0c-2ac9bc19c87b
inspect the job's lambda expression
(lambda()
  `((task . ("maak-test" "maak-deploy"))
    (project . "hygguile")
    (branch-name . "trunk")            
    (clone-url . "https://codeberg.org/jjba23/hygguile.git")
    (env . ((VERITAS_REPORTER . monotone-reporter)))))
    
starting new job...


-> running command: cd "/etc/byggsteg/job-clone//hygguile/trunk" && git reset --hard && git pull

HEAD is now at 238997e feat: ??? Improve documentation
From https://codeberg.org/jjba23/hygguile
   238997e..3bf0462  trunk      -> origin/trunk
 * [new tag]         v2.0.28    -> v2.0.28
Updating 238997e..3bf0462
Fast-forward
 src/hygguile/components/carousel.scm |   2 +-
 src/hygguile/components/fly-out.scm  |   6 +-
 src/hygguile/components/icon.scm     |  15 +++-
 src/hygguile/components/input.scm    |   4 +-
 src/hygguile/css.scm                 |  26 +++++++
 src/hygguile/hygguile.scm            |  17 +++++
 src/hygguile/sxml.scm                | 139 +++++++++++++++++++++++++++++++----
 7 files changed, 186 insertions(+), 23 deletions(-)


-> running command: cd /etc/byggsteg/job-clone/hygguile/trunk && uname -a

Linux wolk-jjba 7.0.12-gnu #1 SMP PREEMPT_DYNAMIC 1 x86_64 GNU/Linux


-> running command: cd /etc/byggsteg/job-clone/hygguile/trunk && git log --name-status HEAD^..HEAD

commit 3bf0462aac3d5e6ed7e9773ea83a459cd7877644
Author: Josep Bigorra <jjbigorra@gmail.com>
Date:   Fri Jun 26 15:30:30 2026 +0200

    feat: ??? Improve documentation

M	src/hygguile/components/carousel.scm
M	src/hygguile/components/fly-out.scm
M	src/hygguile/components/icon.scm
M	src/hygguile/components/input.scm
M	src/hygguile/css.scm
M	src/hygguile/hygguile.scm
M	src/hygguile/sxml.scm


-> running command: cd /etc/byggsteg/job-clone/hygguile/trunk && maak test

guix shell: warning: importing module (srfi srfi-26) from the host

scanning directories for unit tests...
scanning present working directory for unit tests...

found unit tests: (components/button-spec.scm components/icon-spec.scm abstraction-spec.scm)

+----------------------------------------------+
running unit tests from file: components/button-spec.scm, entrypoint: spec


+----------------------------------------------+
[? suite] Buttons
  [? test] hygguile buttons
    [?? assert] danger-submit-button returns a valid button
    ? pass - expect: button, got: button
    [?? assert] icon-button returns a valid button
    ? pass - expect: button, got: button
    [?? assert] button returns a valid button
    ? pass - expect: button, got: button
    [?? assert] submit-button returns a valid button
    ? pass - expect: button, got: button
?? info - ran 1 tasks in: 0 seconds, 1184 microseconds
+----------------------------------------------+
running unit tests from file: components/icon-spec.scm, entrypoint: spec


+----------------------------------------------+
[? suite] Icons
  [? test] hygguile icons
    [?? assert] icon is an <i> element
    ? pass - expect: i, got: i
?? info - ran 1 tasks in: 0 seconds, 5526 microseconds
+----------------------------------------------+
running unit tests from file: abstraction-spec.scm, entrypoint: spec


+----------------------------------------------+
[? suite] Abstraction test suite
  [? test] mk-class
    [?? assert] mk-class list of symbols removes duplication
    ? pass - expect: my-2 p-2, got: my-2 p-2
    [?? assert] mk-class empty list returns empty class string
    ? pass - expect: , got: 
    [?? assert] mk-class list of symbols is converted to sorted space-separated string
    ? pass - expect: bg-stone-900/75 hover:bg-stone-900 my-2 p-2, got: bg-stone-900/75 hover:bg-stone-900 my-2 p-2
    [?? assert] mk-class false value returns empty class string
    ? pass - expect: , got: 
  [? test] render-if
    [?? assert] render-if-nestring with #f
    ? pass - expect: (), got: ()
    [?? assert] render-if-nestring with empty string
    ? pass - expect: (), got: ()
    [?? assert] render-if-nestring with valid string
    ? pass - expect: HELLO, got: HELLO
  [? test] pretty-quote
    [?? assert] Empty quoted expression
    ? pass - expect: ', got: '
    [?? assert] Quoted expression with spaces
    ? pass - expect: 'some value, got: 'some value
    [?? assert] Quoted expression with nested parentheses
    ? pass - expect: '(nested value), got: '(nested value)
    [?? assert] Multiple simple quoted expressions
    ? pass - expect: 'name and 'age, got: 'name and 'age
    [?? assert] No quoted expressions
    ? pass - expect: some text without quotes, got: some text without quotes
    [?? assert] Single simple quoted expression
    ? pass - expect: 'user, got: 'user
    [?? assert] Multiple occurrences of the same quoted expression
    ? pass - expect: 'same and also 'same, got: 'same and also 'same
    [?? assert] Quoted expression with special characters (excluding ')')'
    ? pass - expect: 'value-with-$&+,./:;=?@_~, got: 'value-with-$&+,./:;=?@_~
    [?? assert] Real-world like string
    ? pass - expect: 'user #:content "user" #:background 'bg-amber-500 #:hover-background 'hover:bg-amber-700 #:color 'text-onyx-500 #:icon-css '(text-onyx-500 text-xl), got: 'user #:content "user" #:background 'bg-amber-500 #:hover-background 'hover:bg-amber-700 #:color 'text-onyx-500 #:icon-css '(text-onyx-500 text-xl)
    [?? assert] Quoted expression at the beginning of the string
    ? pass - expect: 'first then more text, got: 'first then more text
    [?? assert] String with a mix of quoted and non-quoted content
    ? pass - expect: prefix 'data infix '(more data) suffix, got: prefix 'data infix '(more data) suffix
    [?? assert] Quoted expression at the end of the string
    ? pass - expect: some text 'last, got: some text 'last
    [?? assert] Multiple quoted expressions with different types
    ? pass - expect: start 'item middle '(sub item) end, got: start 'item middle '(sub item) end
?? info - ran 1 tasks in: 0 seconds, 6653 microseconds;;; note: source file ./test/veritas/unit/components/button-spec.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/test/veritas/unit/components/button-spec.scm.go
;;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0
;;;       or pass the --no-auto-compile argument to disable.
;;; compiling ./test/veritas/unit/components/button-spec.scm
;;; note: source file ./src/hygguile/components/button.scm
;;;       newer than compiled /gnu/store/smkg6mdz966lck3p146nsgg9x47589mi-profile/lib/guile/3.0/site-ccache/hygguile/components/button.go
;;; note: source file ./src/hygguile/components/button.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/button.scm.go
;;; compiling ./src/hygguile/components/button.scm
;;; note: source file ./src/hygguile/abstraction.scm
;;;       newer than compiled /gnu/store/smkg6mdz966lck3p146nsgg9x47589mi-profile/lib/guile/3.0/site-ccache/hygguile/abstraction.go
;;; note: source file ./src/hygguile/abstraction.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/abstraction.scm.go
;;; compiling ./src/hygguile/abstraction.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/abstraction.scm.go
;;; note: source file ./src/hygguile/components/icon.scm
;;;       newer than compiled /gnu/store/smkg6mdz966lck3p146nsgg9x47589mi-profile/lib/guile/3.0/site-ccache/hygguile/components/icon.go
;;; note: source file ./src/hygguile/components/icon.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/icon.scm.go
;;; compiling ./src/hygguile/components/icon.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/icon.scm.go
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/button.scm.go
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/test/veritas/unit/components/button-spec.scm.go
;;; note: source file ./test/veritas/unit/components/icon-spec.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/test/veritas/unit/components/icon-spec.scm.go
;;; compiling ./test/veritas/unit/components/icon-spec.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/test/veritas/unit/components/icon-spec.scm.go
;;; note: source file ./test/veritas/unit/abstraction-spec.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/test/veritas/unit/abstraction-spec.scm.go
;;; compiling ./test/veritas/unit/abstraction-spec.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/test/veritas/unit/abstraction-spec.scm.go


--------------------------------------------------------------

Maak: the infinitely extensible command runner

Loading tasks from Maak file: /etc/byggsteg/job-clone/hygguile/trunk/maak.scm

Executing Maak tasks: test

--------------------------------------------------------------

=> Running Maak task: test

  Run project's tests.
;;; note: source file /etc/byggsteg/job-clone/hygguile/trunk/maak.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/maak.scm.go
;;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0
;;;       or pass the --no-auto-compile argument to disable.
;;; compiling /etc/byggsteg/job-clone/hygguile/trunk/maak.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/maak.scm.go


-> running command: cd /etc/byggsteg/job-clone/hygguile/trunk && sudo maak deploy

guix/ui.scm:920:18: ./src/hygguile/sxml.scm:346:28: Unknown # object: "#&"
mkdir: map 'dist' is aangemaakt
'resources/css/olive.min.css' -> 'dist/olive.min.css'
guix shell: waarschuwing: module  (srfi srfi-26) wordt ingevoerd vanop de externe machine
;;; note: source file /etc/byggsteg/job-clone/hygguile/trunk/showcase.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/showcase.scm.go
;;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0
;;;       or pass the --no-auto-compile argument to disable.
;;; compiling /etc/byggsteg/job-clone/hygguile/trunk/showcase.scm
;;; note: source file ./src/hygguile/hygguile.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/hygguile.scm.go
;;; compiling ./src/hygguile/hygguile.scm
;;; note: source file ./src/hygguile/abstraction.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/abstraction.scm.go
;;; compiling ./src/hygguile/abstraction.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/abstraction.scm.go
;;; note: source file ./src/hygguile/js.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/js.scm.go
;;; compiling ./src/hygguile/js.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/js.scm.go
;;; note: source file ./src/hygguile/embed/js.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/embed/js.scm.go
;;; compiling ./src/hygguile/embed/js.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/embed/js.scm.go
;;; note: source file ./src/hygguile/embed/css.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/embed/css.scm.go
;;; compiling ./src/hygguile/embed/css.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/embed/css.scm.go
;;; note: source file ./src/hygguile/components/button.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/button.scm.go
;;; compiling ./src/hygguile/components/button.scm
;;; note: source file ./src/hygguile/components/icon.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/icon.scm.go
;;; compiling ./src/hygguile/components/icon.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/icon.scm.go
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/button.scm.go
;;; note: source file ./src/hygguile/components/container.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/container.scm.go
;;; compiling ./src/hygguile/components/container.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/container.scm.go
;;; note: source file ./src/hygguile/components/input.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/input.scm.go
;;; compiling ./src/hygguile/components/input.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/input.scm.go
;;; note: source file ./src/hygguile/components/fly-out.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/fly-out.scm.go
;;; compiling ./src/hygguile/components/fly-out.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/fly-out.scm.go
;;; note: source file ./src/hygguile/components/select.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/select.scm.go
;;; compiling ./src/hygguile/components/select.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/select.scm.go
;;; note: source file ./src/hygguile/components/notification.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/notification.scm.go
;;; compiling ./src/hygguile/components/notification.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/notification.scm.go
;;; note: source file ./src/hygguile/components/typography.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/typography.scm.go
;;; compiling ./src/hygguile/components/typography.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/typography.scm.go
;;; note: source file ./src/hygguile/components/carousel.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/carousel.scm.go
;;; compiling ./src/hygguile/components/carousel.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/components/carousel.scm.go
;;; note: source file ./src/hygguile/css.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/css.scm.go
;;; compiling ./src/hygguile/css.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/css.scm.go
WARNING: (hygguile hygguile): imported module (hygguile components select) overrides core binding `select'
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/hygguile.scm.go
WARNING: (hygguile hygguile): imported module (hygguile components select) overrides core binding `select'
;;; note: source file ./src/hygguile/sxml.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/hygguile/trunk/src/hygguile/sxml.scm.go
;;; compiling ./src/hygguile/sxml.scm
;;; WARNING: compilation of ./src/hygguile/sxml.scm failed:
;;; hygguile/sxml.scm:346:28: Unknown # object: "#&"
;;; WARNING: compilation of /etc/byggsteg/job-clone/hygguile/trunk/showcase.scm failed:
;;; hygguile/sxml.scm:346:28: Unknown # object: "#&"
WARNING: (guile-user): imported module (hygguile hygguile) overrides core binding `select'
Backtrace:
          11 (primitive-load "/etc/byggsteg/job-clone/hygguile/trunk/showcase.scm")
In ice-9/ports.scm:
    482:4 10 (with-output-to-file _ _ #:binary _ #:encoding _)
In ice-9/eval.scm:
    155:9  9 (_ #(#(#<directory (guile-user) 7ff45cf19c80>)))
In ice-9/ports.scm:
    482:4  8 (with-output-to-string #<procedure 7ff45cea3fa0 at ice-9/eval.scm:330:13 ()>)
In ice-9/boot-9.scm:
   269:13  7 (for-each #<procedure 7ff45b4599a0 at ice-9/eval.scm:333:13 (a)> _)
In ice-9/eval.scm:
    619:8  6 (_ #(#(#<directory (hygguile sxml) 7ff45b0d0280>) html ((lang en)) ((head (title "hygguile showcase") ((meta (@ (name viewport) (content "width=device-width, initial-scale=1.0"))) (meta (@ (charset UTF-8)))) ((((link (@ (rel preconnect) (href "https://fonts.googleapis.com"))) (link (@ (rel preconnect) (href "https://fonts.gstatic.com") (crossorigin "")))) (link (@ (rel preload) (as style) (onload "this.onload=null;this.rel='stylesheet'") (href "https://fonts.g???"))) (???)) ???) ???)) #))
    619:8  5 (_ #(#(#(#<directory (hygguile sxml) 7ff45b0d0280> html #<variable 7ff45a14d670 value: #<procedure lp (a)>> #<output: custom-port 7ff459571af0>) ((lang en))) (lang en)))
    619:8  4 (_ #(#(#<directory (hygguile sxml) 7ff45b0d0280>) lang (en) #<output: custom-port 7ff459571af0>))
    619:8  3 (_ #(#(#<directory (hygguile sxml) 7ff45b0d0280>) (en) #<output: custom-port 7ff459571af0>))
   182:19  2 (proc #(#(#<directory (hygguile sxml) 7ff45b0d0280>) en #<output: custom-port 7ff459571af0>))
   142:16  1 (compile-top-call #<directory (hygguile sxml) 7ff45b0d0280> (7 . string->escaped-xml) ((10 (13 15 7 . call-with-output-string) (3 #((0 . 0)) 2 (10 (13 15 7 . display) (11 1 . 0) (11 0 . 0)) () 1)) (11 0 . 1)))
In unknown file:
           0 (%resolve-variable (7 . string->escaped-xml) #<directory (hygguile sxml) 7ff45b0d0280>)

ERROR: In procedure %resolve-variable:
Unbound variable: string->escaped-xml
Backtrace:
In ice-9/boot-9.scm:
  1791:12  8 (with-exception-handler _ _ #:unwind? _ #:unwind-for-type _)
In unknown file:
           7 (apply-smob/0 #<thunk 7f51e4a7c340>)
In ice-9/boot-9.scm:
    740:2  6 (call-with-prompt _ _ #<procedure default-prompt-handler (k proc)>)
In ice-9/eval.scm:
    619:8  5 (_ #(#(#<directory (guile-user) 7f51e4a7fc80>)))
In ice-9/command-line.scm:
   187:19  4 (_ #<input: custom-port 7f51e4a67380>)
In unknown file:
           3 (eval ((@ (maak main) main)) #<directory (guile-user) 7f51e4a7fc80>)
In srfi/srfi-1.scm:
    750:9  2 (for-each #<procedure 7f51e3b99230 at /gnu/store/8b89k664hadvmf5qkxyqh7b6b0z02jcs-profile/share/guile/site/3.0/maak/maak.scm:87:12 (task)> (deploy))
In /etc/byggsteg/job-clone/hygguile/trunk/maak.scm:
    111:2  1 (deploy)
In /gnu/store/8b89k664hadvmf5qkxyqh7b6b0z02jcs-profile/share/guile/site/3.0/maak/dsl.scm:
    89:12  0 ($ _ #:verbose? _ #:join _)

/gnu/store/8b89k664hadvmf5qkxyqh7b6b0z02jcs-profile/share/guile/site/3.0/maak/dsl.scm:89:12: In procedure $:

Non-zero exit code when running!
Command: guix shell -m manifest.scm -- guile -L ./src showcase.scm
Exit code: 1



--------------------------------------------------------------

Maak: the infinitely extensible command runner

Loading tasks from Maak file: /etc/byggsteg/job-clone/hygguile/trunk/maak.scm

Executing Maak tasks: deploy

--------------------------------------------------------------

=> Running Maak task: deploy

  Generate documentation for the project and publish to web directory.