(not at the head of any monitored branch or PR)
2026-03-17 12:52.02: New job: test MlFront_Thunk.2.4.2.30 with tezt.4.3.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (395113449576622af70540fb22e5d90e18554bdc)
                              on debian-13-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/29530/head" && git reset --hard 39511344
git fetch origin master
git merge --no-edit e589be2bb3f3c3428c9c98a122428f3ad2d44845
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
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 tezt.4.3.0 4.3.0
RUN opam reinstall tezt.4.3.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" != 'tezt.4.3.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall MlFront_Thunk.2.4.2.30; \
    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" != 'MlFront_Thunk.2.4.2.30' && 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 MlFront_Thunk.2.4.2.30) || true
RUN opam reinstall --with-test --verbose MlFront_Thunk.2.4.2.30; \
    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" != 'MlFront_Thunk.2.4.2.30' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-03-17 12:52.02: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-tezt.4.3.0-MlFront_Thunk.2.4.2.30-395113449576622af70540fb22e5d90e18554bdc"
2026-03-17 12:52.02: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
 (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 tezt.4.3.0 4.3.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall tezt.4.3.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\" != 'tezt.4.3.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall MlFront_Thunk.2.4.2.30;\
             \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\" != 'MlFront_Thunk.2.4.2.30' && 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 MlFront_Thunk.2.4.2.30) || true"))
 (run (shell  "opam reinstall --with-test --verbose MlFront_Thunk.2.4.2.30;\
             \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\" != 'MlFront_Thunk.2.4.2.30' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-17 12:52.02: Waiting for resource in pool OCluster
2026-03-17 13:58.45: Waiting for worker…
2026-03-17 14:04.48: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at e589be2bb3 Merge pull request #29546 from johnwhitington/opam-publish-camlpdf.2.9
Merge made by the 'ort' strategy.
 packages/bimage-lwt/bimage-lwt.0.3.0/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.3.1/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.4.0/opam    | 6 +++++-
 packages/caqti-lwt/caqti-lwt.0.11.0/opam     | 4 +++-
 packages/caqti-lwt/caqti-lwt.1.0.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.2.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.3.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.6.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.7.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.8.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.9.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.0.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.1.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.2.4/opam      | 6 +++++-
 packages/fuseau-lwt/fuseau-lwt.0.1/opam      | 6 +++++-
 packages/lambda-term/lambda-term.1.13/opam   | 6 +++++-
 packages/lambda-term/lambda-term.2.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.2/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.3/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0/opam    | 6 +++++-
 packages/lambda-term/lambda-term.3.0.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.1.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.2.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.2/opam  | 6 +++++-
 packages/lwt_domain/lwt_domain.0.1.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.2.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.3.0/opam    | 6 +++++-
 packages/lwt_eio/lwt_eio.0.1/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.2/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.3/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.4/opam            | 7 ++++++-
 packages/lwt_eio/lwt_eio.0.5.1/opam          | 7 ++++++-
 packages/lwt_eio/lwt_eio.0.5/opam            | 7 ++++++-
 packages/lwt_glib/lwt_glib.1.0.1/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.0/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.1/opam        | 6 +++++-
 packages/lwt_log/lwt_log.1.1.0/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.1/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.4/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.3/opam          | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.10/opam | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.6/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.7/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.8/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.9/opam  | 6 +++++-
 packages/mwt/mwt.0.1.0/opam                  | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-1/opam      | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-2/opam      | 6 +++++-
 packages/ocluster/ocluster.0.1/opam          | 4 +++-
 packages/ocluster/ocluster.0.2.1/opam        | 6 +++++-
 packages/ocluster/ocluster.0.2/opam          | 4 +++-
 packages/ocluster/ocluster.0.3.0/opam        | 6 +++++-
 packages/picos/picos.0.3.0/opam              | 6 +++++-
 packages/picos/picos.0.4.0/opam              | 6 +++++-
 packages/picos_lwt/picos_lwt.0.5.0/opam      | 6 +++++-
 packages/picos_lwt/picos_lwt.0.6.0/opam      | 6 +++++-
 packages/tezt/tezt.2.0.0/opam                | 6 +++++-
 packages/tezt/tezt.3.0.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.1/opam                | 4 +++-
 packages/tezt/tezt.4.0.0/opam                | 4 +++-
 packages/tezt/tezt.4.1.0/opam                | 4 +++-
 packages/tezt/tezt.4.2.0/opam                | 4 +++-
 packages/tezt/tezt.4.3.0/opam                | 4 +++-
 84 files changed, 403 insertions(+), 84 deletions(-)

(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
2026-03-17 14:04.53 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" 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-03-17 14:04.53 ---> using "f3ed7bdbef828c9c0b079b10505c5f05c3c9adcca11ce5bf2dac2a4183e099d8" 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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-17 14:04.53 ---> using "5bf6adb7b45bb7e0c215b8f509c71a8dae73a9a2060efcc27df9d4ef6c6d3350" 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=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       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-03-17 14:04.53 ---> using "0546f18fa5979677ee22eb9f2fcf19ab371564e845d317c2c70e41dd97dc22dd" 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-03-17 14:04.53 ---> using "0a7188cbe95f4fe0ff26694977eb8794c975bdb534078da98a06d6c7373289b4" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 14:04.54 ---> using "2ea19ba6f877d7490ae9d28c3ca82f6e95d6422fa89ee35c988285b501b22151" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 14:04.54 ---> using "4b3f38aef2d21c9a37671a782598114b37b94b05f6a6f32ffa66d88a437eafcd" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/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 [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [111 kB]
- Fetched 10.0 MB in 1s (9945 kB/s)
- Reading package lists...
2026-03-17 14:04.54 ---> using "95a3159566682deae2959ada00c816034be3f300ca41bc004797908f9469a557" from cache

/home/opam: (run (shell "opam pin add -k version -yn tezt.4.3.0 4.3.0"))
tezt is now pinned to version 4.3.0
2026-03-17 14:04.54 ---> using "836f10c8c1364f180404c6fa00e8255aa1ab6bb17ef2462477d5a60a207c20d6" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall tezt.4.3.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\" != 'tezt.4.3.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
tezt.4.3.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 20 packages
  - install base-bytes        base           [required by ocplib-endian]
  - install clap              0.3.0          [required by tezt]
  - install cppo              1.8.0          [required by lwt]
  - install csexp             1.5.2          [required by dune-configurator]
  - install cstruct           6.2.0          [required by hex]
  - install dune              3.21.1         [required by tezt]
  - install dune-configurator 3.21.1         [required by lwt]
  - install ezjsonm           1.3.0          [required by tezt]
  - install fmt               0.11.0         [required by cstruct]
  - install hex               1.5.0          [required by ezjsonm]
  - install jsonm             1.0.2          [required by ezjsonm]
  - install lwt               5.9.2          [required by tezt]
  - install ocamlbuild        0.16.1         [required by jsonm]
  - install ocamlfind         1.9.8          [required by jsonm]
  - install ocplib-endian     1.2            [required by lwt]
  - install re                1.14.0         [required by tezt]
  - install sexplib0          v0.17.0        [required by ezjsonm]
  - install tezt              4.3.0 (pinned)
  - install topkg             1.1.1          [required by jsonm]
  - install uutf              1.0.4          [required by ezjsonm]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved clap.0.3.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved cstruct.6.2.0  (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1  (cached)
-> retrieved ezjsonm.1.3.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved hex.1.5.0  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved lwt.5.9.2  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved tezt.4.3.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uutf.1.0.4  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed jsonm.1.0.2
-> installed dune.3.21.1
-> installed csexp.1.5.2
-> installed clap.0.3.0
-> installed cppo.1.8.0
-> installed cstruct.6.2.0
-> installed re.1.14.0
-> installed sexplib0.v0.17.0
-> installed hex.1.5.0
-> installed ocplib-endian.1.2
-> installed ezjsonm.1.3.0
-> installed dune-configurator.3.21.1
-> installed lwt.5.9.2
-> installed tezt.4.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 14:05.20 ---> saved as "f415539d27c3f2b1fd72d7c9e23e23a8627b9604f4b24b79f4ff5b24cc3b19b9"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall MlFront_Thunk.2.4.2.30;\
                        \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\" != 'MlFront_Thunk.2.4.2.30' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
MlFront_Thunk.2.4.2.30 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== downgrade 1 package
  - downgrade sexplib0            v0.17.0 to v0.16.0 [required by base, ppxlib]
=== recompile 2 packages
  - recompile ezjsonm             1.3.0              [uses sexplib0]
  - recompile tezt                4.3.0 (pinned)     [uses ezjsonm]
=== install 30 packages
  - install   base                v0.16.4            [required by ppx_inline_test]
  - install   digestif            1.3.0              [required by MlFront_Thunk]
  - install   eqaf                0.10               [required by digestif]
  - install   fmlib_parse         0.5.11             [required by MlFront_Thunk]
  - install   fmlib_pretty        0.5.11             [required by fmlib_parse]
  - install   fmlib_std           0.5.11             [required by fmlib_parse]
  - install   jane-street-headers v0.16.0            [required by time_now]
  - install   jst-config          v0.16.0            [required by time_now]
  - install   MlFront_Core        2.4.2.30           [required by MlFront_Thunk]
  - install   MlFront_Thunk       2.4.2.30
  - install   MlFront_ZipFile     2.4.2.30           [required by MlFront_Thunk]
  - install   ocaml-compiler-libs v0.12.4            [required by ppxlib]
  - install   ppx_assert          v0.16.0            [required by jst-config]
  - install   ppx_base            v0.16.0            [required by time_now]
  - install   ppx_cold            v0.16.0            [required by ppx_base]
  - install   ppx_compare         v0.16.0            [required by ppx_base]
  - install   ppx_derivers        1.2.1              [required by ppx_deriving]
  - install   ppx_deriving        6.0.3              [required by MlFront_Thunk]
  - install   ppx_enumerate       v0.16.0            [required by ppx_base]
  - install   ppx_globalize       v0.16.0            [required by ppx_base]
  - install   ppx_hash            v0.16.0            [required by ppx_base]
  - install   ppx_here            v0.16.0            [required by ppx_assert]
  - install   ppx_inline_test     v0.16.1            [required by fmlib_parse]
  - install   ppx_optcomp         v0.16.0            [required by time_now]
  - install   ppx_sexp_conv       v0.16.0            [required by ppx_base]
  - install   ppxlib              0.35.0             [required by ppx_deriving]
  - install   stdio               v0.16.0            [required by ppx_optcomp]
  - install   stdlib-shims        0.3.0              [required by ppxlib]
  - install   stringext           1.6.0              [required by MlFront_Core]
  - install   time_now            v0.16.0            [required by ppx_inline_test]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.16.4  (cached)
-> retrieved digestif.1.3.0  (cached)
-> retrieved eqaf.0.10  (cached)
-> retrieved ezjsonm.1.3.0  (cached)
-> retrieved fmlib_parse.0.5.11, fmlib_pretty.0.5.11, fmlib_std.0.5.11  (cached)
-> retrieved jane-street-headers.v0.16.0  (cached)
-> retrieved jst-config.v0.16.0  (cached)
-> retrieved MlFront_Core.2.4.2.30, MlFront_Thunk.2.4.2.30, MlFront_ZipFile.2.4.2.30  (cached)
-> installed eqaf.0.10
-> installed jane-street-headers.v0.16.0
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ppx_assert.v0.16.0  (cached)
-> retrieved ppx_base.v0.16.0  (cached)
-> retrieved ppx_cold.v0.16.0  (cached)
-> retrieved ppx_compare.v0.16.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.0.3  (cached)
-> retrieved ppx_enumerate.v0.16.0  (cached)
-> retrieved ppx_globalize.v0.16.0  (cached)
-> retrieved ppx_hash.v0.16.0  (cached)
-> retrieved ppx_here.v0.16.0  (cached)
-> retrieved ppx_inline_test.v0.16.1  (cached)
-> retrieved ppx_optcomp.v0.16.0  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved stdio.v0.16.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved tezt.4.3.0  (cached)
-> retrieved time_now.v0.16.0  (cached)
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed digestif.1.3.0
-> removed   tezt.4.3.0
-> removed   ezjsonm.1.3.0
-> removed   sexplib0.v0.17.0
-> installed sexplib0.v0.16.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ezjsonm.1.3.0
-> installed MlFront_Core.2.4.2.30
-> installed tezt.4.3.0
-> installed MlFront_ZipFile.2.4.2.30
-> installed base.v0.16.4
-> installed stdio.v0.16.0
-> installed ppxlib.0.35.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_deriving.6.0.3
-> installed ppx_hash.v0.16.0
-> installed ppx_assert.v0.16.0
-> installed ppx_base.v0.16.0
-> installed jst-config.v0.16.0
-> installed time_now.v0.16.0
-> installed ppx_inline_test.v0.16.1
-> installed fmlib_std.0.5.11
-> installed fmlib_pretty.0.5.11
-> installed fmlib_parse.0.5.11
-> installed MlFront_Thunk.2.4.2.30
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 14:05.54 ---> saved as "dbbb94b684ab1418d2b11090eda9cef1fb81e8ac45f7d09e9fd10b39caf4551c"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved MlFront_Thunk.2.4.2.30  (https://opam.ocaml.org/cache)
-> removed   MlFront_Thunk.2.4.2.30
-> installed MlFront_Thunk.2.4.2.30
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 14:06.02 ---> saved as "4aaec5bd78b8e08c25498a3eb26bd2ce9420fecd338389ef5c678cc921aab955"

/home/opam: (run (shell  "opam reinstall --with-test --verbose MlFront_Thunk.2.4.2.30;\
                        \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\" != 'MlFront_Thunk.2.4.2.30' && 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 MlFront_Thunk 2.4.2.30

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [MlFront_Thunk.2.4.2.30: extract]
-> retrieved MlFront_Thunk.2.4.2.30  (cached)
Processing  2/4: [MlFront_Thunk: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "MlFront_Thunk" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/MlFront_Thunk.2.4.2.30)
- (cd _build/default/tests/MlFront_Thunk && ./alacarte_3_5_test.exe)
- [14:06:08.345] [SUCCESS] (1/2) sprsh3 with C1=1
- [14:06:08.345] [SUCCESS] (2/2) sprsh3 with C1=2
- (cd _build/default/tests/MlFront_Thunk && ./alacarte_3_3_test.exe)
- [14:06:08.350] [SUCCESS] (1/3) sprsh1
- [14:06:08.350] [SUCCESS] (2/3) sprsh2 with C1=1
- [14:06:08.350] [SUCCESS] (3/3) sprsh2 with C1=2
- (cd _build/default/tests/MlFront_Thunk && ./alacarte_3_7_test.exe)
- [14:06:08.352] [SUCCESS] (1/4) sprsh1 applicative dependencies of B1
- [14:06:08.352] [SUCCESS] (2/4) sprsh1 applicative dependencies of B2
- [14:06:08.352] [SUCCESS] (3/4) sprsh2 monadic dependencies of B1 when C1=1
- [14:06:08.352] [SUCCESS] (4/4) sprsh2 monadic dependencies of B1 when C1=2
- (cd _build/default/tests/MlFront_Thunk && ./UniqueInsertionListT.exe)
- [14:06:08.356] [SUCCESS] (1/8) empty list
- [14:06:08.356] [SUCCESS] (2/8) singleton list
- [14:06:08.356] [SUCCESS] (3/8) inorder list without |+ operator
- [14:06:08.357] [SUCCESS] (4/8) inorder list
- [14:06:08.357] [SUCCESS] (5/8) revorder list
- [14:06:08.357] [SUCCESS] (6/8) random unique list
- [14:06:08.357] [SUCCESS] (7/8) list with duplicates
- [14:06:08.357] [SUCCESS] (8/8) append
- (cd _build/default/tests/MlFront_Thunk && ./ThunkParsersT.exe)
- [14:06:08.483] [SUCCESS] (1/5) shell parser successes
- [14:06:08.484] [SUCCESS] (2/5) shell syntax parser failures
- [14:06:08.488] [SUCCESS] (3/5) semver parser successes
- [14:06:08.490] [SUCCESS] (4/5) semver syntax parser failures
- [14:06:08.490] [SUCCESS] (5/5) semver semantic parser failures
- (cd _build/default/tests/MlFront_Thunk && ./alacarte_xtraces_test.exe)
- [14:06:08.501] [SUCCESS] (1/1) async writer sprsh3
- (cd _build/default/tests/MlFront_Thunk && ./alacarte_xasync_test.exe)
- [14:06:08.511] [SUCCESS] (1/2) async sprsh3 with C1=1
- [14:06:08.511] [SUCCESS] (2/2) async sprsh3 with C1=2
- (cd _build/default/tests/MlFront_Thunk && ./alacarte_6_4_test.exe)
- [14:06:08.516] [SUCCESS] (1/2) async sprsh3 on cloud shake with C1=1
- [14:06:08.516] [SUCCESS] (2/2) async sprsh3 on cloud shake with C1=2
- (cd _build/default/tests/MlFront_Thunk && ./ThunkAssetT.exe)
- [14:06:08.535] [SUCCESS] (1/3) parse minimal bundle
- [14:06:08.541] [SUCCESS] (2/3) parse basic bundle
- [14:06:08.549] [SUCCESS] (3/3) canonicalize is a fixed point function
- (cd _build/default/tests/MlFront_Thunk && ./ThunkCommandT.exe)
- [14:06:08.557] [SUCCESS] (1/8) command roundtrip: shell get-object TestStd_Std.Test@1.0.0 -s Slot -f file
- [14:06:08.558] [SUCCESS] (2/8) command roundtrip: shell install-object TestStd_Std.Test@1.0.0 -s Slot -f file -m member
- [14:06:08.559] [SUCCESS] (3/8) command roundtrip: shell pipe-object TestStd_Std.Test@1.0.0 -s Slot -x pipe -m member
- [14:06:08.560] [SUCCESS] (4/8) command roundtrip: shell enter-object TestStd_Std.Test@1.0.0 -s Slot
- [14:06:08.560] [SUCCESS] (5/8) command roundtrip: shell get-asset TestStd_Std.Test@1.0.0 -p path -f file -m member
- [14:06:08.561] [SUCCESS] (6/8) command roundtrip: shell get-bundle TestStd_Std.Test@1.0.0 -d dir
- [14:06:08.562] [SUCCESS] (7/8) command roundtrip: shell get-bundle TestStd_Std.Test@1.0.0 -d 't\windows-dir'
- [14:06:08.563] [SUCCESS] (8/8) command roundtrip: shell get-bundle TestStd_Std.Test@1.0.0 -d "target'windows-dir"
- (cd _build/default/tests/MlFront_Thunk && ./ThunkCommandEvalT.exe)
- [14:06:08.571] [SUCCESS] (1/22) eval unknown ${FOO}/bar/${BAZ}/${SPOT}
- [14:06:08.571] [SUCCESS] (2/22) eval slots ${SLOT.Foo}/bar/${SLOT.Baz}/${SLOT.Spot}
- [14:06:08.572] [SUCCESS] (3/22) eval nested slots and dirsep foo${/}bar/${SLOT.Baz}
- [14:06:08.572] [SUCCESS] (4/22) eval term roundtrip: /
- [14:06:08.572] [SUCCESS] (5/22) eval term roundtrip: C:/
- [14:06:08.572] [SUCCESS] (6/22) eval term roundtrip: C:\
- [14:06:08.572] [SUCCESS] (7/22) eval term roundtrip: C:\\
- [14:06:08.572] [SUCCESS] (8/22) eval term roundtrip: C:`\
- [14:06:08.573] [SUCCESS] (9/22) eval term roundtrip: C:\`${SPEEDY}
- [14:06:08.573] [SUCCESS] (10/22) eval term roundtrip: C:\temp\a
- [14:06:08.573] [SUCCESS] (11/22) eval term roundtrip: foo/bar/baz
- [14:06:08.573] [SUCCESS] (12/22) eval term roundtrip: foo${/}bar${/}baz
- [14:06:08.573] [SUCCESS] (13/22) eval term roundtrip: foo${SLOT.Baz}bar
- [14:06:08.573] [SUCCESS] (14/22) eval term roundtrip: f${/}br${SLOT.Bz}${/}z
- [14:06:08.574] [SUCCESS] (15/22) eval term roundtrip: ${HOME}/.config
- [14:06:08.574] [SUCCESS] (16/22) eval term roundtrip: ${CACHE}/thunks
- [14:06:08.574] [SUCCESS] (17/22) eval term roundtrip: ${DATA}/thunks
- [14:06:08.574] [SUCCESS] (18/22) eval term roundtrip: ${CONFIG}/thunks
- [14:06:08.574] [SUCCESS] (19/22) eval term roundtrip: ${STATE}/thunks
- [14:06:08.575] [SUCCESS] (20/22) eval term roundtrip: ${RUNTIME}/thunks
- [14:06:08.575] [SUCCESS] (21/22) eval term roundtrip: ${MOREINCLUDES}/foo
- [14:06:08.575] [SUCCESS] (22/22) eval term roundtrip: myprogram${.exe}
- (cd _build/default/tests/MlFront_Thunk && ./ThunkCommandPosixT.exe)
- [14:06:08.576] [SUCCESS] (1/17) split foo bar baz
- [14:06:08.576] [SUCCESS] (2/17) split foo bar baz each with single quote
- [14:06:08.576] [SUCCESS] (3/17) split foo bar baz each with double quote
- [14:06:08.576] [SUCCESS] (4/17) split foo bar baz each with nested quote
- [14:06:08.576] [SUCCESS] (5/17) split foo bar baz with escaped single quote
- [14:06:08.576] [SUCCESS] (6/17) split foo bar baz with escaped double quote
- [14:06:08.576] [SUCCESS] (7/17) POSIX quote [hi]
- [14:06:08.576] [SUCCESS] (8/17) POSIX quote [hi there]
- [14:06:08.576] [SUCCESS] (9/17) POSIX quote [hi|there]
- [14:06:08.577] [SUCCESS] (10/17) POSIX quote [hi*there]
- [14:06:08.577] [SUCCESS] (11/17) POSIX quote [hi\there]
- [14:06:08.577] [SUCCESS] (12/17) POSIX quote [one ' single quote]
- [14:06:08.577] [SUCCESS] (13/17) POSIX quote [one " double quote]
- [14:06:08.577] [SUCCESS] (14/17) POSIX quote [mixed ' single and " double quote]
- [14:06:08.577] [SUCCESS] (15/17) POSIX quote [mixed \ backslash ' single quote]
- [14:06:08.577] [SUCCESS] (16/17) POSIX quote [mixed \ backslash " double quote]
- [14:06:08.577] [SUCCESS] (17/17) POSIX quote [mixed \ backslash ' single quote " double quote]
- (cd _build/default/tests/MlFront_Thunk && ./ThunkCommandLitVarT.exe)
- [14:06:08.578] [SUCCESS] (1/5) split foo/bar/baz/${SPOT}
- [14:06:08.579] [SUCCESS] (2/5) split foo/bar/baz/${SPOT
- [14:06:08.579] [SUCCESS] (3/5) split foo\bar\baz\${SPOT}
- [14:06:08.579] [SUCCESS] (4/5) split foo/bar/baz/`${SPOT}
- [14:06:08.579] [SUCCESS] (5/5) split ${FOO}/bar/${BAZ}/${SPOT}
- (cd _build/default/tests/MlFront_Thunk && ./ThunkCstT.exe)
- [14:06:08.618] [SUCCESS] (1/3) parse noop CST
- [14:06:08.625] [SUCCESS] (2/3) parse basic CST
- [14:06:08.644] [SUCCESS] (3/3) canonicalize is a fixed point function
- (cd _build/default/tests/MlFront_Thunk && ./ThunkDistT.exe)
- [14:06:08.607] [SUCCESS] (1/3) parse core distribution
- [14:06:08.623] [SUCCESS] (2/3) parse distribution
- [14:06:08.652] [SUCCESS] (3/3) roundtrip distribution
- (cd _build/default/tests/MlFront_Thunk && ./ThunkAstT.exe)
- [14:06:08.668] [SUCCESS] (1/9) eval term roundtrip: example1
- [14:06:08.683] [SUCCESS] (2/9) eval term roundtrip: invalidate bundle files 'SHA256*'
- [14:06:08.698] [SUCCESS] (3/9) eval term roundtrip: invalidate bundle files under FilePath 'a/b/'
- [14:06:08.699] [SUCCESS] (4/9) noop has valid AST
- [14:06:08.699] [SUCCESS] (5/9) unknown NAME_BY_ITSELF
- [14:06:08.700] [SUCCESS] (6/9) unknown NAME=VALUE
- [14:06:08.700] [SUCCESS] (7/9) addenv
- [14:06:08.701] [SUCCESS] (8/9) removeenv
- [14:06:08.701] [SUCCESS] (9/9) prependpath
-> compiled  MlFront_Thunk.2.4.2.30
-> removed   MlFront_Thunk.2.4.2.30
-> installed MlFront_Thunk.2.4.2.30
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 14:06.09 ---> saved as "1d1a30f9057d7c9a85f28de426b90dbf2cc941810747388770b87ed54663dc36"
Job succeeded
2026-03-17 14:06.16: Job succeeded