(for PR #29222)
2026-01-19 20:51.41: New job: test catala.0.10.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29222/head (ad79ca9644feb512edcb7b55f7521e075b88d976)
on centos-9-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:centos-9-ocaml-4.14@sha256:8a454cb3df548f2ed6b30c31b1778d853618b5764d231544d70ead8c35a7a35c
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.0.10.0 0.10.0
RUN opam reinstall catala.0.10.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 "\"centos-9\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'catala.0.10.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.0.10.0) || true
RUN opam reinstall --with-test --verbose catala.0.10.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 "\"centos-9\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'catala.0.10.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:centos-9-ocaml-4.14@sha256:8a454cb3df548f2ed6b30c31b1778d853618b5764d231544d70ead8c35a7a35c-catala.0.10.0-ad79ca9644feb512edcb7b55f7521e075b88d976"
2026-01-19 20:51.41: Using OBuilder spec:
((from ocaml/opam:centos-9-ocaml-4.14@sha256:8a454cb3df548f2ed6b30c31b1778d853618b5764d231544d70ead8c35a7a35c)
(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.0.10.0 0.10.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall catala.0.10.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 \"\\\"centos-9\\\"\"; 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.0.10.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.0.10.0) || true"))
(run (shell "opam reinstall --with-test --verbose catala.0.10.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 \"\\\"centos-9\\\"\"; 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.0.10.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:31.04: Waiting for worker…
2026-01-19 23:34.47: Got resource from pool OCluster
Building on eumache
All commits already cached
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:centos-9-ocaml-4.14@sha256:8a454cb3df548f2ed6b30c31b1778d853618b5764d231544d70ead8c35a7a35c)
2026-01-19 23:34.52 ---> using "dd43d131db5facc4f1360548584b55edbff50fc51ea9e0658e0361c99a94b6c3" 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:34.52 ---> using "0110acba8d2e3cd751a2cbbc2c4147ae4e0c0bee989c2c49b7e634c5bd8f1933" 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
2026-01-19 23:34.52 ---> using "68eacc5e3bd4951cdcc16a940ec4591280d77fe85e7322ec76c53e570d9ea66f" 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=centos os-version=9
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (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:34.52 ---> using "9f82128f182199b5a6895de3d40a81a6cd968bb9f45b9cb26e7004bea63b9e04" 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:35.07 ---> saved as "17ff8f9e5c0e20eaf07b7d287e84e6238aebd7e5149fc66bddc4c083e2de4304"
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-19 23:35.14 ---> saved as "909ecadf47ce38db588f41a85ab3cedc3779310af9355b68b58d382177d49eb2"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-19 23:35.37 ---> saved as "90b1b5d8011f1f5b028658185449da378ab9080e04e52f116a82cec5bf88f986"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 9 - BaseOS 56 kB/s | 14 kB 00:00
- CentOS Stream 9 - BaseOS 1.6 MB/s | 8.9 MB 00:05
- CentOS Stream 9 - AppStream 111 kB/s | 15 kB 00:00
- CentOS Stream 9 - AppStream 4.5 MB/s | 26 MB 00:05
- CentOS Stream 9 - CRB 107 kB/s | 14 kB 00:00
- CentOS Stream 9 - CRB 1.4 MB/s | 7.6 MB 00:05
- CentOS Stream 9 - Extras packages 117 kB/s | 16 kB 00:00
- Metadata cache created.
2026-01-19 23:36.08 ---> saved as "aedd50fdd7b76e5a442a82454083cd4e2f16097e02201497d1df4d24ffbd1d3a"
/home/opam: (run (shell "opam pin add -k version -yn catala.0.10.0 0.10.0"))
catala is now pinned to version 0.10.0
2026-01-19 23:36.10 ---> saved as "03d75cac37aea0fdce40652e04f7d7d9a37cc36fd68f7f739de5e7d6b8c43f18"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall catala.0.10.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 \"\\\"centos-9\\\"\"; 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.0.10.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.0.10.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 46 packages
- install alcotest 1.7.0 [required by catala]
- install astring 0.8.5 [required by alcotest]
- install bindlib 6.0.0 [required by catala]
- install catala 0.10.0 (pinned)
- install cmdliner 2.1.0 [required by catala]
- install conf-gmp 5 [required by zarith]
- install conf-ninja 1 [required by catala]
- install conf-pkg-config 4 [required by zarith]
- install cppo 1.8.0 [required by catala]
- install crunch 4.0.0 [required by catala]
- install dates_calc 0.0.10 [required by catala]
- install dune 3.21.0 [required by catala]
- install fmt 0.11.0 [required by alcotest]
- install gen 1.1 [required by sedlex]
- install js_of_ocaml 4.1.0 [required by js_of_ocaml-ppx]
- install js_of_ocaml-compiler 4.1.0 [required by js_of_ocaml]
- install js_of_ocaml-ppx 4.1.0 [required by catala]
- install menhir 20250912 [required by catala]
- install menhirCST 20250912 [required by menhir]
- install menhirLib 20250912 [required by catala]
- install menhirSdk 20250912 [required by js_of_ocaml-compiler]
- install ninja_utils 0.9.0 [required by catala]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocamlbuild 0.16.1 [required by uutf, astring, fmt, ptime]
- install ocamlfind 1.9.8 [required by catala]
- install ocamlgraph 2.2.0 [required by catala]
- install ocolor 1.3.1 [required by catala]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.0.3 [required by visitors]
- install ppxlib 0.35.0 [required by sedlex, js_of_ocaml-ppx, visitors]
- install ptime 1.2.0 [required by crunch]
- install re 1.14.0 [required by catala]
- install result 1.5 [required by visitors]
- install sedlex 3.4 [required by catala]
- install seq base [required by gen]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by alcotest]
- install topkg 1.1.1 [required by uutf, astring, fmt, ptime]
- install ubase 0.20 [required by catala]
- install unionFind 20220122 [required by catala]
- install uutf 1.0.4 [required by catala]
- install visitors 20250212 [required by catala]
- install yojson 3.0.0 [required by js_of_ocaml-compiler]
- install zarith 1.14 [required by catala]
- install zarith_stubs_js v0.16.1 [required by catala]
The following system packages will first need to be installed:
gmp-devel ninja-build
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
2. Display the recommended yum 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 "yum" "install" "-y" "gmp-devel" "ninja-build"
- Last metadata expiration check: 0:00:07 ago on Mon Jan 19 23:36:07 2026.
- Dependencies resolved.
- ================================================================================
- Package Arch Version Repository Size
- ================================================================================
- Installing:
- gmp-devel x86_64 1:6.2.0-13.el9 appstream 174 k
- ninja-build x86_64 1.10.2-6.el9 crb 146 k
- Installing dependencies:
- gmp-c++ x86_64 1:6.2.0-13.el9 appstream 19 k
- vim-filesystem noarch 2:8.2.2637-23.el9 baseos 13 k
-
- Transaction Summary
- ================================================================================
- Install 4 Packages
-
- Total download size: 352 k
- Installed size: 737 k
- Downloading Packages:
- (1/4): gmp-c++-6.2.0-13.el9.x86_64.rpm 889 kB/s | 19 kB 00:00
- (2/4): gmp-devel-6.2.0-13.el9.x86_64.rpm 568 kB/s | 174 kB 00:00
- (3/4): vim-filesystem-8.2.2637-23.el9.noarch.rp 42 kB/s | 13 kB 00:00
- (4/4): ninja-build-1.10.2-6.el9.x86_64.rpm 153 kB/s | 146 kB 00:00
- --------------------------------------------------------------------------------
- Total 253 kB/s | 352 kB 00:01
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
- Preparing : 1/1
- Installing : gmp-c++-1:6.2.0-13.el9.x86_64 1/4
- Installing : vim-filesystem-2:8.2.2637-23.el9.noarch 2/4
- Installing : ninja-build-1.10.2-6.el9.x86_64 3/4
- Installing : gmp-devel-1:6.2.0-13.el9.x86_64 4/4
- Running scriptlet: gmp-devel-1:6.2.0-13.el9.x86_64 4/4
- Verifying : vim-filesystem-2:8.2.2637-23.el9.noarch 1/4
- Verifying : gmp-c++-1:6.2.0-13.el9.x86_64 2/4
- Verifying : gmp-devel-1:6.2.0-13.el9.x86_64 3/4
- Verifying : ninja-build-1.10.2-6.el9.x86_64 4/4
-
- Installed:
- gmp-c++-1:6.2.0-13.el9.x86_64 gmp-devel-1:6.2.0-13.el9.x86_64
- ninja-build-1.10.2-6.el9.x86_64 vim-filesystem-2:8.2.2637-23.el9.noarch
-
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "gmp-devel" "ninja-build"
- gmp-devel-6.2.0-13.el9.x86_64
- ninja-build-1.10.2-6.el9.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.7.0 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved bindlib.6.0.0 (cached)
-> retrieved catala.0.10.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 dates_calc.0.0.10 (cached)
-> retrieved dune.3.21.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved gen.1.1 (cached)
-> retrieved js_of_ocaml.4.1.0, js_of_ocaml-compiler.4.1.0, js_of_ocaml-ppx.4.1.0 (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)
-> installed cmdliner.2.1.0
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocamlgraph.2.2.0 (cached)
-> retrieved ocolor.1.3.1 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.0.3 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved result.1.5 (cached)
-> retrieved sedlex.3.4 (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 unionFind.20220122 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved visitors.20250212 (cached)
-> retrieved yojson.3.0.0 (cached)
-> retrieved zarith.1.14 (cached)
-> retrieved zarith_stubs_js.v0.16.1 (cached)
-> 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 dates_calc.0.0.10
-> installed crunch.4.0.0
-> installed menhirCST.20250912
-> installed ppx_derivers.1.2.1
-> installed zarith_stubs_js.v0.16.1
-> installed stdlib-shims.0.3.0
-> installed gen.1.1
-> installed result.1.5
-> installed unionFind.20220122
-> installed menhirSdk.20250912
-> installed menhirLib.20250912
-> installed sexplib0.v0.17.0
-> installed ubase.0.20
-> installed cppo.1.8.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed yojson.3.0.0
-> installed re.1.14.0
-> installed ocolor.1.3.1
-> installed ninja_utils.0.9.0
-> installed ocamlgraph.2.2.0
-> installed alcotest.1.7.0
-> installed menhir.20250912
-> installed ppxlib.0.35.0
-> installed sedlex.3.4
-> installed ppx_deriving.6.0.3
-> installed visitors.20250212
-> installed js_of_ocaml-compiler.4.1.0
-> installed js_of_ocaml.4.1.0
-> installed js_of_ocaml-ppx.4.1.0
-> installed catala.0.10.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 23:38.50 ---> saved as "7498c302428db7f2cf96561195ea7bfa61c05ccb249056d2de518f466a55a92b"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test catala.0.10.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile catala 0.10.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved catala.0.10.0 (https://opam.ocaml.org/cache)
-> removed catala.0.10.0
-> installed catala.0.10.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 23:39.27 ---> saved as "c1fecefcfa046ffaae7b4bc5dcbb333e1d3e750aff435b34e9933715b942ec06"
/home/opam: (run (shell "opam reinstall --with-test --verbose catala.0.10.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 \"\\\"centos-9\\\"\"; 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.0.10.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
- recompile catala 0.10.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [catala.0.10.0: extract]
-> retrieved catala.0.10.0 (cached)
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.0.10.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 231 sample input sentences and 231 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 `BLND338E'.
-
- [OK] Iota-reduction 0 #1.
- [OK] Iota-reduction 1 #2.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/catala.0.10.0/_build/default/compiler/_build/_tests/Optimizations'.
- Test Successful in 0.000s. 2 tests run.
- (cd _build/default/compiler && /home/opam/.opam/4.14/bin/js_of_ocaml --no-source-map -o catala_web_interpreter.bc.js /home/opam/.opam/4.14/lib/zarith_stubs_js/biginteger.js /home/opam/.opam/4.14/lib/zarith_stubs_js/runtime.js /home/opam/.opam/4.14/lib/alcotest/runtime.js catala_web_interpreter.bc-for-jsoo)
- There are some missing primitives
- Dummy implementations (raising 'Failure' exception) will be used if they are not available at runtime.
- You can prevent the generation of dummy implementations with the commandline option '--disable genprim'
- Missing primitives provided by +dynlink.js:
- caml_dynlink_add_primitive
- caml_dynlink_get_current_libs
- caml_dynlink_lookup_symbol
- caml_dynlink_open_lib
- Missing primitives provided by +toplevel.js:
- caml_get_section_table
- caml_realloc_global
- caml_reify_bytecode
- Missing primitives:
- unix_close
- unix_dup
- unix_inchannel_of_filedescr
- unix_pipe
- unix_spawn
- unix_waitpid
- (cd _build/default/compiler && /home/opam/.opam/4.14/bin/js_of_ocaml --no-source-map -o catala.bc.js /home/opam/.opam/4.14/lib/zarith_stubs_js/biginteger.js /home/opam/.opam/4.14/lib/zarith_stubs_js/runtime.js /home/opam/.opam/4.14/lib/alcotest/runtime.js catala.bc-for-jsoo)
- There are some missing primitives
- Dummy implementations (raising 'Failure' exception) will be used if they are not available at runtime.
- You can prevent the generation of dummy implementations with the commandline option '--disable genprim'
- Missing primitives provided by +dynlink.js:
- caml_dynlink_add_primitive
- caml_dynlink_get_current_libs
- caml_dynlink_lookup_symbol
- caml_dynlink_open_lib
- Missing primitives provided by +toplevel.js:
- caml_get_section_table
- caml_realloc_global
- caml_reify_bytecode
- Missing primitives:
- unix_close
- unix_dup
- unix_execvp
- unix_inchannel_of_filedescr
- unix_pipe
- unix_spawn
- unix_waitpid
-> compiled catala.0.10.0
-> removed catala.0.10.0
-> installed catala.0.10.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 23:40.03 ---> saved as "e00a5c8c732bd9ec7a41de5b129baad48d5c98d7af153c06acd63338902eaa6f"
Job succeeded
2026-01-19 23:40.23: Job succeeded