veritas-9aace77d-d53d

job succeeded

time taken
3 seconds
started at
Wed Jun 24 09:18:49 2026
updated at
Wed Jun 24 09:18:52 2026
log uuid
9aace77d-d53d-4a36-a196-8f519345af1e
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)
            (VERITAS_RUN_BENCHMARKS . false)))))
starting new job...


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

HEAD is now at 657dc0c feat: ??? Improve docstrings
From https://codeberg.org/jjba23/veritas
   657dc0c..10765e4  trunk      -> origin/trunk
 * [new tag]         v0.3.11    -> v0.3.11
Updating 657dc0c..10765e4
Fast-forward
 .woodpecker/byggsteg.yaml   | 16 ++++----
 .woodpecker/tag-bumper.yaml | 49 -------------------------
 README.org                  | 58 +++++++++++++++++++++++++----
 docs/manual/en.org          | 89 ---------------------------------------------
 maak.scm                    | 24 +-----------
 5 files changed, 59 insertions(+), 177 deletions(-)
 delete mode 100644 .woodpecker/tag-bumper.yaml
 delete mode 100644 docs/manual/en.org


-> running command: cd /etc/byggsteg/job-clone/veritas/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/veritas/trunk && git log --name-status HEAD^..HEAD

commit 10765e4195c82060209ff978e54fefdcf5fd4591
Author: Josep Bigorra <jjbigorra@gmail.com>
Date:   Wed Jun 24 09:17:35 2026 +0200

    feat: ??? Simplify docs

M	.woodpecker/byggsteg.yaml
D	.woodpecker/tag-bumper.yaml
M	README.org
D	docs/manual/en.org
M	maak.scm


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


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

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


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


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

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


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

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


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

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


------------------------------------------
[suite] Error and Exception Handling
  [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))
  [test] Valid summation should not throw an error
    [assert] Should not fail with a valid list of numbers
    [pass] success running without errors
------------------------------------------
[suite] Testing Logic and List Operations
  [test] Number Classification Logic
    [assert] 0 should be classified as zero
    [pass] assertion succesful, got: zero
    [assert] 99 should be classified as positive
    [pass] assertion succesful, got: positive
    [assert] -1 should be classified as negative
    [pass] assertion succesful, got: negative
  [test] List Summation
    [assert] Sum of elements 1 through 5 should be 15
    [pass] assertion succesful, got: 15
    [assert] Sum of an empty list should be 0
    [pass] assertion succesful, got: 0
------------------------------------------
[suite] Getting Started with Assertions
  [test] Basic String and Predicate Tests
    [assert] Greeting should contain the provided name
    [pass] assertion succesful, got: #t
    [assert] 10 should be greater than 5
    [pass] assertion succesful, got: #t
    [assert] Greeting should be personalized
    [pass] assertion succesful, got: Hello, Veritas!
    [assert] String comparison should be case-sensitive
    [pass] assertion succesful, got: #f
------------------------------------------
[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] assertion succesful, got: 144
+----------------------------------------------+
[benchmark]
Computation of the factorial of 10000


