(for PR #29222)

2026-01-19 20:51.41: New job: test catala.1.0.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29222/head (ad79ca9644feb512edcb7b55f7521e075b88d976)
                              on archlinux-ocaml-4.14/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/29222/head" && git reset --hard ad79ca96
git fetch origin master
git merge --no-edit 1c997ec9e6ebc6ea699547000cb8dfa44e52efaa
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-4.14@sha256:dcfa7c735edf3ea659d1e81aecc3320af03af28871311c0cf414ddc14c4c2434
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 catala.1.0.0 1.0.0
RUN opam reinstall catala.1.0.0; \
    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 "\"archlinux\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'catala.1.0.0' && 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 catala.1.0.0) || true
RUN opam reinstall --with-test --verbose catala.1.0.0; \
    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 "\"archlinux\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'catala.1.0.0' && 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-01-19 20:51.41: Using cache hint "ocaml/opam:archlinux-ocaml-4.14@sha256:dcfa7c735edf3ea659d1e81aecc3320af03af28871311c0cf414ddc14c4c2434-catala.1.0.0-ad79ca9644feb512edcb7b55f7521e075b88d976"
2026-01-19 20:51.41: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-4.14@sha256:dcfa7c735edf3ea659d1e81aecc3320af03af28871311c0cf414ddc14c4c2434)
 (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 catala.1.0.0 1.0.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall catala.1.0.0;\
             \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 \"\\\"archlinux\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'catala.1.0.0' && 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 catala.1.0.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose catala.1.0.0;\
             \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 \"\\\"archlinux\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'catala.1.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-01-19 20:51.41: Waiting for resource in pool OCluster
2026-01-19 23:34.23: Waiting for worker…
2026-01-19 23:38.41: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files:  92% (17860/19232)
Updating files:  93% (17886/19232)
Updating files:  94% (18079/19232)
Updating files:  95% (18271/19232)
Updating files:  96% (18463/19232)
Updating files:  97% (18656/19232)
Updating files:  98% (18848/19232)
Updating files:  99% (19040/19232)
Updating files: 100% (19232/19232)
Updating files: 100% (19232/19232), done.
HEAD is now at 1c997ec9e6 Merge pull request #29241 from polytypic/release-multicore-magic-2.3.2
Updating 1c997ec9e6..ad79ca9644
Fast-forward
 packages/archetype/archetype.0.1.10/opam                     |  2 +-
 packages/archetype/archetype.0.1.11/opam                     |  2 +-
 packages/archetype/archetype.0.1.12/opam                     |  2 +-
 packages/archetype/archetype.0.1.13/opam                     |  2 +-
 packages/archetype/archetype.0.1.14/opam                     |  2 +-
 packages/archetype/archetype.0.1.3/opam                      |  2 +-
 packages/archetype/archetype.0.1.4/opam                      |  2 +-
 packages/archetype/archetype.0.1.5/opam                      |  2 +-
 packages/archetype/archetype.0.1.6/opam                      |  2 +-
 packages/archetype/archetype.0.1.8/opam                      |  2 +-
 packages/archetype/archetype.0.1.9/opam                      |  2 +-
 packages/archetype/archetype.1.0.0/opam                      |  2 +-
 packages/archetype/archetype.1.1.0/opam                      |  2 +-
 packages/archetype/archetype.1.1.1/opam                      |  2 +-
 packages/archetype/archetype.1.1.2/opam                      |  2 +-
 packages/archetype/archetype.1.2.0/opam                      |  2 +-
 packages/archetype/archetype.1.2.1/opam                      |  2 +-
 packages/archetype/archetype.1.2.10/opam                     |  2 +-
 packages/archetype/archetype.1.2.11/opam                     |  2 +-
 packages/archetype/archetype.1.2.12/opam                     |  2 +-
 packages/archetype/archetype.1.2.13/opam                     |  2 +-
 packages/archetype/archetype.1.2.14/opam                     |  2 +-
 packages/archetype/archetype.1.2.15/opam                     |  2 +-
 packages/archetype/archetype.1.2.16/opam                     |  2 +-
 packages/archetype/archetype.1.2.2/opam                      |  2 +-
 packages/archetype/archetype.1.2.3/opam                      |  2 +-
 packages/archetype/archetype.1.2.4/opam                      |  2 +-
 packages/archetype/archetype.1.2.5/opam                      |  2 +-
 packages/archetype/archetype.1.2.6/opam                      |  2 +-
 packages/archetype/archetype.1.2.7/opam                      |  2 +-
 packages/archetype/archetype.1.2.8/opam                      |  2 +-
 packages/archetype/archetype.1.2.9/opam                      |  2 +-
 packages/archetype/archetype.1.3.0/opam                      |  2 +-
 packages/archetype/archetype.1.3.1/opam                      |  2 +-
 packages/archetype/archetype.1.3.2/opam                      |  2 +-
 packages/archetype/archetype.1.3.3/opam                      |  2 +-
 packages/archetype/archetype.1.3.4/opam                      |  2 +-
 packages/archetype/archetype.1.3.5/opam                      |  2 +-
 packages/archetype/archetype.1.3.6/opam                      |  2 +-
 packages/archetype/archetype.1.4.0/opam                      |  2 +-
 packages/archetype/archetype.1.4.1/opam                      |  2 +-
 packages/archetype/archetype.1.4.2/opam                      |  2 +-
 packages/archetype/archetype.1.4.3/opam                      |  2 +-
 packages/archetype/archetype.1.5.0/opam                      |  2 +-
 packages/archetype/archetype.1.5.1/opam                      |  2 +-
 packages/archetype/archetype.1.5.2/opam                      |  2 +-
 packages/archetype/archetype.1.5.3/opam                      |  2 +-
 packages/bnfgen/bnfgen.4.0.0/opam                            |  2 +-
 packages/catala/catala.0.10.0/opam                           |  2 +-
 packages/catala/catala.0.3.0/opam                            |  2 +-
 packages/catala/catala.0.5.0/opam                            |  2 +-
 packages/catala/catala.0.6.0/opam                            |  2 +-
 packages/catala/catala.0.7.0/opam                            |  2 +-
 packages/catala/catala.0.8.0/opam                            |  2 +-
 packages/catala/catala.0.9.0/opam                            |  2 +-
 packages/catala/catala.1.0.0/opam                            |  2 +-
 packages/catala/catala.1.0.0~alpha/opam                      |  2 +-
 packages/catala/catala.1.0.0~beta/opam                       |  2 +-
 packages/dolmen/dolmen.0.1/opam                              |  2 +-
 packages/dolmen/dolmen.0.10/opam                             |  2 +-
 packages/dolmen/dolmen.0.2/opam                              |  2 +-
 packages/dolmen/dolmen.0.4.1/opam                            |  2 +-
 packages/dolmen/dolmen.0.4/opam                              |  2 +-
 packages/dolmen/dolmen.0.5/opam                              |  2 +-
 packages/dolmen/dolmen.0.6/opam                              |  4 ++--
 packages/dolmen/dolmen.0.7/opam                              |  2 +-
 packages/dolmen/dolmen.0.8.1/opam                            |  2 +-
 packages/dolmen/dolmen.0.8/opam                              |  2 +-
 packages/dolmen/dolmen.0.9/opam                              |  2 +-
 .../embedded_ocaml_templates.0.1.4/opam                      | 12 ++++++------
 .../embedded_ocaml_templates.0.2/opam                        | 12 ++++++------
 .../embedded_ocaml_templates.0.3.1/opam                      |  8 ++++----
 .../embedded_ocaml_templates.0.4/opam                        | 10 +++++-----
 .../embedded_ocaml_templates.0.5.1/opam                      | 10 +++++-----
 .../embedded_ocaml_templates.0.6/opam                        |  2 +-
 .../embedded_ocaml_templates.0.7/opam                        |  2 +-
 packages/morbig/morbig.0.10.3/opam                           |  2 +-
 packages/morbig/morbig.0.10.4/opam                           |  2 +-
 packages/morbig/morbig.0.11.0/opam                           |  2 +-
 packages/morbig/morbig.0.9.1/opam                            |  2 +-
 packages/morbig/morbig.0.9/opam                              |  2 +-
 packages/otoml/otoml.0.9.0/opam                              |  2 +-
 packages/otoml/otoml.0.9.1/opam                              |  2 +-
 packages/otoml/otoml.0.9.2/opam                              |  2 +-
 packages/otoml/otoml.0.9.3/opam                              |  2 +-
 packages/otoml/otoml.1.0.0/opam                              |  2 +-
 packages/otoml/otoml.1.0.1/opam                              |  2 +-
 packages/otoml/otoml.1.0.2/opam                              |  2 +-
 packages/otoml/otoml.1.0.3/opam                              |  2 +-
 packages/otoml/otoml.1.0.4/opam                              |  2 +-
 packages/otoml/otoml.1.0.5/opam                              |  2 +-
 packages/touist/touist.3.0.0/opam                            |  2 +-
 packages/touist/touist.3.1.0/opam                            |  2 +-
 packages/touist/touist.3.2.0/opam                            |  2 +-
 packages/touist/touist.3.2.1/opam                            |  2 +-
 packages/touist/touist.3.5.0/opam                            |  2 +-
 packages/unionFind/unionFind.20250818/opam                   |  2 +-
 97 files changed, 119 insertions(+), 119 deletions(-)

(from ocaml/opam:archlinux-ocaml-4.14@sha256:dcfa7c735edf3ea659d1e81aecc3320af03af28871311c0cf414ddc14c4c2434)
2026-01-19 23:41.04 ---> using "8304b0faf2ad5be6b149274ceebe6b312868e0124191bcff859577a4ebedb3a2" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-19 23:41.04 ---> using "b9cc76d5c5e6ba8ee9552676153cfca58f963943406f027ca4deab5150d0dc43" from cache

/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
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
[ocaml-patches-overlay] synchronised from git+https://github.com/ocurrent/opam-repository#patches
2026-01-19 23:41.04 ---> using "40e1d4788698e002243038f44b167a62075ed4bed3800e356970963de2c7f693" from cache

/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=arch os-version=20260111.0.480139
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         2 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-01-19 23:41.04 ---> using "82c623e199775ccd18489beb65f5abbbde3df6d8b39a3d0de237074cd9be4fc1" from cache

/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-01-19 23:41.04 ---> using "3aa673d53df54d555006bd6a966ffbe6820f2913a2afc2eea7bae3acb6ff7ddf" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-19 23:41.06 ---> using "d32b608cd4ad5927c3a50d8b7732151bd454b21325ff7f8d0b5411595815e9f1" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-19 23:41.06 ---> using "1437bace251cd9fce49df4c671d8c051f85cfdc1093dfbcf281dfe6fc3a2f5c2" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
-  core downloading...
-  extra downloading...
2026-01-19 23:41.06 ---> using "a31857892cf21e8c6aec2c49449a3f2952e69dbd766da830f0f8b66fae89aa5c" from cache

/home/opam: (run (shell "opam pin add -k version -yn catala.1.0.0 1.0.0"))
catala is now pinned to version 1.0.0
2026-01-19 23:41.06 ---> using "3644cb89f237133707a02af36fda33d82e9b9cae85998e43a3460af3310d76ca" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall catala.1.0.0;\
                        \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 \"\\\"archlinux\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'catala.1.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
catala.1.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== recompile 2 packages
  ↻ ocaml               4.14.2         [upstream or system changes]
  ↻ opam-depext         1.2.3          [uses ocaml]
=== install 39 packages
  ∗ alcotest            1.9.1          [required by catala]
  ∗ astring             0.8.5          [required by alcotest]
  ∗ bindlib             6.0.0          [required by catala]
  ∗ catala              1.0.0 (pinned)
  ∗ cmdliner            2.1.0          [required by catala]
  ∗ conf-gmp            5              [required by zarith]
  ∗ conf-ninja          1
  ∗ conf-pkg-config     4              [required by zarith]
  ∗ cppo                1.8.0          [required by catala]
  ∗ crunch              4.0.0          [required by catala]
  ∗ dune                3.21.0         [required by catala]
  ∗ fmt                 0.11.0         [required by alcotest]
  ∗ gen                 1.1            [required by sedlex]
  ∗ menhir              20250912       [required by catala]
  ∗ menhirCST           20250912       [required by menhir]
  ∗ menhirLib           20250912       [required by catala]
  ∗ menhirSdk           20250912       [required by menhir]
  ∗ ninja_utils         0.9.0          [required by catala]
  ∗ ocaml-compiler-libs v0.12.4        [required by ppxlib]
  ∗ ocaml-syntax-shims  1.0.0          [required by alcotest]
  ∗ ocamlbuild          0.16.1         [required by uucp]
  ∗ ocamlfind           1.9.8          [required by catala]
  ∗ ocamlgraph          2.2.0          [required by catala]
  ∗ ocolor              1.3.1          [required by catala]
  ∗ otoml               1.0.5          [required by catala]
  ∗ ppx_derivers        1.2.1          [required by ppxlib]
  ∗ ppxlib              0.37.0         [required by sedlex]
  ∗ ptime               1.2.0          [required by crunch]
  ∗ re                  1.14.0         [required by catala]
  ∗ sedlex              3.7            [required by catala]
  ∗ seq                 base           [required by gen]
  ∗ sexplib0            v0.17.0        [required by ppxlib]
  ∗ stdlib-shims        0.3.0          [required by alcotest]
  ∗ topkg               1.1.1          [required by uucp]
  ∗ ubase               0.20           [required by catala]
  ∗ uucp                17.0.0         [required by catala]
  ∗ uutf                1.0.4          [required by alcotest, otoml]
  ∗ yojson              3.0.0          [required by catala]
  ∗ zarith              1.14           [required by catala]

The following system packages will first need to be installed:
    ninja pkgconf

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

opam believes some required external dependencies are missing. opam can:
> 1. Run pacman to install them (may need root/sudo access)
  2. Display the recommended pacman 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/sbin/sudo "pacman" "-Su" "--noconfirm" "ninja" "pkgconf"
- :: Starting full system upgrade...
- resolving dependencies...
- looking for conflicting packages...
- 
- Package (4)   Old Version               New Version               Net Change  Download Size
- 
- core/glibc    2.42+r47+ga1d3294a5bed-1  2.42+r50+g453e6b8dbab9-1    0.00 MiB      10.15 MiB
- core/pacman   7.1.0.r7.gb9f7d4a-1       7.1.0.r9.g54d9411-1         0.00 MiB       0.94 MiB
- extra/ninja                             1.13.2-2                    0.41 MiB       0.17 MiB
- core/pkgconf                            2.5.1-1                     0.20 MiB       0.07 MiB
- 
- Total Download Size:   11.32 MiB
- Total Installed Size:  55.32 MiB
- Net Upgrade Size:       0.61 MiB
- 
- :: Proceed with installation? [Y/n] 
- :: Retrieving packages...
-  glibc-2.42+r50+g453e6b8dbab9-1-x86_64 downloading...
-  pacman-7.1.0.r9.g54d9411-1-x86_64 downloading...
-  ninja-1.13.2-2-x86_64 downloading...
-  pkgconf-2.5.1-1-x86_64 downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- upgrading glibc...
- Generating locales...
- Generation complete.
- installing ninja...
- installing pkgconf...
- upgrading pacman...
- :: Running post-transaction hooks...
- (1/4) Creating system user accounts...
- (2/4) Reloading system manager configuration...
- Failed to check for chroot() environment: Permission denied
-   Skipped: Current root is not booted.
- (3/4) Restarting marked services...
- Failed to check for chroot() environment: Permission denied
-   Skipped: Current root is not booted.
- (4/4) Arming ConditionNeedsUpdate...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved alcotest.1.9.1  (cached)
⬇ retrieved astring.0.8.5  (cached)
⬇ retrieved bindlib.6.0.0  (cached)
⬇ retrieved catala.1.0.0  (cached)
⬇ retrieved cmdliner.2.1.0  (cached)
⬇ retrieved conf-gmp.5  (cached)
⬇ retrieved cppo.1.8.0  (cached)
⬇ retrieved crunch.4.0.0  (cached)
∗ installed conf-gmp.5
∗ installed conf-ninja.1
∗ installed conf-pkg-config.4
⬇ retrieved dune.3.21.0  (cached)
⬇ retrieved fmt.0.11.0  (cached)
⬇ retrieved gen.1.1  (cached)
⬇ retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
⬇ retrieved ninja_utils.0.9.0  (cached)
⬇ retrieved ocaml-compiler-libs.v0.12.4  (cached)
⬇ retrieved ocaml-syntax-shims.1.0.0  (cached)
⬇ retrieved ocamlbuild.0.16.1  (cached)
⬇ retrieved ocamlfind.1.9.8  (cached)
⬇ retrieved ocamlgraph.2.2.0  (cached)
⬇ retrieved ocolor.1.3.1  (cached)
⬇ retrieved opam-depext.1.2.3  (cached)
⊘ removed   opam-depext.1.2.3
⊘ removed   ocaml.4.14.2
∗ installed ocaml.4.14.2
⬇ retrieved otoml.1.0.5  (cached)
⬇ retrieved ppx_derivers.1.2.1  (cached)
⬇ retrieved ppxlib.0.37.0  (cached)
⬇ retrieved ptime.1.2.0  (cached)
⬇ retrieved re.1.14.0  (cached)
⬇ retrieved sedlex.3.7  (cached)
⬇ retrieved seq.base  (cached)
∗ installed seq.base
⬇ retrieved sexplib0.v0.17.0  (cached)
⬇ retrieved stdlib-shims.0.3.0  (cached)
⬇ retrieved topkg.1.1.1  (cached)
⬇ retrieved ubase.0.20  (cached)
⬇ retrieved uucp.17.0.0  (cached)
⬇ retrieved uutf.1.0.4  (cached)
⬇ retrieved yojson.3.0.0  (cached)
∗ installed opam-depext.1.2.3
⬇ retrieved zarith.1.14  (cached)
∗ installed cmdliner.2.1.0
∗ installed ocamlfind.1.9.8
∗ installed ocamlbuild.0.16.1
∗ installed zarith.1.14
∗ installed topkg.1.1.1
∗ installed uutf.1.0.4
∗ installed fmt.0.11.0
∗ installed ptime.1.2.0
∗ installed astring.0.8.5
∗ installed dune.3.21.0
∗ installed bindlib.6.0.0
∗ installed menhirCST.20250912
∗ installed ppx_derivers.1.2.1
∗ installed crunch.4.0.0
∗ installed stdlib-shims.0.3.0
∗ installed menhirSdk.20250912
∗ installed menhirLib.20250912
∗ installed gen.1.1
∗ installed sexplib0.v0.17.0
∗ installed ubase.0.20
∗ installed cppo.1.8.0
∗ installed ocaml-compiler-libs.v0.12.4
∗ installed ocaml-syntax-shims.1.0.0
∗ installed re.1.14.0
∗ installed ocolor.1.3.1
∗ installed ninja_utils.0.9.0
∗ installed yojson.3.0.0
∗ installed ocamlgraph.2.2.0
∗ installed alcotest.1.9.1
∗ installed menhir.20250912
∗ installed otoml.1.0.5
∗ installed uucp.17.0.0
∗ installed ppxlib.0.37.0
∗ installed sedlex.3.7
∗ installed catala.1.0.0
Done.

<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-01-19 23:42.44 ---> saved as "4303f49239b0189d6f9319b305751267ed66ce234b92a20abc03816f73a2e45c"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test catala.1.0.0) || true"))
The following actions will be performed:
=== recompile 1 package
  ↻ catala 1.0.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⊘ removed   catala.1.0.0
