viewing logs

job succeeded

veritas

time taken
10 seconds
started at
Thu Jul 24 21:30:22 2025
updated at
Thu Jul 24 21:30:32 2025
log uuid
0e1af216-056c-4000-b223-aa9fdade12f4
inspect the job's lambda expression
(lambda()
  `((task . ("make-test" "pull-and-deploy"))
    (project . "veritas")
    (branch-name . "trunk")            
    (clone-url . "https://codeberg.org/jjba23/veritas.git")))
    

starting new job...

-> running command: cd /etc/byggsteg/job-clone/veritas/trunk && uname -a
Linux wolk-jjba 6.15.5-gnu #1 SMP PREEMPT_DYNAMIC 1 x86_64 GNU/Linux

-> running command: cd /etc/byggsteg/job-clone/veritas/trunk && git pull
Updating 579f247..992cf31
Fast-forward
 Makefile                     |   5 +-
 README.org                   |  19 ++--
 docs/api-documentation.org   |  24 +++++
 src/veritas/model.scm        |  12 ++-
 src/veritas/prelude.scm      |  23 +++++
 src/veritas/runner.scm       | 149 ++++++++++++++++++++----------
 src/veritas/veritas.scm      | 209 +++++++++++++++++++++++++------------------
 test/veritas/unit/da/da.scm  |  69 ++++++++++++++
 test/veritas/unit/simple.scm |  45 ----------
 9 files changed, 364 insertions(+), 191 deletions(-)
 create mode 100644 test/veritas/unit/da/da.scm

-> running command: cd /etc/byggsteg/job-clone/veritas/trunk && git log --name-status HEAD^..HEAD
commit 992cf3117418d5e92fb2497964f2fc9a018d0786
Merge: 579f247 88280f6
Author: Josep Bigorra (Joe) <jjbigorra@gmail.com>
Date:   Thu Jul 24 21:30:02 2025 +0200

    Merge pull request 'runner-improvements' (#3) from runner-improvements into trunk
    
    Reviewed-on: https://codeberg.org/jjba23/veritas/pulls/3

commit 88280f6937c77dcba58bbfc66f1c344acb607a91
Author: Josep Bigorra <jjbigorra@gmail.com>
Date:   Thu Jul 24 15:49:02 2025 +0200

     ??

M	src/veritas/prelude.scm

commit 35ea84d7c7291ab164ffa6b532ff348bec0b706f
Author: Josep Bigorra <jjbigorra@gmail.com>
Date:   Thu Jul 24 15:46:13 2025 +0200

    simplify output capture??

M	src/veritas/model.scm
M	src/veritas/prelude.scm
M	src/veritas/veritas.scm

commit 091e1bfa5a87177c39f07aa55459016abb4f5029
Author: Josep Bigorra <jjbigorra@gmail.com>
Date:   Thu Jul 24 15:40:00 2025 +0200

    improve configurability

M	Makefile
M	docs/api-documentation.org
M	src/veritas/prelude.scm
M	src/veritas/runner.scm
M	src/veritas/veritas.scm

commit 8cb52ec021e99189124879a7ec2c74f01ca65f86
Author: Josep Bigorra <jjbigorra@gmail.com>
Date:   Thu Jul 24 15:08:12 2025 +0200

    rename vars??

M	Makefile
M	README.org
M	docs/api-documentation.org
M	src/veritas/runner.scm

commit 3f5fd8916285192aa28d25f7dbca9797c358a8c3
Author: Josep Bigorra <jjbigorra@gmail.com>
Date:   Thu Jul 24 12:04:57 2025 +0200

     ??

M	README.org
M	docs/api-documentation.org

commit d31da49649a59ab662dc1bc17fb06a4a69cf870a
Author: Josep Bigorra <jjbigorra@gmail.com>
Date:   Thu Jul 24 11:28:24 2025 +0200

     ??

M	Makefile
M	README.org
M	src/veritas/runner.scm
A	test/veritas/unit/da/da.scm
M	test/veritas/unit/simple.scm

commit 2cda06f64da6b451873f0543d047a09e33692d65
Author: Josep Bigorra <jjbigorra@gmail.com>
Date:   Thu Jul 24 10:56:50 2025 +0200

     ??

M	README.org
M	src/veritas/runner.scm

commit 4f09ceabb7a04334e39dfbb6d547db74b8a03169
Author: Josep Bigorra <jjbigorra@gmail.com>
Date:   Thu Jul 24 10:43:45 2025 +0200

    improve runner

M	README.org
M	src/veritas/runner.scm

commit 1cf4be2e0e694c0835920900918dc282fe832bdc
Author: Josep Bigorra <jjbigorra@gmail.com>
Date:   Thu Jul 24 10:00:53 2025 +0200

     ??

M	README.org

commit 0df88ff9b4270f97b7d3f5cfda68feb1243f5a75
Author: Josep Bigorra <jjbigorra@gmail.com>
Date:   Thu Jul 24 09:59:31 2025 +0200

     ??

M	Makefile
M	README.org
M	src/veritas/runner.scm

-> running command: cd /etc/byggsteg/job-clone/veritas/trunk && make test
make[1]: Entering directory '/etc/byggsteg/job-clone/veritas/trunk'

[INFO] 2025-07-24 21:30:23+02:00 - formatting all Scheme files
find . -maxdepth 8 -name "*.scm" -type f -exec guix style -f {} \;
VERITAS_RUN_BENCHMARKS=false VERITAS_TEST_TYPE=unit \
	guix shell -m manifest.scm -- \
	guile --fresh-auto-compile -L ./src \
	-L ./test \
	-c '((@ (veritas runner) run-tests))'

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

found unit tests: (da/da.scm simple.scm)

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


+----------------------------------------------+
[? suite] List Manipulation Tests
  [? test] Get First Element
    [?? assert] First element of a number list
    ? pass - expect: 1, got: 1
    [?? assert] First element of a symbol list
    ? pass - expect: a, got: a
    [?? assert] First element of an empty list should be #f
    ? pass - expect: #f, got: #f
  [? test] List Length
    [?? assert] Length of empty list
    ? pass - expect: 0, got: 0
    [?? assert] Length of list with 3 elements
    ? pass - expect: 3, got: 3
    [?? assert] Length of list with one element
    ? pass - expect: 1, got: 1
  [? test] List Concatenation
    [?? assert] Concatenate empty list with non-empty
    ? pass - expect: (a b), got: (a b)
    [?? assert] Concatenate two non-empty lists
    ? pass - expect: (1 2 3 4 5), got: (1 2 3 4 5)
    [?? assert] Concatenate non-empty list with empty
    ? pass - expect: (x y), got: (x y)
    [?? assert] Concatenate two empty lists
    ? pass - expect: (), got: ()
?? info - ran 1 tasks in: 0 seconds, 4552 microseconds
running unit tests from file: simple.scm, entrypoint: spec


+----------------------------------------------+
[? 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] Basic Suite
  [? test] Check that function calls work
    ? pass - expect: 42, got: 42
  [? test] Basic Numeric Tests
    ? pass - expect: 1, got: 1
    ? pass - expect: 0, got: 0
    [?? assert] checks if addition works
    ? pass - expect: 4, got: 4
    ? pass - expect: 1, got: 1
+----------------------------------------------+
[? suite] Predicate Tests
  [? test] List Predicates
    [?? assert] Empty list should be null
    ? pass - expect: #t, got: #t
    [?? assert] Empty list should not be a pair
    ? pass - expect: #f, got: #f
    [?? assert] Non-empty list should not be null
    ? pass - expect: #f, got: #f
    [?? assert] Pair should be a pair
    ? pass - expect: #t, got: #t
  [? test] Even Number Checks
    [?? assert] 7 should not be even
    ? pass - expect: #f, got: #f
    [?? assert] 0 should be even
    ? pass - expect: #t, got: #t
    [?? assert] 4 should be even
    ? pass - expect: #t, got: #t
    [?? assert] 1 should not be even
    ? pass - expect: #f, got: #f
+----------------------------------------------+
[? 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] str
  [? test] String Operation Tests
    ? pass - expect: hello world, got: hello world
    ? pass - expect: #f, got: #f
    ? pass - expect: #t, got: #t
  [? test] some test without suite
    ? pass - expect: 1, got: 1
?? info - ran 6 tasks in: 0 seconds, 15049 microsecondsmake[1]: Leaving directory '/etc/byggsteg/job-clone/veritas/trunk'

-> running command: cd /etc/byggsteg/job-clone/veritas/trunk && sudo make deploy
guix shell -m manifest.scm -- emacs -Q --batch \
	--eval '(progn (find-file "/etc/byggsteg/job-clone/veritas/trunk/docs/api-documentation.org")(org-html-export-to-html)(message "finished publishing Veritas API documentation"))'
mkdir -pv "/srv/http/jointhefreeworld.org"/manuals/veritas-api-documentation
rm -rfv "/srv/http/jointhefreeworld.org"/manuals/veritas-api-documentation/index.html
'/srv/http/jointhefreeworld.org/manuals/veritas-api-documentation/index.html' is verwijderd
mv -v docs/api-documentation.html "/srv/http/jointhefreeworld.org"/manuals/veritas-api-documentation/index.html
hernoemd 'docs/api-documentation.html' -> '/srv/http/jointhefreeworld.org/manuals/veritas-api-documentation/index.html'