(for PR #29111)

2026-01-23 15:10.11: New job: build caisar.5.0, using opam 2.0
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29111/head (6fb9bc721893564c7fcc5360575ff8ff9e76bc1c)
                              on debian-13-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/29111/head" && git reset --hard 6fb9bc72
git fetch origin master
git merge --no-edit dc02a35b0eaa39fa73e10f2dfa764b490f859db6
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:9f4103f7d94b5db36adc57e1243e7aafbc77118b03f3c64c9d783f6875957bd3
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam
RUN opam init --reinit -ni
RUN 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 depext -u || true
RUN opam pin add -k version -yn caisar.5.0 5.0
RUN opam depext caisar.5.0 && opam reinstall caisar.5.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 "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'caisar.5.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-23 15:10.11: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:9f4103f7d94b5db36adc57e1243e7aafbc77118b03f3c64c9d783f6875957bd3-caisar.5.0-6fb9bc721893564c7fcc5360575ff8ff9e76bc1c"
2026-01-23 15:10.11: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:9f4103f7d94b5db36adc57e1243e7aafbc77118b03f3c64c9d783f6875957bd3)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "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 depext -u || true"))
 (run (shell "opam pin add -k version -yn caisar.5.0 5.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam depext caisar.5.0 && opam reinstall caisar.5.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 \"\\\"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\" != 'caisar.5.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-23 15:10.11: Waiting for resource in pool OCluster
2026-01-23 15:10.11: Waiting for worker…
2026-01-23 15:12.20: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
Updating files:  78% (15210/19256)
Updating files:  79% (15213/19256)
Updating files:  80% (15405/19256)
Updating files:  81% (15598/19256)
Updating files:  82% (15790/19256)
Updating files:  83% (15983/19256)
Updating files:  84% (16176/19256)
Updating files:  85% (16368/19256)
Updating files:  86% (16561/19256)
Updating files:  87% (16753/19256)
Updating files:  88% (16946/19256)
Updating files:  89% (17138/19256)
Updating files:  90% (17331/19256)
Updating files:  91% (17523/19256)
Updating files:  92% (17716/19256)
Updating files:  93% (17909/19256)
Updating files:  94% (18101/19256)
Updating files:  95% (18294/19256)
Updating files:  96% (18486/19256)
Updating files:  97% (18679/19256)
Updating files:  98% (18871/19256)
Updating files:  99% (19064/19256)
Updating files: 100% (19256/19256)
Updating files: 100% (19256/19256), done.
HEAD is now at dc02a35b0e Merge pull request #29268 from ocaml/notty-win-avail-false
Merge made by the 'ort' strategy.
 packages/caisar/caisar.5.0/opam | 66 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 66 insertions(+)
 create mode 100644 packages/caisar/caisar.5.0/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:9f4103f7d94b5db36adc57e1243e7aafbc77118b03f3c64c9d783f6875957bd3)
2026-01-23 15:14.05 ---> using "85f72cf1fe4e2d7307f2dbfaf295ab13f00915a95088b79c0422ecbd77383032" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
2026-01-23 15:14.05 ---> using "ad8b14945cf2cfa97b9c2c5e09cfca8ccdf176409ddb00410330bdb6f8af304b" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
[NOTE] Will configure 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.

[WARNING] Recommended dependencies -- most packages rely on these:
  - m4

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
default (at git+file:///home/opam/opam-repository): 
    [INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)

2026-01-23 15:14.05 ---> using "e6a736a5fabf8a17ede1caa5d201e5b7966dd47fabf18aace81eaa3a451a39ce" from cache

/home/opam: (run (shell "opam config report"))
# opam config report
# opam-version      2.0.10 (adc1e1829a2bef5b240746df80341b508290fe3b) 
# self-upgrade      no
# system            arch=x86_64 os=linux os-distribution=debian os-version=13
# solver            builtin-mccs+glpk
# install-criteria  -removed,-count[version-lag,request],-count[version-lag,changed],-changed
# upgrade-criteria  -removed,-count[version-lag,solution],-new
# jobs              71
# repositories      1 (version-controlled)
# pinned            1 (version)
# current-switch    5.4
2026-01-23 15:14.05 ---> using "42831961fa03edc12f2f6d094a94410fb08fafdde56f78c00a8762ca83acb9c6" 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-23 15:14.05 ---> using "e0303ecce13492a44beffc3ccd0fded01db148c68e27e0d8ab2365be439a1036" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-23 15:14.27 ---> saved as "cd7e87db0d7a9f9dfabbf2142cdd0ac410ec30cef896ec94de5969b44acfb79a"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
default (at file:///home/opam/opam-repository): 
    [INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)

2026-01-23 15:14.47 ---> saved as "891d0dec625dbf08dc3815ca0b4bf2544e5be46cce62d8ba5a11e737510bc341"

/home/opam: (run (network host)
                 (shell "opam depext -u || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
The following command needs to be run through "sudo":
    apt-get update
Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
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 trixie/main amd64 Packages [9670 kB]
Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [97.9 kB]
Fetched 9999 kB in 1s (7667 kB/s)
Reading package lists...
# OS package update successful
2026-01-23 15:14.52 ---> saved as "1e32b6e2351b5dd549c221d69b9640baf40f8d7578d12134f1a10cc59a58fe82"

/home/opam: (run (shell "opam pin add -k version -yn caisar.5.0 5.0"))
caisar is now pinned to version 5.0
2026-01-23 15:14.54 ---> saved as "77cb759d15bf188c7529121fad0733dab66719504dca892462c312e05db5d677"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam depext caisar.5.0 && opam reinstall caisar.5.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 \"\\\"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\" != 'caisar.5.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# The following system packages are needed:
libgmp-dev
libprotobuf-dev
pkg-config
protobuf-compiler
The following command needs to be run through "sudo":
    apt-get install -qq -yy libgmp-dev libprotobuf-dev pkg-config protobuf-compiler
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 ... 20653 files and directories currently installed.)
Preparing to unpack .../00-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 .../01-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 .../02-libpkgconf3_1.8.1-4_amd64.deb ...
Unpacking libpkgconf3:amd64 (1.8.1-4) ...
Selecting previously unselected package zlib1g-dev:amd64.
Preparing to unpack .../03-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
Selecting previously unselected package libprotobuf32t64:amd64.
Preparing to unpack .../04-libprotobuf32t64_3.21.12-11_amd64.deb ...
Unpacking libprotobuf32t64:amd64 (3.21.12-11) ...
Selecting previously unselected package libprotobuf-lite32t64:amd64.
Preparing to unpack .../05-libprotobuf-lite32t64_3.21.12-11_amd64.deb ...
Unpacking libprotobuf-lite32t64:amd64 (3.21.12-11) ...
Selecting previously unselected package libprotobuf-dev:amd64.
Preparing to unpack .../06-libprotobuf-dev_3.21.12-11_amd64.deb ...
Unpacking libprotobuf-dev:amd64 (3.21.12-11) ...
Selecting previously unselected package libprotoc32t64:amd64.
Preparing to unpack .../07-libprotoc32t64_3.21.12-11_amd64.deb ...
Unpacking libprotoc32t64:amd64 (3.21.12-11) ...
Selecting previously unselected package pkgconf-bin.
Preparing to unpack .../08-pkgconf-bin_1.8.1-4_amd64.deb ...
Unpacking pkgconf-bin (1.8.1-4) ...
Selecting previously unselected package pkgconf:amd64.
Preparing to unpack .../09-pkgconf_1.8.1-4_amd64.deb ...
Unpacking pkgconf:amd64 (1.8.1-4) ...
Selecting previously unselected package pkg-config:amd64.
Preparing to unpack .../10-pkg-config_1.8.1-4_amd64.deb ...
Unpacking pkg-config:amd64 (1.8.1-4) ...
Selecting previously unselected package protobuf-compiler.
Preparing to unpack .../11-protobuf-compiler_3.21.12-11_amd64.deb ...
Unpacking protobuf-compiler (3.21.12-11) ...
Setting up libprotobuf-lite32t64:amd64 (3.21.12-11) ...
Setting up libprotobuf32t64:amd64 (3.21.12-11) ...
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 zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
Setting up libprotoc32t64:amd64 (3.21.12-11) ...
Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
Setting up protobuf-compiler (3.21.12-11) ...
Setting up pkgconf:amd64 (1.8.1-4) ...
Setting up libprotobuf-dev:amd64 (3.21.12-11) ...
Setting up pkg-config:amd64 (1.8.1-4) ...
Processing triggers for libc-bin (2.41-12) ...
# OS packages installation successful
caisar.5.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
  - install dune                    3.21.0   [required by caisar]
  - install conf-gmp                5        [required by zarith]
  - install ocamlfind               1.9.8    [required by ppx_deriving, fpath, fmt, etc.]
  - install ocamlbuild              0.16.1   [required by fpath, fmt, logs]
  - install conf-protoc             4.4.0    [required by ocaml-protoc-plugin]
  - install cmdliner                2.1.0    [required by caisar]
  - install yojson                  3.0.0    [required by caisar]
  - install stdlib-shims            0.3.0    [required by ppxlib]
  - install sexplib0                v0.17.0  [required by base]
  - install re                      1.14.0   [required by caisar]
  - install ppx_derivers            1.2.1    [required by ppx_deriving]
  - install pp                      2.0.0    [required by dune-private-libs]
  - install ordering                3.20.2   [required by dyn, stdune]
  - install ocamlgraph              2.2.0    [required by caisar]
  - install ocaml-compiler-libs     v0.17.0  [required by ppxlib]
  - install ocaml_intrinsics_kernel v0.17.1  [required by base]
  - install menhirSdk               20230608 [required by menhir]
  - install menhirLib               20230608 [required by caisar]
  - install jane-street-headers     v0.17.0  [required by time_now]
  - install csexp                   1.5.2    [required by dune-configurator, dune-private-libs]
  - install cppo                    1.8.0    [required by ocplib-endian, ppx_deriving]
  - install zarith                  1.13     [required by caisar]
  - install base-bytes              base     [required by csv, ocplib-endian]
  - install topkg                   1.1.1    [required by fpath, fmt, logs]
  - install ocaml-protoc-plugin     4.2.0    [required by caisar]
  - install integers                0.7.0    [required by ctypes]
  - install dyn                     3.20.2   [required by dune-private-libs]
  - install ppxlib                  0.37.0   [required by ppx_deriving_yojson, ppx_deriving_jsonschema, ppx_deriving, etc.]
  - install menhir                  20230608 [required by why3]
  - install dune-configurator       3.21.0   [required by base]
  - install ocplib-endian           1.2      [required by caisar]
  - install csv                     2.4      [required by caisar]
  - install rresult                 0.7.0    [required by bos]
  - install fmt                     0.11.0   [required by caisar]
  - install astring                 0.8.5    [required by fpath]
  - install stdune                  3.20.2   [required by dune-private-libs]
  - install ppxlib_jane             v0.17.4  [required by ppx_globalize, ppx_enumerate, ppx_hash]
  - install ppx_deriving_jsonschema 0.0.4    [required by caisar]
  - install ppx_deriving            6.1.1    [required by caisar]
  - install ctypes                  0.24.0   [required by yaml]
  - install base                    v0.17.3  [required by caisar]
  - install logs                    0.10.0   [required by caisar]
  - install fpath                   0.7.3    [required by caisar]
  - install dune-private-libs       3.20.2   [required by dune-site]
  - install ppx_deriving_yojson     3.10.0   [required by caisar]
  - install stdio                   v0.17.0  [required by caisar]
  - install ppx_sexp_conv           v0.17.1  [required by why3]
  - install ppx_here                v0.17.0  [required by ppx_assert]
  - install ppx_globalize           v0.17.2  [required by ppx_base]
  - install ppx_enumerate           v0.17.0  [required by ppx_base]
  - install ppx_compare             v0.17.0  [required by ppx_base]
  - install ppx_cold                v0.17.0  [required by ppx_base]
  - install bos                     0.2.1    [required by yaml]
  - install dune-site               3.20.2   [required by caisar]
  - install ppx_optcomp             v0.17.1  [required by time_now]
  - install why3                    1.8.2    [required by caisar]
  - install ppx_hash                v0.17.0  [required by ppx_base]
  - install ppx_assert              v0.17.0  [required by jst-config]
  - install yaml                    3.2.0    [required by caisar]
  - install ppx_base                v0.17.0  [required by time_now]
  - install jst-config              v0.17.0  [required by time_now]
  - install ppx_deriving_yaml       0.4.1    [required by caisar]
  - install time_now                v0.17.0  [required by ppx_inline_test]
  - install ppx_inline_test         v0.17.1  [required by caisar]
  - install caisar                  5.0*
===== 65 to install =====

<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[astring.0.8.5] found in cache
[base.v0.17.3] found in cache
[bos.0.2.1] found in cache
[caisar.5.0] found in cache
[cmdliner.2.1.0] found in cache
[cppo.1.8.0] found in cache
[csexp.1.5.2] found in cache
[csv.2.4] found in cache
[ctypes.0.24.0] found in cache
[dune.3.21.0] found in cache
[dune-configurator.3.21.0] found in cache
[dune-private-libs.3.20.2] found in cache
[dune-site.3.20.2] found in cache
[dyn.3.20.2] found in cache
[fmt.0.11.0] found in cache
[fpath.0.7.3] found in cache
[integers.0.7.0] found in cache
[jane-street-headers.v0.17.0] found in cache
[jst-config.v0.17.0] found in cache
[logs.0.10.0] found in cache
[menhir.20230608] found in cache
[menhirLib.20230608] found in cache
[menhirSdk.20230608] found in cache
[ocaml-compiler-libs.v0.17.0] found in cache
[ocaml-protoc-plugin.4.2.0] found in cache
[ocaml_intrinsics_kernel.v0.17.1] found in cache
[ocamlbuild.0.16.1] found in cache
[ocamlfind.1.9.8] found in cache
[ocamlgraph.2.2.0] found in cache
[ocplib-endian.1.2] found in cache
[ordering.3.20.2] found in cache
[pp.2.0.0] found in cache
[ppx_assert.v0.17.0] found in cache
[ppx_base.v0.17.0] found in cache
[ppx_cold.v0.17.0] found in cache
[ppx_compare.v0.17.0] found in cache
[ppx_derivers.1.2.1] found in cache
[ppx_deriving.6.1.1] found in cache
[ppx_deriving_jsonschema.0.0.4] found in cache
[ppx_deriving_yaml.0.4.1] found in cache
[ppx_deriving_yojson.3.10.0] found in cache
[ppx_enumerate.v0.17.0] found in cache
[ppx_globalize.v0.17.2] found in cache
[ppx_hash.v0.17.0] found in cache
[ppx_here.v0.17.0] found in cache
[ppx_inline_test.v0.17.1] found in cache
[ppx_optcomp.v0.17.1] found in cache
[ppx_sexp_conv.v0.17.1] found in cache
[ppxlib.0.37.0] found in cache
[ppxlib_jane.v0.17.4] found in cache
[re.1.14.0] found in cache
[rresult.0.7.0] found in cache
[sexplib0.v0.17.0] found in cache
[stdio.v0.17.0] found in cache
[stdlib-shims.0.3.0] found in cache
[stdune.3.20.2] found in cache
[time_now.v0.17.0] found in cache
[topkg.1.1.1] found in cache
[why3.1.8.2] found in cache
[yaml.3.2.0] found in cache
[yojson.3.0.0] found in cache
[zarith.1.13] found in cache

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-gmp.5
-> installed conf-protoc.4.4.0
-> installed cmdliner.2.1.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed zarith.1.13
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed logs.0.10.0
-> installed bos.0.2.1
-> installed dune.3.21.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed csv.2.4
-> installed jane-street-headers.v0.17.0
-> installed menhirLib.20230608
-> installed menhirSdk.20230608
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ocamlgraph.2.2.0
-> installed ocaml-protoc-plugin.4.2.0
-> installed pp.2.0.0
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed yojson.3.0.0
-> installed ocplib-endian.1.2
-> installed integers.0.7.0
-> installed ordering.3.20.2
-> installed dune-configurator.3.21.0
-> installed dyn.3.20.2
-> installed stdune.3.20.2
-> installed menhir.20230608
-> installed base.v0.17.3
-> installed ctypes.0.24.0
-> installed ppxlib.0.37.0
-> installed stdio.v0.17.0
-> installed dune-private-libs.3.20.2
-> installed yaml.3.2.0
-> installed ppx_cold.v0.17.0
-> installed ppx_deriving_jsonschema.0.0.4
-> installed ppx_here.v0.17.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_deriving.6.1.1
-> installed ppx_optcomp.v0.17.1
-> installed ppx_deriving_yaml.0.4.1
-> installed ppx_enumerate.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_compare.v0.17.0
-> installed dune-site.3.20.2
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_deriving_yojson.3.10.0
-> installed ppx_hash.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_base.v0.17.0
-> installed jst-config.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed why3.1.8.2
-> installed caisar.5.0
Done.
# Run eval $(opam env) to update the current shell environment
2026-01-23 15:18.31 ---> saved as "2eda37001d48b054fbed8c29574ab1814a7ff66266ab42d18e09d5452e23549f"
Job succeeded
2026-01-23 15:19.00: Job succeeded