∗ installed catala.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 23:43.07 ---> saved as "d4bced8a43d9ee88d6cdf7118c67a0fe1e50a4a2a18b2324c881fb03154e668c"

/home/opam: (run (shell  "opam reinstall --with-test --verbose catala.1.0.0;\
                        \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 \"\\\"archlinux\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'catala.1.0.0' && 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
  ↻ catala 1.0.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [catala: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "catala" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/catala.1.0.0)
- (cd _build/default/compiler/surface && /home/opam/.opam/4.14/bin/menhir tokens.mly parser.mly --base parser --compile-errors parser.messages) > _build/default/compiler/surface/parser_errors.ml
- Read 160 sample input sentences and 160 error messages.
- (cd _build/default/compiler/literate && /home/opam/.opam/4.14/bin/ocaml-crunch -e py -m plain -o pygment_lexers.ml .)
- Generating pygment_lexers.ml
- Skipping generation of .mli
- (cd _build/default/compiler && ./tests.exe)
- Testing `Optimizations'.
- This run has ID `B2Q9EOQL'.
- 
-   [OK]          Iota-reduction          0   #1.
-   [OK]          Iota-reduction          1   #2.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/catala.1.0.0/_build/default/compiler/_build/_tests/Optimizations'.
- Test Successful in 0.000s. 2 tests run.
λ compiled  catala.1.0.0
⊘ removed   catala.1.0.0
∗ installed catala.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 23:43.33 ---> saved as "959d666be745aeb6a513ac272f2d3b1de213aea9251dd1e5d8443e7b140adee4"
Job succeeded
2026-01-19 23:43.39: Job succeeded