viewing logs

job failed

veritas

time taken
29 seconds
started at
Tue Aug 26 12:27:30 2025
updated at
Tue Aug 26 12:27:59 2025
log uuid
0c8681f1-50ee-4749-ac5e-8cc17254e5d7
inspect the job's lambda expression
(lambda()
  `((task . ("maak-test" "maak-deploy"))
    (project . "veritas")
    (branch-name . "trunk")
    (clone-url . "https://codeberg.org/jjba23/veritas.git")
    (env . ((VERITAS_REPORTER . monotone-reporter)))))
starting new job...


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

HEAD is now at cd4595b ???? docs: Improve technical documentation of assertions
From https://codeberg.org/jjba23/veritas
 * [new tag]         v0.1.17    -> v0.1.17
Updating cd4595b..213d9ac
Fast-forward
 .mbake.toml                                   | 50 ++++++++++++++
 .woodpecker/byggsteg.yaml                     |  5 +-
 Makefile                                      | 28 ++++----
 README.org                                    |  4 +-
 direvent.conf                                 | 40 +++++++++++
 docs/{api-documentation.org => manual/en.org} |  0
 maak.scm                                      | 98 +++++++++++++++++++++++++++
 manifest.scm                                  |  9 ++-
 src/veritas/assert.scm                        |  4 +-
 src/veritas/veritas.scm                       |  3 +-
 test/veritas/unit/{more => }/lists.scm        |  2 +-
 11 files changed, 217 insertions(+), 26 deletions(-)
 create mode 100644 .mbake.toml
 create mode 100644 direvent.conf
 rename docs/{api-documentation.org => manual/en.org} (100%)
 create mode 100644 maak.scm
 rename test/veritas/unit/{more => }/lists.scm (98%)


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

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


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

commit 213d9ac15f8e957afce41d3d309cf20dd0d44ec7
Author: Josep Bigorra <jjbigorra@gmail.com>
Date:   Tue Aug 26 12:25:08 2025 +0200

    ???? fix: Links to Manuals

M	README.org


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

The following derivation will be built:
  /gnu/store/dz5mafl3bssv9vhd2a1ah245mvnvx5xq-profile.drv

building CA certificate bundle...
listing Emacs sub-directories...
building fonts directory...
generating GdkPixbuf loaders cache...
generating GLib schema cache...
creating GTK+ icon theme cache...
building cache files for GTK+ input methods...
building directory of Info manuals...
building XDG desktop file cache...
building XDG MIME database...
building profile with 9 packages...

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

found unit tests: (simple.scm numeric.scm lists.scm introduction.scm)


running unit tests from file: simple.scm, entrypoint: spec


  [test] some test without suite
    [pass] expect: 1, got: 1
------------------------------------------
[suite] Predicate Tests
  [test] List Predicates
    [assert] Non-empty list should not be null
    [pass] expect: #f, got: #f
    [assert] Pair should be a pair
    [pass] expect: #t, got: #t
    [assert] Empty list should not be a pair
    [pass] expect: #f, got: #f
    [assert] Empty list should be null
    [pass] expect: #t, got: #t
------------------------------------------
[suite] Complex Data Structure Tests
  [test] Vector Operations
    [assert] Vector ref at index 1
    [pass] expect: 2, got: 2
    [assert] Vector length
    [pass] expect: 3, got: 3
    [assert] Vector ref at index 0
    [pass] expect: 1, got: 1
  [test] Association List Lookups
    [assert] Lookup non-existent key should be #f
    [pass] expect: #f, got: #f
    [assert] Lookup 'name' in alist
    [pass] expect: Alice, got: Alice
    [assert] Lookup 'age' in alist
    [pass] expect: 30, got: 30
------------------------------------------
[suite] Error Handling Tests
  [test] Division by Zero Error
    [assert] Should signal error on division by zero
    [pass] success catching error: misc-error: (#f Division by zero () #f)
  [test] No Error on Valid Division
    [assert] Valid division result
    [pass] expect: 5, got: 5
    [assert] Should not signal error on valid division
    [pass] success running without errors
------------------------------------------
[suite] str
  [test] String Operation Tests
    [pass] expect: #t, got: #t
    [pass] expect: hello world, got: hello world
    [pass] expect: #f, got: #f
------------------------------------------
[suite] Basic Suite
  [test] Check that function calls work
    [pass] expect: 42, got: 42
[info] ran 6 tasks in: 0 seconds, 5401 microseconds

running unit tests from file: numeric.scm, entrypoint: spec


------------------------------------------
[suite] Predicate Tests
  [test] Even Number Checks
    [assert] 0 should be even
    [pass] expect: #t, got: #t
    [assert] 1 should not be even
    [pass] expect: #f, got: #f
    [assert] 7 should not be even
    [pass] expect: #f, got: #f
    [assert] 4 should be even
    [pass] expect: #t, got: #t
------------------------------------------
[suite] Basic Suite
  [test] Basic Numeric Tests
    [pass] expect: 1, got: 1
    [pass] expect: 1, got: 1
    [assert] checks if addition works
    [pass] expect: 4, got: 4
    [pass] expect: 0, got: 0
[info] ran 2 tasks in: 0 seconds, 10072 microseconds
[debug] assertion-results: (#t #t #t #t #t #t #t #t)

running unit tests from file: lists.scm, entrypoint: spec


------------------------------------------
[suite] List Manipulation Tests
  [test] List Concatenation
    [assert] Concatenate two non-empty lists
    [pass] expect: (1 2 3 4 5), got: (1 2 3 4 5)
    [assert] Concatenate two empty lists
    [pass] expect: (), got: ()
    [assert] Concatenate empty list with non-empty
    [pass] expect: (a b), got: (a b)
    [assert] Concatenate non-empty list with empty
    [pass] expect: (x y), got: (x y)
  [test] Get First Element
    [assert] First element of an empty list should be #f
    [pass] expect: #f, got: #f
    [assert] First element of a number list
    [pass] expect: 1, got: 1
    [assert] First element of a symbol list
    [pass] expect: a, got: a
  [test] List Length
    [assert] Length of list with 3 elements
    [pass] expect: 3, got: 3
    [assert] Length of empty list
    [pass] expect: 0, got: 0
    [assert] Length of list with one element
    [pass] expect: 1, got: 1
[info] ran 1 tasks in: 0 seconds, 8656 microseconds

running unit tests from file: introduction.scm, entrypoint: spec


------------------------------------------
[suite] Getting Started with Assertions
  [test] Basic String and Predicate Tests
    [assert] String comparison should be case-sensitive
    [pass] expect: #f, got: #f
    [assert] Greeting should be personalized
    [pass] expect: Hello, Veritas!, got: Hello, Veritas!
    [assert] 10 should be greater than 5
    [pass] expect: #t, got: #t
    [assert] Greeting should contain the provided name
    [pass] expect: #t, got: #t
------------------------------------------
[suite] Advanced Veritas Features
[info] TRANSIRE RUBICONEM
[info] ALEA IACTA EST
  [test] A test with a complex computation block
[info] before test runs
[info] after test runs
    [assert] Complex computation inside an assertion
    [pass] expect: 144, got: 144
------------------------------------------
[suite] Testing Logic and List Operations
  [test] Number Classification Logic
    [assert] 99 should be classified as positive
    [pass] expect: positive, got: positive
    [assert] 0 should be classified as zero
    [pass] expect: zero, got: zero
    [assert] -1 should be classified as negative
    [pass] expect: negative, got: negative
  [test] List Summation
    [assert] Sum of elements 1 through 5 should be 15
    [pass] expect: 15, got: 15
    [assert] Sum of an empty list should be 0
    [pass] expect: 0, got: 0
------------------------------------------
[suite] Error and Exception Handling
  [test] Valid summation should not throw an error
    [assert] Should not fail with a valid list of numbers
    [pass] success running without errors
  [test] Summing a list with non-numeric elements
    [assert] Should fail when list contains non-numbers
    [pass] success catching error: wrong-type-arg: (+ Wrong type argument in position ~A: ~S (2 a) (a))
+----------------------------------------------+
[benchmark]
Computation of the factorial of 10000


[run #0]
%     cumulative   self             
time   seconds     seconds  procedure
100.00      0.31      0.31  override/fibers/events-impl.scm:80:0:pump-epoll-guardian
  0.00    763.89      0.00  veritas/unit/introduction.scm:146:0:factorial
  0.00      0.31      0.00  veritas/veritas.scm:216:93
  0.00      0.31      0.00  %after-gc-thunk
  0.00      0.31      0.00  anon #xcd1e0c0
---
Sample count: 12
Total time: 0.305617995 seconds (0.290759241 seconds in GC)

[run #1]
%     cumulative   self             
time   seconds     seconds  procedure
100.00      0.36      0.36  override/fibers/events-impl.scm:80:0:pump-epoll-guardian
  0.00   1065.72      0.00  veritas/unit/introduction.scm:146:0:factorial
  0.00      0.36      0.00  veritas/veritas.scm:216:93
  0.00      0.36      0.00  %after-gc-thunk
  0.00      0.36      0.00  anon #xcd1e0c0
---
Sample count: 13
Total time: 0.361167877 seconds (0.348390007 seconds in GC)

[info] ran 5 tasks in: 1 seconds, -664236 microseconds
------------------------------------------
[suite] Testing Logic and List Operations
  [test] Number Classification Logic
    [assert] -1 should be classified as negative
    [pass] expect: negative, got: negative
    [assert] 99 should be classified as positive
    [pass] expect: positive, got: positive
    [assert] 0 should be classified as zero
    [pass] expect: zero, got: zero
  [test] List Summation
    [assert] Sum of an empty list should be 0
    [pass] expect: 0, got: 0
    [assert] Sum of elements 1 through 5 should be 15
    [pass] expect: 15, got: 15
------------------------------------------
[suite] Getting Started with Assertions
  [test] Basic String and Predicate Tests
    [assert] 10 should be greater than 5
    [pass] expect: #t, got: #t
    [assert] String comparison should be case-sensitive
    [pass] expect: #f, got: #f
    [assert] Greeting should contain the provided name
    [pass] expect: #t, got: #t
    [assert] Greeting should be personalized
    [pass] expect: Hello, Veritas!, got: Hello, Veritas!
------------------------------------------
[suite] Advanced Veritas Features
[info] TRANSIRE RUBICONEM
[info] ALEA IACTA EST
  [test] A test with a complex computation block
[info] before test runs
[info] after test runs;;; note: source file ./src/veritas/runner.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/src/veritas/runner.scm.go
;;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0
;;;       or pass the --no-auto-compile argument to disable.
;;; compiling ./src/veritas/runner.scm
;;; note: source file ./src/veritas/prelude.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/src/veritas/prelude.scm.go
;;; compiling ./src/veritas/prelude.scm
;;; note: source file ./src/veritas/model.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/src/veritas/model.scm.go
;;; compiling ./src/veritas/model.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/src/veritas/model.scm.go
;;; note: source file ./src/veritas/reporter.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/src/veritas/reporter.scm.go
;;; compiling ./src/veritas/reporter.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/src/veritas/reporter.scm.go
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/src/veritas/prelude.scm.go
;;; note: source file ./src/veritas/veritas.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/src/veritas/veritas.scm.go
;;; compiling ./src/veritas/veritas.scm
;;; note: source file ./src/veritas/assert.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/src/veritas/assert.scm.go
;;; compiling ./src/veritas/assert.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/src/veritas/assert.scm.go
;;; note: source file ./src/veritas/shuffle.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/src/veritas/shuffle.scm.go
;;; compiling ./src/veritas/shuffle.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/src/veritas/shuffle.scm.go
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/src/veritas/veritas.scm.go
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/src/veritas/runner.scm.go
;;; note: source file ./test/veritas/unit/simple.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/test/veritas/unit/simple.scm.go
;;; compiling ./test/veritas/unit/simple.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/test/veritas/unit/simple.scm.go
;;; note: source file ./test/veritas/unit/numeric.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/test/veritas/unit/numeric.scm.go
;;; compiling ./test/veritas/unit/numeric.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/test/veritas/unit/numeric.scm.go
;;; compiling ./test/veritas/unit/lists.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/test/veritas/unit/lists.scm.go
;;; note: source file ./test/veritas/unit/introduction.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/test/veritas/unit/introduction.scm.go
;;; compiling ./test/veritas/unit/introduction.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/test/veritas/unit/introduction.scm.go

    [assert] Complex computation inside an assertion
    [pass] expect: 144, got: 144
------------------------------------------
[suite] Error and Exception Handling
  [test] Valid summation should not throw an error
    [assert] Should not fail with a valid list of numbers
    [pass] success running without errors
  [test] Summing a list with non-numeric elements
    [assert] Should fail when list contains non-numbers
    [pass] success catching error: wrong-type-arg: (+ Wrong type argument in position ~A: ~S (2 a) (a))
+----------------------------------------------+
[benchmark]
Computation of the factorial of 10000


[run #0]
%     cumulative   self             
time   seconds     seconds  procedure
 60.00      0.14      0.09  override/fibers/events-impl.scm:80:0:pump-epoll-guardian
 40.00      0.06      0.06  fibers/scheduler.scm:360:0:yield-current-task
  0.00    817.14      0.00  veritas/unit/introduction.scm:146:0:factorial
  0.00      0.20      0.00  anon #xcd1e0c0
  0.00      0.14      0.00  veritas/veritas.scm:216:93
  0.00      0.14      0.00  %after-gc-thunk
---
Sample count: 5
Total time: 0.143756393 seconds (0.13058745 seconds in GC)
%     cumulative   self             
time   seconds     seconds  procedure
 61.54      0.29      0.19  override/fibers/events-impl.scm:80:0:pump-epoll-guardian
 30.77      0.10      0.10  fibers/scheduler.scm:360:0:yield-current-task
  7.69   1016.71      0.02  veritas/unit/introduction.scm:146:0:factorial
  0.00      0.39      0.00  anon #xcd1e0c0
  0.00      0.32      0.00  veritas/veritas.scm:216:93
  0.00      0.29      0.00  %after-gc-thunk
---
Sample count: 13
Total time: 0.315643976 seconds (0.168210208 seconds in GC)

[run #1]
%     cumulative   self             
time   seconds     seconds  procedure
 92.86      0.35      0.35  fibers/scheduler.scm:360:0:yield-current-task
  7.14   1183.85      0.03  veritas/unit/introduction.scm:146:0:factorial
  0.00      0.70      0.00  anon #xcd1e0c0
  0.00      0.37      0.00  veritas/veritas.scm:216:93
  0.00      0.35      0.00  override/fibers/events-impl.scm:80:0:pump-epoll-guardian
  0.00      0.35      0.00  %after-gc-thunk
---
Sample count: 14
Total time: 0.374534254 seconds (0.355699619 seconds in GC)

[info] ran 5 tasks in: 0 seconds, 381669 microseconds

finished running tests

[INFO][2025-08-26 12:27:32+0200] Start loading tasks from file: /etc/byggsteg/job-clone/veritas/trunk/maak.scm
[INFO][2025-08-26 12:27:32+0200] Start executing user tasks: (test)
[INFO][2025-08-26 12:27:32+0200] Start task: test

[INFO][2025-08-26 12:27:32+0200]   Calling procedure: test
[INFO][2025-08-26 12:27:32+0200]   Run project's tests.
;;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0
;;;       or pass the --no-auto-compile argument to disable.
;;; compiling /etc/byggsteg/job-clone/veritas/trunk/maak.scm
;;; /etc/byggsteg/job-clone/veritas/trunk/maak.scm:71:30: warning: possibly unbound variable `deploy-dir'
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/trunk/maak.scm.go


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

API documentation saved to doc/api
;;; note: source file /etc/byggsteg/job-clone/veritas/trunk/src/veritas/assert.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/assert.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/veritas/trunk/src/veritas/assert.scm
;;; note: source file /etc/byggsteg/job-clone/veritas/trunk/src/veritas/reporter.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/reporter.scm.go
;;; compiling /etc/byggsteg/job-clone/veritas/trunk/src/veritas/reporter.scm
;;; note: source file /etc/byggsteg/job-clone/veritas/trunk/src/veritas/model.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/model.scm.go
;;; compiling /etc/byggsteg/job-clone/veritas/trunk/src/veritas/model.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/model.scm.go
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/reporter.scm.go
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/assert.scm.go
;;; note: source file /etc/byggsteg/job-clone/veritas/trunk/src/veritas/prelude.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/prelude.scm.go
;;; compiling /etc/byggsteg/job-clone/veritas/trunk/src/veritas/prelude.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/prelude.scm.go
;;; note: source file /etc/byggsteg/job-clone/veritas/trunk/src/veritas/runner.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/runner.scm.go
;;; compiling /etc/byggsteg/job-clone/veritas/trunk/src/veritas/runner.scm
;;; note: source file /etc/byggsteg/job-clone/veritas/trunk/src/veritas/veritas.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/veritas.scm.go
;;; compiling /etc/byggsteg/job-clone/veritas/trunk/src/veritas/veritas.scm
;;; note: source file /etc/byggsteg/job-clone/veritas/trunk/src/veritas/shuffle.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/shuffle.scm.go
;;; compiling /etc/byggsteg/job-clone/veritas/trunk/src/veritas/shuffle.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/shuffle.scm.go
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/veritas.scm.go
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.6/etc/byggsteg/job-clone/veritas/trunk/src/veritas/runner.scm.go
index.texi:527: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:542: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:557: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:572: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:588: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:604: warning: @end hoort alleen voor te komen aan begin van regel
index.texi: warning: een 'title'-commando en '@top' vereisen een titel
hernoemd './index' -> './doc/api-dist'
Warning (emacs): Cannot fontify source block (htmlize.el >= 1.34 required).  Falling back to plain text.  (see ???org-html-htmlize-output-type???)
finished publishing Veritas manual
Backtrace:
In ice-9/boot-9.scm:
  1762:12  7 (with-exception-handler _ _ #:unwind? _ #:unwind-for-type _)
In unknown file:
           6 (apply-smob/0 #<thunk 7f7fbdb132a0>)
In ice-9/boot-9.scm:
    731:2  5 (call-with-prompt _ _ #<procedure default-prompt-handler (k proc)>)
In ice-9/eval.scm:
    619:8  4 (_ #(#(#<directory (guile-user) 7f7fbdb18c80>)))
In ice-9/command-line.scm:
   186:19  3 (_ #<input: custom-port 7f7fbdafe380>)
In unknown file:
           2 (eval ((@ (maak main) main)) #<directory (guile-user) 7f7fbdb18c80>)
In srfi/srfi-1.scm:
    750:9  1 (for-each #<procedure run-task (task)> (deploy))
In /etc/byggsteg/job-clone/veritas/trunk/maak.scm:
    71:30  0 (deploy)

/etc/byggsteg/job-clone/veritas/trunk/maak.scm:71:30: In procedure deploy:
Unbound variable: deploy-dir

[INFO][2025-08-26 12:27:54+0200] Start loading tasks from file: /etc/byggsteg/job-clone/veritas/trunk/maak.scm
[INFO][2025-08-26 12:27:54+0200] Start executing user tasks: (deploy)
[INFO][2025-08-26 12:27:54+0200] Start task: deploy

[INFO][2025-08-26 12:27:54+0200]   Calling procedure: deploy
[INFO][2025-08-26 12:27:54+0200]   Deploy the project's documentation.

[INFO][2025-08-26 12:27:58+0200]   Execute command:
guix shell -m manifest.scm --  emacs -Q --batch --eval '(progn (find-file "./docs/manual/en.org") (org-html-export-to-html) (message "finished publishing Veritas manual"))'