[run #0]
%     cumulative   self             
time   seconds     seconds  procedure
100.00      0.03      0.03  override/fibers/events-impl.scm:81:0:pump-epoll-guardian
  0.00    179.77      0.00  veritas/unit/introduction.scm:146:0:factorial
  0.00      0.03      0.00  %after-gc-thunk
  0.00      0.03      0.00  anon #x7eba160
  0.00      0.03      0.00  veritas/veritas.scm:213:93
---
Sample count: 1
Total time: 0.029079159 seconds (0.022879748 seconds in GC)
%     cumulative   self             
time   seconds     seconds  procedure
 33.33    312.52      0.02  veritas/unit/introduction.scm:146:0:factorial
 33.33      0.04      0.02  override/fibers/events-impl.scm:81:0:pump-epoll-guardian
 33.33      0.02      0.02  fibers/scheduler.scm:446:0:yield-current-task
  0.00      0.07      0.00  anon #x7eba160
  0.00      0.07      0.00  veritas/veritas.scm:213:93
  0.00      0.04      0.00  %after-gc-thunk
---
Sample count: 3
Total time: 0.066292363 seconds (0.03361981 seconds in GC)
%     cumulative   self             
time   seconds     seconds  procedure
 71.43      0.10      0.10  fibers/scheduler.scm:446:0:yield-current-task
 14.29    449.63      0.02  veritas/unit/introduction.scm:146:0:factorial
 14.29      0.10      0.02  override/fibers/events-impl.scm:81:0:pump-epoll-guardian
  0.00      0.21      0.00  anon #x7eba160
  0.00      0.15      0.00  veritas/veritas.scm:213:93
  0.00      0.10      0.00  %after-gc-thunk
---
Sample count: 7
Total time: 0.146861785 seconds (0.078866999 seconds in GC)
%     cumulative   self             
time   seconds     seconds  procedure
 62.50      0.11      0.11  fibers/scheduler.scm:446:0:yield-current-task
 25.00      0.13      0.04  override/fibers/events-impl.scm:81:0:pump-epoll-guardian
 12.50    470.17      0.02  veritas/unit/introduction.scm:146:0:factorial
  0.00      0.24      0.00  anon #x7eba160
  0.00      0.17      0.00  veritas/veritas.scm:213:93
  0.00      0.13      0.00  %after-gc-thunk
---
Sample count: 8
Total time: 0.172904628 seconds (0.024743411 seconds in GC)

[run #1]
%     cumulative   self             
time   seconds     seconds  procedure
100.00      0.10      0.10  fibers/scheduler.scm:446:0:yield-current-task
  0.00    482.47      0.00  veritas/unit/introduction.scm:146:0:factorial
  0.00      0.19      0.00  anon #x7eba160
  0.00      0.10      0.00  %after-gc-thunk
  0.00      0.10      0.00  override/fibers/events-impl.scm:81:0:pump-epoll-guardian
  0.00      0.10      0.00  veritas/veritas.scm:213:93
---
Sample count: 5
Total time: 0.095388202 seconds (0.092430687 seconds in GC)
%     cumulative   self             
time   seconds     seconds  procedure
 83.33      0.10      0.10  fibers/scheduler.scm:446:0:yield-current-task
 16.67    560.24      0.02  veritas/unit/introduction.scm:146:0:factorial
  0.00      0.20      0.00  anon #x7eba160
  0.00      0.12      0.00  veritas/veritas.scm:213:93
  0.00      0.10      0.00  %after-gc-thunk
  0.00      0.10      0.00  override/fibers/events-impl.scm:81:0:pump-epoll-guardian
---
Sample count: 6
Total time: 0.120624636 seconds (0.024610636 seconds in GC)
%     cumulative   self             
time   seconds     seconds  procedure
 66.67      0.12      0.12  fibers/scheduler.scm:446:0:yield-current-task
 22.22      0.16      0.04  override/fibers/events-impl.scm:81:0:pump-epoll-guardian
 11.11    647.99      0.02  veritas/unit/introduction.scm:146:0:factorial
  0.00      0.29      0.00  anon #x7eba160
  0.00      0.19      0.00  veritas/veritas.scm:213:93
  0.00      0.16      0.00  %after-gc-thunk
---
Sample count: 9
Total time: 0.185610282 seconds (0.063166584 seconds in GC)

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

finished running tests


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

Maak: the infinitely extensible command runner

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

Executing Maak tasks: test

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

=> Running Maak task: test

  Run project's tests.
;;; note: source file /etc/byggsteg/job-clone/veritas/trunk/maak.scm
;;;       newer than compiled /root/.cache/guile/ccache/3.0-LE-8-4.7/etc/byggsteg/job-clone/veritas/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/veritas/trunk/maak.scm
;;; 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
index.texi:765: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:780: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:795: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:810: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:826: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:842: 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'
'/srv/http/jointhefreeworld.org/api-docs/veritas/API.html' is verwijderd
'/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fassert.html' is verwijderd
'/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fmodel.html' is verwijderd
'/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fprelude.html' is verwijderd
'/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005freporter.html' is verwijderd
'/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005frunner.html' is verwijderd
'/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fshuffle.html' is verwijderd
'/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fveritas.html' is verwijderd
map '/srv/http/jointhefreeworld.org/api-docs/veritas' is verwijderd
mkdir: map '/srv/http/jointhefreeworld.org/api-docs/veritas' is aangemaakt
hernoemd 'doc/api-dist/API.html' -> '/srv/http/jointhefreeworld.org/api-docs/veritas/API.html'
hernoemd 'doc/api-dist/veritas_005fassert.html' -> '/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fassert.html'
hernoemd 'doc/api-dist/veritas_005fmodel.html' -> '/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fmodel.html'
hernoemd 'doc/api-dist/veritas_005fprelude.html' -> '/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fprelude.html'
hernoemd 'doc/api-dist/veritas_005freporter.html' -> '/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005freporter.html'
hernoemd 'doc/api-dist/veritas_005frunner.html' -> '/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005frunner.html'
hernoemd 'doc/api-dist/veritas_005fshuffle.html' -> '/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fshuffle.html'
hernoemd 'doc/api-dist/veritas_005fveritas.html' -> '/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fveritas.html'
'doc/api/index.texi' is verwijderd
map 'doc/api' is verwijderd
map 'doc/api-dist' is verwijderd
map 'doc' is verwijderd


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

Maak: the infinitely extensible command runner

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

Executing Maak tasks: deploy

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

=> Running Maak task: deploy

  Deploy the project's documentation.

  Execute command:
guix time-machine --channels=channels.scm -- shell -m manifest.scm -- documenta api ./src/veritas &&  texi2any -v --html --css-ref=https://jointhefreeworld.org/static/css/jointhefreeworld.css ./doc/api/index.texi