Build:
  1. 0
2026-03-09 22:11.51: New job: test malfunction.0.7.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29529/head (4035af2de09889c401bbd4a265b86d97ad9474cf)
                              on debian-13-ocaml-5.1/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29529/head" && git reset --hard 4035af2d
git fetch origin master
git merge --no-edit 3c70647a78a7fd22066fca4f17f7ca4514500663
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.1@sha256:9fdb6b12483b6ee211502cfcdccfa603bc203949c6b28773b62e63598c724d35
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn malfunction.0.7.1 0.7.1
RUN opam reinstall malfunction.0.7.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'malfunction.0.7.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test malfunction.0.7.1) || true
RUN opam reinstall --with-test --verbose malfunction.0.7.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'malfunction.0.7.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-03-09 22:11.51: Using cache hint "ocaml/opam:debian-13-ocaml-5.1@sha256:9fdb6b12483b6ee211502cfcdccfa603bc203949c6b28773b62e63598c724d35-malfunction.0.7.1-4035af2de09889c401bbd4a265b86d97ad9474cf"
2026-03-09 22:11.51: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.1@sha256:9fdb6b12483b6ee211502cfcdccfa603bc203949c6b28773b62e63598c724d35)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn malfunction.0.7.1 0.7.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall malfunction.0.7.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'malfunction.0.7.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test malfunction.0.7.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose malfunction.0.7.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'malfunction.0.7.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-09 22:11.51: Waiting for resource in pool OCluster
2026-03-09 22:11.52: Waiting for worker…
2026-03-09 22:11.52: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 3c70647a78 Merge pull request #29507 from NathanReb/release-ppxlib-0-38-0-5-5-preview
Updating 3c70647a78..4035af2de0
Fast-forward
 packages/malfunction/malfunction.0.7.1/opam | 33 +++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)
 create mode 100644 packages/malfunction/malfunction.0.7.1/opam

(from ocaml/opam:debian-13-ocaml-5.1@sha256:9fdb6b12483b6ee211502cfcdccfa603bc203949c6b28773b62e63598c724d35)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.1@sha256:9fdb6b12483b6ee211502cfcdccfa603bc203949c6b28773b62e63598c724d35' locally
docker.io/ocaml/opam@sha256:9fdb6b12483b6ee211502cfcdccfa603bc203949c6b28773b62e63598c724d35: Pulling from ocaml/opam
866771c43bf5: Already exists
1e49bea09367: Already exists
e793768537e6: Already exists
ed323d3d481a: Already exists
7df34a5cd5f1: Already exists
fd712d3eb935: Already exists
4b9fb8c99118: Already exists
9d9a01948b94: Already exists
0f1514f90b32: Already exists
e1ec5a753447: Already exists
03cc323e2f71: Already exists
c09c08ea9749: Already exists
b36b619f8e6b: Already exists
195344ca5274: Already exists
228ee78582a6: Already exists
504bde1c25b3: Already exists
9d8b1356c89f: Already exists
9d8b1356c89f: Already exists
568fb6dda155: Already exists
c499c9198aea: Already exists
048e5e358118: Already exists
871ca48eb45d: Already exists
4f4fb700ef54: Already exists
a5a2568b9df9: Already exists
068cf3106ac8: Already exists
559f54ec9b29: Already exists
798ffd96fde5: Already exists
e9a891bf80d7: Already exists
d720cfe12674: Already exists
c81c932f4a91: Already exists
79f24fa3bb11: Already exists
8c1debcd8c20: Already exists
1bb2cfea7250: Already exists
2b3d3ca75e4c: Already exists
557cacaf263c: Already exists
d10483022eef: Already exists
7b62a90d8223: Already exists
28ce8ea66e72: Already exists
d975909ea717: Already exists
5c215c69c247: Already exists
e7c082452a54: Already exists
27454b3e44fc: Pulling fs layer
cf864090fffc: Pulling fs layer
98d73952e572: Pulling fs layer
0961d2e8514c: Pulling fs layer
12aa16a25135: Pulling fs layer
bcafe58b9eec: Pulling fs layer
5fc119aa4d28: Pulling fs layer
bcafe58b9eec: Waiting
12aa16a25135: Waiting
0961d2e8514c: Waiting
5fc119aa4d28: Waiting
cf864090fffc: Verifying Checksum
cf864090fffc: Download complete
27454b3e44fc: Download complete
98d73952e572: Verifying Checksum
98d73952e572: Download complete
27454b3e44fc: Pull complete
cf864090fffc: Pull complete
98d73952e572: Pull complete
12aa16a25135: Verifying Checksum
12aa16a25135: Download complete
bcafe58b9eec: Verifying Checksum
bcafe58b9eec: Download complete
5fc119aa4d28: Verifying Checksum
5fc119aa4d28: Download complete
0961d2e8514c: Verifying Checksum
0961d2e8514c: Download complete
0961d2e8514c: Pull complete
12aa16a25135: Pull complete
bcafe58b9eec: Pull complete
5fc119aa4d28: Pull complete
Digest: sha256:9fdb6b12483b6ee211502cfcdccfa603bc203949c6b28773b62e63598c724d35
Status: Downloaded newer image for ocaml/opam@sha256:9fdb6b12483b6ee211502cfcdccfa603bc203949c6b28773b62e63598c724d35
2026-03-09 22:12.59 ---> saved as "043878a17430eb7307125489308030a24bcdcad0c95c2a109a9fe14316981ea0"

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-09 22:12.59 ---> saved as "fba0125094b66a9c7227253ac90b6e14a54e96dc54a46d3c665f6f4eb1962091"

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-09 22:13.20 ---> saved as "13850e85db68585ffe56ab0c6f91d14777d724272a55d5d28b7e15c97d98d1c1"

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.1
# invariant            ["ocaml-base-compiler" {= "5.1.1"}]
# compiler-packages    ocaml-base-compiler.5.1.1, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.1/lib/ocaml/stublibs:/home/opam/.opam/5.1/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.1.1
2026-03-09 22:13.20 ---> saved as "70e194fc6d508a2bc8b4ecabbf4f437eeaf3c5a000910b660961fb19bbbbf6a1"

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-09 22:13.28 ---> saved as "9f503c08133394d2dc711964e16f777bc033e7fb4e5b241e501921ff73a72a5a"

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-09 22:13.38 ---> saved as "9bb82a81d5ffb6b964becbbe4d15d8ea0ec01cff397164855c35632b8da8eb70"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-09 22:13.55 ---> saved as "0935c21012f1831face5d755b65def4f275233b8cb178c98bea9fc9768f968f6"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [108 kB]
- Fetched 199 kB in 20s (9722 B/s)
- Reading package lists...
- 
2026-03-09 22:14.17 ---> saved as "6250811d0c6d7c7d3771488d5f7c651ef76119f023b8dd3844a636b13c0fb43f"

