(for PR #29484)

2026-04-27 07:45.28: New job: build colibrics.0.5, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29484/head (1b330fadfbca45ff79eea30cec2cd15a1b2a42b9)
                              on alpine-3.23-ocaml-5.4/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/29484/head" && git reset --hard 1b330fad
git fetch origin master
git merge --no-edit d5058a91d400180e2118d7eeefa040cfcee45d2c
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:alpine-3.23-ocaml-5.4@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366
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 colibrics.0.5 0.5
RUN opam reinstall colibrics.0.5; \
    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 "\"alpine-3.23\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'colibrics.0.5' && 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-04-27 07:45.28: Using cache hint "ocaml/opam:alpine-3.23-ocaml-5.4@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366-colibrics.0.5-1b330fadfbca45ff79eea30cec2cd15a1b2a42b9"
2026-04-27 07:45.28: Using OBuilder spec:
((from ocaml/opam:alpine-3.23-ocaml-5.4@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366)
 (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 colibrics.0.5 0.5"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall colibrics.0.5;\
             \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 \"\\\"alpine-3.23\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'colibrics.0.5' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-27 07:45.28: Connecting to build cluster…
2026-04-27 07:45.28: Waiting for resource in pool OCluster
2026-04-27 07:45.28: Waiting for worker…
2026-04-27 07:47.08: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
HEAD is now at d5058a91d4 Merge pull request #29801 from YuriyKrasilnikov/opam-publish-idna.0.4.0
Merge made by the 'ort' strategy.
 packages/colibri2/colibri2.0.5/opam               | 70 +++++++++++++++++++++++
 packages/colibrics/colibrics.0.5/opam             | 50 ++++++++++++++++
 packages/colibrilib-why3/colibrilib-why3.0.5/opam | 40 +++++++++++++
 packages/colibrilib/colibrilib.0.5/opam           | 40 +++++++++++++
 4 files changed, 200 insertions(+)
 create mode 100644 packages/colibri2/colibri2.0.5/opam
 create mode 100644 packages/colibrics/colibrics.0.5/opam
 create mode 100644 packages/colibrilib-why3/colibrilib-why3.0.5/opam
 create mode 100644 packages/colibrilib/colibrilib.0.5/opam

(from ocaml/opam:alpine-3.23-ocaml-5.4@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366)
Unable to find image 'ocaml/opam:alpine-3.23-ocaml-5.4@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366' locally
docker.io/ocaml/opam@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366: Pulling from ocaml/opam
6a0ac1617861: Already exists
9630673831f3: Pulling fs layer
4cffb540229a: Pulling fs layer
9630673831f3: Waiting
aa3cee094119: Pulling fs layer
4cffb540229a: Waiting
f2700202f619: Pulling fs layer
33135c7375d5: Pulling fs layer
1ea4b64ae955: Pulling fs layer
aa3cee094119: Waiting
f2700202f619: Waiting
33135c7375d5: Waiting
ca34ef70eda1: Pulling fs layer
1ea4b64ae955: Waiting
d4998b6f8f35: Pulling fs layer
4a43cfe8648c: Pulling fs layer
ca34ef70eda1: Waiting
453dd28eaace: Pulling fs layer
a962f0379f0a: Pulling fs layer
d4998b6f8f35: Waiting
4a43cfe8648c: Waiting
453dd28eaace: Waiting
b68882dcbbd8: Pulling fs layer
a962f0379f0a: Waiting
3f63b4eac828: Pulling fs layer
0720e1e1068a: Pulling fs layer
b68882dcbbd8: Waiting
3f63b4eac828: Waiting
0676d4d6023a: Pulling fs layer
0ab690805f49: Pulling fs layer
0720e1e1068a: Waiting
0676d4d6023a: Waiting
fc0af979c0fe: Pulling fs layer
0ab690805f49: Waiting
4f4fb700ef54: Pulling fs layer
63f1d0bef8ae: Pulling fs layer
fc0af979c0fe: Waiting
4f4fb700ef54: Waiting
43fd6995d88f: Pulling fs layer
c775bfb331ab: Pulling fs layer
a7a9b5ed8780: Pulling fs layer
43fd6995d88f: Waiting
86ac791930d3: Pulling fs layer
63f1d0bef8ae: Waiting
c775bfb331ab: Waiting
a7a9b5ed8780: Waiting
2e34d70b785c: Pulling fs layer
56c554cb0baa: Pulling fs layer
0109b7ea4beb: Pulling fs layer
a72aa581a14e: Pulling fs layer
2e34d70b785c: Waiting
56c554cb0baa: Waiting
0b969b88b90b: Pulling fs layer
86ac791930d3: Waiting
0109b7ea4beb: Waiting
d1ae0e2bf910: Pulling fs layer
a72aa581a14e: Waiting
cfd8efe5a061: Pulling fs layer
0b969b88b90b: Waiting
a34595d6f491: Pulling fs layer
d1ae0e2bf910: Waiting
7333547f58a0: Pulling fs layer
803cdf5f2902: Pulling fs layer
d74501489c54: Pulling fs layer
a34595d6f491: Waiting
cfd8efe5a061: Waiting
628aecb9cafb: Pulling fs layer
7333547f58a0: Waiting
803cdf5f2902: Waiting
0c52f398a865: Pulling fs layer
f4e18988783e: Pulling fs layer
628aecb9cafb: Waiting
0c52f398a865: Waiting
d74501489c54: Waiting
f4e18988783e: Waiting
d9b0005bf058: Pulling fs layer
ac511140fcec: Pulling fs layer
d9b0005bf058: Waiting
e5e3b5898b4b: Pulling fs layer
ac511140fcec: Waiting
08e53197d17a: Pulling fs layer
e5e3b5898b4b: Waiting
08e53197d17a: Waiting
9502f6b2d19e: Pulling fs layer
9630673831f3: Verifying Checksum
9630673831f3: Download complete
9630673831f3: Pull complete
4cffb540229a: Verifying Checksum
4cffb540229a: Download complete
4cffb540229a: Pull complete
aa3cee094119: Retrying in 5 seconds
aa3cee094119: Retrying in 4 seconds
aa3cee094119: Retrying in 3 seconds
aa3cee094119: Retrying in 2 seconds
aa3cee094119: Retrying in 1 second
f2700202f619: Download complete
aa3cee094119: Verifying Checksum
aa3cee094119: Download complete
33135c7375d5: Verifying Checksum
33135c7375d5: Download complete
1ea4b64ae955: Verifying Checksum
1ea4b64ae955: Download complete
d4998b6f8f35: Verifying Checksum
d4998b6f8f35: Download complete
ca34ef70eda1: Verifying Checksum
ca34ef70eda1: Download complete
453dd28eaace: Verifying Checksum
453dd28eaace: Download complete
4a43cfe8648c: Verifying Checksum
4a43cfe8648c: Download complete
b68882dcbbd8: Download complete
a962f0379f0a: Verifying Checksum
a962f0379f0a: Download complete
3f63b4eac828: Download complete
0720e1e1068a: Verifying Checksum
0720e1e1068a: Download complete
0ab690805f49: Download complete
0676d4d6023a: Verifying Checksum
0676d4d6023a: Download complete
fc0af979c0fe: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
63f1d0bef8ae: Download complete
43fd6995d88f: Download complete
c775bfb331ab: Verifying Checksum
c775bfb331ab: Download complete
a7a9b5ed8780: Verifying Checksum
a7a9b5ed8780: Download complete
86ac791930d3: Download complete
2e34d70b785c: Verifying Checksum
2e34d70b785c: Download complete
0109b7ea4beb: Verifying Checksum
56c554cb0baa: Verifying Checksum
56c554cb0baa: Download complete
a72aa581a14e: Verifying Checksum
a72aa581a14e: Download complete
0b969b88b90b: Download complete
d1ae0e2bf910: Verifying Checksum
d1ae0e2bf910: Download complete
cfd8efe5a061: Verifying Checksum
cfd8efe5a061: Download complete
7333547f58a0: Download complete
aa3cee094119: Pull complete
f2700202f619: Pull complete
33135c7375d5: Pull complete
1ea4b64ae955: Pull complete
ca34ef70eda1: Pull complete
d4998b6f8f35: Pull complete
4a43cfe8648c: Pull complete
453dd28eaace: Pull complete
a962f0379f0a: Pull complete
b68882dcbbd8: Pull complete
3f63b4eac828: Pull complete
0720e1e1068a: Pull complete
0676d4d6023a: Pull complete
0ab690805f49: Pull complete
fc0af979c0fe: Pull complete
4f4fb700ef54: Pull complete
63f1d0bef8ae: Pull complete
43fd6995d88f: Pull complete
c775bfb331ab: Pull complete
a7a9b5ed8780: Pull complete
86ac791930d3: Pull complete
2e34d70b785c: Pull complete
56c554cb0baa: Pull complete
0109b7ea4beb: Pull complete
a72aa581a14e: Pull complete
0b969b88b90b: Pull complete
d1ae0e2bf910: Pull complete
cfd8efe5a061: Pull complete
d74501489c54: Verifying Checksum
d74501489c54: Download complete
628aecb9cafb: Verifying Checksum
0c52f398a865: Download complete
a34595d6f491: Verifying Checksum
a34595d6f491: Download complete
803cdf5f2902: Download complete
f4e18988783e: Verifying Checksum
f4e18988783e: Download complete
d9b0005bf058: Verifying Checksum
d9b0005bf058: Download complete
ac511140fcec: Verifying Checksum
ac511140fcec: Download complete
e5e3b5898b4b: Verifying Checksum
e5e3b5898b4b: Download complete
08e53197d17a: Verifying Checksum
08e53197d17a: Download complete
9502f6b2d19e: Verifying Checksum
9502f6b2d19e: Download complete
a34595d6f491: Pull complete
7333547f58a0: Pull complete
803cdf5f2902: Pull complete
d74501489c54: Pull complete
628aecb9cafb: Pull complete
0c52f398a865: Pull complete
f4e18988783e: Pull complete
d9b0005bf058: Pull complete
ac511140fcec: Pull complete
e5e3b5898b4b: Pull complete
08e53197d17a: Pull complete
9502f6b2d19e: Pull complete
Digest: sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366
Status: Downloaded newer image for ocaml/opam@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366
2026-04-27 07:50.43 ---> saved as "01c11b07ac2b5cd48e66007e5a5cac291b476dda37442ad969d24b0ab6dc0559"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-27 07:50.51 ---> saved as "5fa6b9ef5549d606fde31aba0d2d7485a36147f16a3ee218cbb6a6f517620475"

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

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-27 07:51.25 ---> saved as "2b7c0c1ec60c3c866c21f4c48a177ecdc8d20898064aa58e8186b73bd0a3b82c"

/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.1
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=alpine os-version=3.23.4
# 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       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages    ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.1
2026-04-27 07:51.32 ---> saved as "7862949e114365a7d947f371162aff05306891b079ee9ff96207c1c35ea17ff1"

/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-04-27 07:51.49 ---> saved as "b5281aa9dc433b8ef976cfc81df3773fee0eb65d5c716c2c984d2975eae1fea3"

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-27 07:52.56 ---> saved as "0492d1782fc53271355f6033e3b1d9f1dd31b920c0e983f5d83a39cfce9f0f69"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-27 07:53.25 ---> saved as "6ec605530e2900a41e8db3fc5769eac6cdfda2333e60e7117610d5dc63aaac4d"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apk" "update"
- v3.23.4-59-gb9ff5fecad9 [https://dl-cdn.alpinelinux.org/alpine/v3.23/main]
- v3.23.4-62-gc06bcbb6e5a [https://dl-cdn.alpinelinux.org/alpine/v3.23/community]
- v20260127-8556-g62e2b7bb20c [https://dl-cdn.alpinelinux.org/alpine/edge/main]
- v20260127-8557-g79450ec30a5 [https://dl-cdn.alpinelinux.org/alpine/edge/community]
- v20260127-8554-gb33de4ab903 [https://dl-cdn.alpinelinux.org/alpine/edge/testing]
- OK: 62089 distinct packages available
2026-04-27 07:53.36 ---> saved as "ab28011b8d635e86773fc03435eb3e3e3e19f1189bdff4f70078d9fc6b02e0d7"

/home/opam: (run (shell "opam pin add -k version -yn colibrics.0.5 0.5"))
colibrics is now pinned to version 0.5
2026-04-27 07:53.51 ---> saved as "3b9534da30f5d25e66aa15f87ae5ec36fb823bb4c79171d3d2d5ce39c0b25b8f"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall colibrics.0.5;\
                        \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 \"\\\"alpine-3.23\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'colibrics.0.5' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
colibrics.0.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 77 packages
  - install base                    v0.17.3      [required by colibri2]
  - install camlidl                 1.13-1       [required by mlcuddidl]
  - install cmdliner                2.1.1        [required by colibrics]
  - install colibri2                0.5          [required by colibrics]
  - install colibrics               0.5 (pinned)
  - install colibrilib              0.5          [required by colibri2]
  - install conf-flint              3.0          [required by flint]
  - install conf-gmp                5            [required by zarith, conf-mpfr]
  - install conf-m4                 1            [required by mlcuddidl]
  - install conf-mpfr               3            [required by flint]
  - install conf-pkg-config         4            [required by flint]
  - install containers              3.18         [required by colibri2]
  - install cppo                    1.8.0        [required by ppx_deriving]
  - install csexp                   1.5.2        [required by dune-configurator]
  - install ctypes                  0.24.0       [required by flint]
  - install dolmen                  0.10         [required by colibrics]
  - install dolmen_loop             0.10         [required by colibrics]
  - install dolmen_type             0.10         [required by colibrics]
  - install dune                    3.22.2       [required by colibrics]
  - install dune-build-info         3.22.2       [required by colibri2]
  - install dune-configurator       3.22.2       [required by containers, base, flint]
  - install either                  1.0.0        [required by containers]
  - install farith                  0.1          [required by colibri2]
  - install flint                   0.4.2        [required by colibri2]
  - install fmt                     0.11.0       [required by dolmen]
  - install gen                     1.1          [required by colibri2]
  - install hmap                    0.8.1        [required by dolmen]
  - install integers                0.7.0        [required by ctypes]
  - install jane-street-headers     v0.17.0      [required by time_now]
  - install jingoo                  1.5.2        [required by colibrics]
  - install jst-config              v0.17.0      [required by time_now]
  - install logs                    0.10.0       [required by colibrics]
  - install menhir                  20250912     [required by jingoo, why3]
  - install menhirCST               20250912     [required by menhir]
  - install menhirLib               20250912     [required by menhir]
  - install menhirSdk               20250912     [required by menhir]
  - install mlcuddidl               3.0.8        [required by colibri2]
  - install mtime                   2.1.0        [required by trace, trace-tef]
  - install ocaml-compiler-libs     v0.17.0      [required by ppxlib]
  - install ocaml_intrinsics_kernel v0.17.1      [required by base]
  - install ocamlbuild              0.16.1       [required by mlcuddidl, uucp]
  - install ocamlfind               1.9.8        [required by why3]
  - install ocamlgraph              2.2.0        [required by colibri2, why3]
  - install ocplib-simplex          0.5.1        [required by colibri2]
  - install pp_loc                  2.1.0        [required by dolmen_loop]
  - install ppx_assert              v0.17.0      [required by jst-config]
  - install ppx_base                v0.17.0      [required by time_now]
  - install ppx_cold                v0.17.0      [required by ppx_base]
  - install ppx_compare             v0.17.0      [required by ppx_hash]
  - install ppx_derivers            1.2.1        [required by ppx_deriving]
  - install ppx_deriving            6.1.1        [required by ppx_deriving_yojson, colibri2, jingoo, why3]
  - install ppx_deriving_yojson     3.10.0       [required by colibrics]
  - install ppx_enumerate           v0.17.0      [required by ppx_base]
  - install ppx_globalize           v0.17.2      [required by ppx_base]
  - install ppx_hash                v0.17.0      [required by colibri2]
  - install ppx_here                v0.17.0      [required by colibri2]
  - install ppx_inline_test         v0.17.1      [required by colibri2]
  - install ppx_optcomp             v0.17.1      [required by colibri2]
  - install ppx_sexp_conv           v0.17.1      [required by why3]
  - install ppxlib                  0.38.0       [required by ppx_deriving_yojson]
  - install ppxlib_jane             v0.17.4      [required by ppx_hash]
  - install qcheck-core             0.91         [required by colibri2]
  - install re                      1.14.0       [required by colibri2, jingoo]
  - install seq                     base         [required by dolmen]
  - install sexplib0                v0.17.0      [required by base]
  - install spelll                  0.4          [required by dolmen_type]
  - install stdio                   v0.17.0      [required by ppx_optcomp]
  - install stdlib-shims            0.3.0        [required by ppxlib, spelll, integers]
  - install time_now                v0.17.0      [required by ppx_inline_test]
  - install topkg                   1.1.1        [required by uucp]
  - install trace                   0.12         [required by colibri2]
  - install trace-tef               0.12         [required by colibri2]
  - install uucp                    17.0.0       [required by jingoo]
  - install uutf                    1.0.4        [required by jingoo]
  - install why3                    1.8.2        [required by colibrics]
  - install yojson                  3.0.0        [required by colibrics]
  - install zarith                  1.14         [required by colibrics]

The following system packages will first need to be installed:
    flint-dev@edgecommunity gmp-dev m4 mpfr-dev

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

opam believes some required external dependencies are missing. opam can:
> 1. Run apk to install them (may need root/sudo access)
  2. Display the recommended apk 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 "apk" "add" "flint-dev@edgecommunity" "gmp-dev" "m4" "mpfr-dev"
- (1/6) Installing flint@edgecommunity (3.4.0-r1)
- (2/6) Installing libgmpxx (6.3.0-r4)
- (3/6) Installing gmp-dev (6.3.0-r4)
- (4/6) Installing mpfr-dev (4.2.2-r0)
- (5/6) Installing flint-dev@edgecommunity (3.4.0-r1)
- (6/6) Installing m4 (1.4.20-r0)
- Executing busybox-1.37.0-r30.trigger
- OK: 352.4 MiB in 110 packages

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.3  (cached)
-> retrieved camlidl.1.13-1  (cached)
-> retrieved cmdliner.2.1.1  (cached)
-> retrieved colibri2.0.5, colibrics.0.5, colibrilib.0.5  (https://git.frama-c.com/api/v4/projects/879/packages/generic/colibri2/0.5/colibri2-0.5.tbz)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-mpfr.3  (cached)
-> installed camlidl.1.13-1
-> installed conf-gmp.5
-> installed conf-m4.1
-> installed conf-pkg-config.4
-> installed conf-mpfr.3
-> installed conf-flint.3.0
-> retrieved containers.3.18  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved ctypes.0.24.0  (cached)
-> retrieved dolmen.0.10, dolmen_loop.0.10, dolmen_type.0.10  (cached)
-> retrieved dune.3.22.2, dune-build-info.3.22.2, dune-configurator.3.22.2  (cached)
-> retrieved either.1.0.0  (cached)
-> retrieved farith.0.1  (cached)
-> installed cmdliner.2.1.1
-> retrieved flint.0.4.2  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved hmap.0.8.1  (cached)
-> retrieved integers.0.7.0  (cached)
-> retrieved jane-street-headers.v0.17.0  (cached)
-> retrieved jingoo.1.5.2  (cached)
-> retrieved jst-config.v0.17.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> retrieved mlcuddidl.3.0.8  (https://opam.ocaml.org/cache)
-> retrieved mtime.2.1.0  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocamlgraph.2.2.0  (cached)
-> retrieved ocplib-simplex.0.5.1  (cached)
-> retrieved pp_loc.2.1.0  (cached)
-> retrieved ppx_assert.v0.17.0  (cached)
-> retrieved ppx_base.v0.17.0  (cached)
-> retrieved ppx_cold.v0.17.0  (cached)
-> retrieved ppx_compare.v0.17.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> retrieved ppx_deriving_yojson.3.10.0  (cached)
-> retrieved ppx_enumerate.v0.17.0  (cached)
-> retrieved ppx_globalize.v0.17.2  (cached)
-> retrieved ppx_hash.v0.17.0  (cached)
-> retrieved ppx_here.v0.17.0  (cached)
-> retrieved ppx_inline_test.v0.17.1  (cached)
-> retrieved ppx_optcomp.v0.17.1  (cached)
-> retrieved ppx_sexp_conv.v0.17.1  (cached)
-> retrieved ppxlib.0.38.0  (cached)
-> retrieved ppxlib_jane.v0.17.4  (cached)
-> retrieved qcheck-core.0.91  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved spelll.0.4  (cached)
-> retrieved stdio.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved time_now.v0.17.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved trace.0.12, trace-tef.0.12  (cached)
-> retrieved uucp.17.0.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved why3.1.8.2  (cached)
-> retrieved yojson.3.0.0  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed uutf.1.0.4
-> installed mtime.2.1.0
-> installed fmt.0.11.0
-> installed logs.0.10.0
-> installed mlcuddidl.3.0.8
-> installed dune.3.22.2
-> installed cppo.1.8.0
-> installed csexp.1.5.2
-> installed dune-build-info.3.22.2
-> installed either.1.0.0
-> installed gen.1.1
-> installed jane-street-headers.v0.17.0
-> installed menhirCST.20250912
-> installed menhirLib.20250912
-> installed menhirSdk.20250912
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ocplib-simplex.0.5.1
-> installed pp_loc.2.1.0
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed sexplib0.v0.17.0
-> installed qcheck-core.0.91
-> installed stdlib-shims.0.3.0
-> installed yojson.3.0.0
-> installed colibrilib.0.5
-> installed ocamlgraph.2.2.0
-> installed spelll.0.4
-> installed trace.0.12
-> installed trace-tef.0.12
-> installed integers.0.7.0
-> installed dune-configurator.3.22.2
-> installed containers.3.18
-> installed uucp.17.0.0
-> installed ctypes.0.24.0
-> installed base.v0.17.3
-> installed stdio.v0.17.0
-> installed flint.0.4.2
-> installed menhir.20250912
-> installed ppxlib.0.38.0
-> installed ppx_optcomp.v0.17.1
-> installed ppxlib_jane.v0.17.4
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_enumerate.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_deriving.6.1.1
-> installed ppx_compare.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_deriving_yojson.3.10.0
-> installed ppx_hash.v0.17.0
-> installed dolmen.0.10
-> installed jingoo.1.5.2
-> installed ppx_assert.v0.17.0
-> installed ppx_base.v0.17.0
-> installed farith.0.1
-> installed dolmen_type.0.10
-> installed jst-config.v0.17.0
-> installed dolmen_loop.0.10
-> installed time_now.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed why3.1.8.2
-> installed colibri2.0.5
-> installed colibrics.0.5
Done.

<><> mlcuddidl.3.0.8 installed successfully <><><><><><><><><><><><><><><><><><>
=> For supporting ocaml 5 some modules are removed compared to the release
# To update the current shell environment, run: eval $(opam env)
2026-04-27 07:57.33 ---> saved as "8965ce15dbcd4ac24ace9b5c0e0ecf8aeeb26d4ca3df58cb846c619516d87cd1"
Job succeeded
2026-04-27 07:58.01: Job succeeded