veritas-ce717281-96f2

job succeeded

time taken
2178 seconds
started at
Fri Jul 3 14:27:17 2026
updated at
Fri Jul 3 15:03:35 2026
log uuid
ce717281-96f2-4a8f-9325-66b051da253c
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 e66e5b6 fix: ???? Improve technical documentation
From https://codeberg.org/jjba23/veritas
   e66e5b6..9ec7017  trunk      -> origin/trunk
Updating e66e5b6..9ec7017
Fast-forward
 channels.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


-> 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 9ec701752d237d9f572e5e74921652ff46686a01
Author: Josep Bigorra <jjbigorra@gmail.com>
Date:   Fri Jul 3 14:27:04 2026 +0200

    feat: ??? Update Guix

M	channels.scm


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

removed 'reports/lcov/coverage-1782642308-17684.info'
removed 'reports/lcov/coverage-1782642308-410237.info'

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

found unit tests: (simple.scm lists.scm numeric/a/num.scm introduction.scm generator/simple.scm)


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


[info] Code coverage report written to reports/lcov/coverage-1783083811-808971.info
------------------------------------------
[suite] Basic Suite
  [test] Do some assertions
    [pass] assertion succesful, got: 1
    [pass] assertion succesful, got: 1
    [pass] assertion succesful, got: 1
  [test] Check that function calls work
    [pass] assertion succesful, got: 42
------------------------------------------
[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] assertion succesful, got: 5
    [assert] Should not signal error on valid division
    [pass] success running without errors
  [test] some test without suite
    [pass] assertion succesful, got: 1
------------------------------------------
[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 ref at index 0
    [pass] assertion succesful, got: 1
    [assert] Vector length
    [pass] assertion succesful, got: 3
    [assert] Vector ref at index 1
    [pass] assertion succesful, got: 2
  [test] Association List Lookups
    [assert] Lookup 'name' in alist
    [pass] assertion succesful, got: Alice
    [assert] Lookup non-existent key should be #f
    [pass] assertion succesful, got: #f
    [assert] Lookup 'age' in alist
    [pass] assertion succesful, got: 30
------------------------------------------
[suite] Predicate Tests
  [test] List Predicates
    [assert] Empty list should not be a pair
    [pass] assertion succesful, got: #f
    [assert] Pair should be a pair
    [pass] assertion succesful, got: #t
    [assert] Non-empty list should not be null
    [pass] assertion succesful, got: #f
    [assert] Empty list should be null
    [pass] assertion succesful, got: #t
[info] ran 6 tasks in: 0 seconds, 219106 microseconds

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


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

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


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

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


------------------------------------------
[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))
------------------------------------------
[suite] Testing Logic and List Operations
  [test] List Summation
    [assert] Sum of an empty list should be 0
    [pass] assertion succesful, got: 0
    [assert] Sum of elements 1 through 5 should be 15
    [pass] assertion succesful, got: 15
  [test] Number Classification Logic
    [assert] 99 should be classified as positive
    [pass] assertion succesful, got: positive
    [assert] -1 should be classified as negative
    [pass] assertion succesful, got: negative
    [assert] 0 should be classified as zero
    [pass] assertion succesful, got: zero
------------------------------------------
[suite] Getting Started with Assertions
  [test] Basic String and Predicate Tests
    [assert] 10 should be greater than 5
    [pass] assertion succesful, got: #t
    [assert] Greeting should contain the provided name
    [pass] assertion succesful, got: #t
    [assert] String comparison should be case-sensitive
    [pass] assertion succesful, got: #f
    [assert] Greeting should be personalized
    [pass] assertion succesful, got: Hello, Veritas!
------------------------------------------
[suite] Advanced Veritas Features
[info] TRANSIRE RUBICONEM
[info] ALEA IACTA EST
  [test] Addition ValidationInitializing...
    [pass] assertion succesful, got: 4
  [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]
No samples recorded.
%     cumulative   self             
time   seconds     seconds  procedure
 75.00    197.48      0.07  veritas/unit/introduction.scm:151:0:factorial
 25.00      0.02      0.02  override/fibers/events-impl.scm:81:0:pump-epoll-guardian
  0.00      0.10      0.00  veritas/veritas.scm:301:93
  0.00      0.02      0.00  anon #x16536160
  0.00      0.02      0.00  %after-gc-thunk
---
Sample count: 4
Total time: 0.099123771 seconds (0.071787713 seconds in GC)

[run #1]
No samples recorded.
No samples recorded.
%     cumulative   self             
time   seconds     seconds  procedure
100.00    152.98      0.04  veritas/unit/introduction.scm:151:0:factorial
  0.00      0.04      0.00  veritas/veritas.scm:301:93
---
Sample count: 1
Total time: 0.035801149 seconds (0.01269747 seconds in GC)
%     cumulative   self             
time   seconds     seconds  procedure
 33.33    213.19      0.03  veritas/unit/introduction.scm:151:0:factorial
 33.33      0.07      0.03  override/fibers/events-impl.scm:81:0:pump-epoll-guardian
 33.33      0.03      0.03  fibers/scheduler.scm:446:0:yield-current-task
  0.00      0.10      0.00  veritas/veritas.scm:301:93
  0.00      0.10      0.00  anon #x16536160
  0.00      0.07      0.00  %after-gc-thunk
---
Sample count: 6
Total time: 0.100198326 seconds (0.060297396 seconds in GC)

[info] ran 5 tasks in: 1 seconds, -848011 microseconds

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


[info] Code coverage report written to reports/lcov/coverage-1783083812-170869.info
------------------------------------------
[suite] Basic Suite
  [test] Basic Generation
")Gd!L9)w2G9m8| {_-Z.!jeB:[Z[<sx}IqBp:#@^~v +Re{|BJAz>UBcq}\\10bHT"
"4y)<.f;|i$yqX%j?_Zl9$[3"
    [pass] success running without errors
(16 13 12 15 16 52 73 65 47 33 29 5 34 23 30 10 1 30 0 1 1 11 3 49 23 21 0 65)
(69 26 7 6 8 29 2 61 60 2 60 14 55 18 17 39 11 5 78 21 36 36 55 62 12 27 31 7 29 51 11 7 27 43)
    [pass] success running without errors
(N ) a T 2 6 " # f ` F & z D L C : @ 0 8 ^ c 2 ~ > * Y i 7 s x Y e P D 4 s I % L n q Z # $ 3   M } j V 5 u f L " I + n Z D Q)
(D I # J f e & J Y ^ = / m Z Q & C J F N < c | d   v ? ` { ~ G |)
    [pass] success running without errors
19
96
    [pass] success running without errors
[info] ran 1 tasks in: 0 seconds, 208506 microseconds

finished running tests
skipping source file: override/fibers/events-impl.scm
skipping source file: override/fibers/posix-clocks.scm
skipping source file: override/fibers/events-impl.scm
skipping source file: override/fibers/posix-clocks.scm


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

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.


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

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

CA-certificaatbundel opbouwen...
tonen van Emacs-submappen...
map met lettertypen bouwen...
opbouw van map met Info handleidingen...
profiel bouwen met 9 pakketten...
API documentation saved to doc/api
index.texi:901: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:916: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:931: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:946: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:962: warning: @end hoort alleen voor te komen aan begin van regel
index.texi:978: warning: @end hoort alleen voor te komen aan begin van regel
index.texi: warning: een 'title'-commando en '@top' vereisen een titel
hernoemd './index_html' -> './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_005fgenerator.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_005fgenerator.html' -> '/srv/http/jointhefreeworld.org/api-docs/veritas/veritas_005fgenerator.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 -o index_html ./doc/api/index.texi