/home/opam: (run (shell "opam pin add -k version -yn malfunction.0.7.1 0.7.1"))
malfunction is now pinned to version 0.7.1
2026-03-09 22:14.17 ---> saved as "0b51eca3325c86f95fdb24bc469a7d80fdacd343771cd50a75b274bceeac7b2d"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall malfunction.0.7.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'malfunction.0.7.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
malfunction.0.7.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
  - install conf-gmp        5              [required by zarith]
  - install conf-pkg-config 4              [required by zarith]
  - install cppo            1.8.0          [required by malfunction]
  - install dune            3.21.1         [required by malfunction]
  - install malfunction     0.7.1 (pinned)
  - install ocamlfind       1.9.8          [required by malfunction]
  - install zarith          1.14           [required by malfunction]

The following system packages will first need to be installed:
    libgmp-dev pkg-config

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config"
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20654 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-gmp.5  (cached)
-> retrieved cppo.1.8.0  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved dune.3.21.1  (cached)
-> retrieved malfunction.0.7.1  (https://github.com/stedolan/malfunction/archive/refs/tags/v0.7.1.tar.gz)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed zarith.1.14
-> installed dune.3.21.1
-> installed cppo.1.8.0
-> installed malfunction.0.7.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-09 22:14.47 ---> saved as "fef367a3ef0b3e6c7030bf90b8212fb3cb9aca68a2a0e2ca34a095c4d042a8fe"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test malfunction.0.7.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile malfunction     0.7.1 (pinned)
=== install 7 packages
  - install   dune-build-info 3.21.1         [required by omd]
  - install   ocamlbuild      0.16.1         [required by uucp]
  - install   omd             2.0.0~alpha4   [required by malfunction]
  - install   topkg           1.1.1          [required by uucp]
  - install   uucp            17.0.0         [required by omd]
  - install   uunf            17.0.0         [required by omd]
  - install   uutf            1.0.4          [required by omd]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune-build-info.3.21.1  (https://opam.ocaml.org/cache)
-> retrieved malfunction.0.7.1  (https://github.com/stedolan/malfunction/archive/refs/tags/v0.7.1.tar.gz)
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved omd.2.0.0~alpha4  (https://opam.ocaml.org/cache)
-> installed dune-build-info.3.21.1
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uucp.17.0.0  (https://opam.ocaml.org/cache)
-> retrieved uunf.17.0.0  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> removed   malfunction.0.7.1
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed uunf.17.0.0
-> installed uucp.17.0.0
-> installed omd.2.0.0~alpha4
-> installed malfunction.0.7.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-09 22:15.37 ---> saved as "d312e448b51693d037d3348fe1b3d83969850bd1cb3dd716342f27d95068a437"

/home/opam: (run (shell  "opam reinstall --with-test --verbose malfunction.0.7.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'malfunction.0.7.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile malfunction 0.7.1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [malfunction.0.7.1: extract]
-> retrieved malfunction.0.7.1  (cached)
Processing  2/4: [malfunction: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "malfunction" "-j" "255" (CWD=/home/opam/.opam/5.1/.opam-switch/build/malfunction.0.7.1)
Processing  2/4: [malfunction: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "malfunction" "-j" "255" (CWD=/home/opam/.opam/5.1/.opam-switch/build/malfunction.0.7.1)
- (cd _build/default/examples && ./primrec.exe)
-  interpreted: 0.88 secs
-     compiled: 0.10 secs
- (cd _build/default/test && ./test.exe ../docs/spec.md ../test)
- ../docs/spec.md: 
../docs/spec.md:          [13/13] tests passed
- ../test/vector.test: 
../test/vector.test:      [3/3] tests passed
- ../test/shifts.test: 
../test/shifts.test:      [18/18] tests passed
- ../test/prim.test: 
../test/prim.test:        [1/1] tests passed
- ../test/lazy.test: 
../test/lazy.test:        [5/5] tests passed
- ../test/float.test: 
../test/float.test:       [8/8] tests passed
- ../test/factorial.test: 
../test/factorial.test:   [1/1] tests passed
- ../test/evalorder.test: 
../test/evalorder.test:   [3/3] tests passed
- ../test/conversions.test: 
../test/conversions.test: [6/6] tests passed
- ../test/basic.test: 
../test/basic.test:       [6/6] tests passed
- All tests passed
-> compiled  malfunction.0.7.1
-> removed   malfunction.0.7.1
-> installed malfunction.0.7.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-09 22:15.46 ---> saved as "a0c7917ee58b42b41f04d87db88823db376df6618397b4c1b1d6e04c7daf12b4"
Job succeeded
2026-03-09 22:15.52: Job succeeded