Build:
  1. 0
2026-01-24 02:24.01: New job: test csexp-query.0.1.0, using opam 2.1
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29273/head (d713f87aee82de4b84991e9395eb0ed6a3bd8479)
                              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/29273/head" && git reset --hard d713f87a
git fetch origin master
git merge --no-edit 8e1b9a49e880d409b435a16017fd056e29befb09
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:423b7147c04b7e40a2168c2d5b3c2e77064aa5b144995d90eb305e6eb6874610
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.1 /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 csexp-query.0.1.0 0.1.0
RUN opam reinstall csexp-query.0.1.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" != 'csexp-query.0.1.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 csexp-query.0.1.0) || true
RUN opam reinstall --with-test --verbose csexp-query.0.1.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" != 'csexp-query.0.1.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-24 02:24.01: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:423b7147c04b7e40a2168c2d5b3c2e77064aa5b144995d90eb305e6eb6874610-csexp-query.0.1.0-d713f87aee82de4b84991e9395eb0ed6a3bd8479"
2026-01-24 02:24.01: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:423b7147c04b7e40a2168c2d5b3c2e77064aa5b144995d90eb305e6eb6874610)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.1 /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 csexp-query.0.1.0 0.1.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall csexp-query.0.1.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\" != 'csexp-query.0.1.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 csexp-query.0.1.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose csexp-query.0.1.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\" != 'csexp-query.0.1.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-24 02:24.01: Waiting for resource in pool OCluster
2026-01-24 12:22.28: Waiting for worker…
2026-01-24 12:28.04: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 8e1b9a49e8 Merge pull request #29269 from mseri/ocurl
Updating 8e1b9a49e8..d713f87aee
Fast-forward
 packages/csexp-query/csexp-query.0.1.0/opam | 37 +++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)
 create mode 100644 packages/csexp-query/csexp-query.0.1.0/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:423b7147c04b7e40a2168c2d5b3c2e77064aa5b144995d90eb305e6eb6874610)
2026-01-24 12:28.09 ---> using "af1ebcbd2c0e8a2a9bd41972ff6b1f2b27bf9dd52d9b45e003eb0eaad274be03" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.1 /usr/bin/opam"))
2026-01-24 12:28.09 ---> using "45f9da0a02aa40d5877bda59ce97bd1a87b541a1f7d3e197e9146adada16323e" 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.

Continue? [Y/n] y
This development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.1, which can't be reverted.
You may want to back it up before going further.

Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-24 12:29.03 ---> saved as "0a612d02125d6695da30cdd6c6802e6ea924eb06e798a8df1d90b069799a9d56"

/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.1.6 (263921263e1f745613e2882745114b7b08f3608b) 
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     
# upgrade-criteria     
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# 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-24 12:29.05 ---> saved as "ffe7a6bce1e69ebdf445f8ab1938e33cd17183a25e858b641383e6f185a1e5ba"

/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-24 12:29.25 ---> saved as "3caa45c937d9eedf8616bab73032573510cd474c300b8f8ce274e72e8ff1f705"

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-24 12:29.46 ---> saved as "b8edb072d70895190d2f8a7bd9b27bf01f90192f3e21b8bfb88fb6f8a34b4a95"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-24 12:29.57 ---> saved as "b2ce5fce844ae4080636c5263aeb99c1694afbf387a186b572d9474d4728e73b"

/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 [9670 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [97.9 kB]
- Fetched 9999 kB in 1s (10.8 MB/s)
- Reading package lists...
- 
2026-01-24 12:29.59 ---> saved as "55b9dac7c92d0b7e984e025e56c478b90681d957f2dbf6c75c8c18372b73ea92"

/home/opam: (run (shell "opam pin add -k version -yn csexp-query.0.1.0 0.1.0"))
csexp-query is now pinned to version 0.1.0
2026-01-24 12:29.59 ---> saved as "78903f826f34b4622c27f2953021ce362032450bbd8fc379a11a879a0d9ddcd2"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall csexp-query.0.1.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\" != 'csexp-query.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
csexp-query.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
  - install dune            3.21.0 [required by csexp-query]
  - install dune-build-info 3.21.0 [required by csexp-query]
  - install csexp           1.5.2  [required by csexp-query]
  - install csexp-query     0.1.0*
===== 4 to install =====

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2  (cached)
-> retrieved csexp-query.0.1.0  (cached)
-> retrieved dune.3.21.0  (cached)
-> retrieved dune-build-info.3.21.0  (cached)
-> installed dune.3.21.0
-> installed csexp.1.5.2
-> installed dune-build-info.3.21.0
-> installed csexp-query.0.1.0
Done.
# Run eval $(opam env) to update the current shell environment
2026-01-24 12:30.32 ---> saved as "b5963464f260debcc9f8e85fcd1993d49a4ec351772802cb790aa8085028d9d2"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test csexp-query.0.1.0) || true"))
The following actions will be performed:
  - install   ppx_derivers        1.2.1   [required by ppxlib]
  - install   dune-configurator   3.21.0  [required by base]
  - install   jane-street-headers v0.16.0 [required by time_now]
  - install   sexplib0            v0.16.0 [required by base]
  - install   re                  1.14.0  [required by ppx_expect]
  - install   ocaml-compiler-libs v0.12.4 [required by ppxlib]
  - install   stdlib-shims        0.3.0   [required by ppxlib]
  - install   base                v0.16.4 [required by ppx_expect]
  - install   ppxlib              0.35.0  [required by ppx_expect]
  - install   stdio               v0.16.0 [required by ppx_expect]
  - install   ppx_sexp_conv       v0.16.0 [required by ppx_base]
  - install   ppx_here            v0.16.0 [required by ppx_expect]
  - install   ppx_globalize       v0.16.0 [required by ppx_base]
  - install   ppx_enumerate       v0.16.0 [required by ppx_base]
  - install   ppx_compare         v0.16.0 [required by ppx_base]
  - install   ppx_cold            v0.16.0 [required by ppx_base]
  - install   ppx_optcomp         v0.16.0 [required by time_now]
  - install   ppx_hash            v0.16.0 [required by ppx_base]
  - install   ppx_assert          v0.16.0 [required by jst-config]
  - install   ppx_base            v0.16.0 [required by time_now]
  - install   jst-config          v0.16.0 [required by time_now]
  - install   time_now            v0.16.0 [required by ppx_inline_test]
  - install   ppx_inline_test     v0.16.1 [required by ppx_expect]
  - install   ppx_expect          v0.16.2 [required by csexp-query]
  - recompile csexp-query         0.1.0*
===== 24 to install | 1 to recompile =====

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.16.4  (https://opam.ocaml.org/cache)
-> retrieved dune-configurator.3.21.0  (https://opam.ocaml.org/cache)
-> retrieved jane-street-headers.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved jst-config.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.12.4  (https://opam.ocaml.org/cache)
-> installed jane-street-headers.v0.16.0
-> retrieved ppx_assert.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_base.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_cold.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_compare.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_enumerate.v0.16.0  (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> retrieved ppx_expect.v0.16.2  (https://opam.ocaml.org/cache)
-> retrieved ppx_globalize.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_hash.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_here.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_inline_test.v0.16.1  (https://opam.ocaml.org/cache)
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved ppx_optcomp.v0.16.0  (https://opam.ocaml.org/cache)
-> installed dune-configurator.3.21.0
-> retrieved ppx_sexp_conv.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppxlib.0.35.0  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved stdio.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved time_now.v0.16.0  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.16.0
-> removed   csexp-query.0.1.0
-> installed re.1.14.0
-> 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_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 ppx_expect.v0.16.2
-> installed csexp-query.0.1.0
Done.
# Run eval $(opam env) to update the current shell environment
2026-01-24 12:31.18 ---> saved as "490fec347e596c223ad454144844d19285b6a6aeb7eb4f89c9b0f8340fd2a74e"

/home/opam: (run (shell  "opam reinstall --with-test --verbose csexp-query.0.1.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\" != 'csexp-query.0.1.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 csexp-query 0.1.0*

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [csexp-query: touch empty]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "touch" "empty" (CWD=/home/opam/.opam/4.14/.opam-switch/build/csexp-query.0.1.0)
Processing  2/4: [csexp-query: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "csexp-query" "-j" "71" "--workspace=empty" (CWD=/home/opam/.opam/4.14/.opam-switch/build/csexp-query.0.1.0)
Processing  2/4: [csexp-query: rm empty]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "rm" "empty" (CWD=/home/opam/.opam/4.14/.opam-switch/build/csexp-query.0.1.0)
Processing  2/4: [csexp-query: touch empty]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "touch" "empty" (CWD=/home/opam/.opam/4.14/.opam-switch/build/csexp-query.0.1.0)
Processing  2/4: [csexp-query: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "csexp-query" "-j" "71" "--workspace=empty" (CWD=/home/opam/.opam/4.14/.opam-switch/build/csexp-query.0.1.0)
Processing  2/4: [csexp-query: rm empty]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "rm" "empty" (CWD=/home/opam/.opam/4.14/.opam-switch/build/csexp-query.0.1.0)
-> compiled  csexp-query.0.1.0
-> removed   csexp-query.0.1.0
-> installed csexp-query.0.1.0
Done.
# Run eval $(opam env) to update the current shell environment
2026-01-24 12:31.30 ---> saved as "598a6407db594b921b4158eb6fac8bb8a9e18a267921203691ca76fbe9c600e7"
Job succeeded
2026-01-24 12:31.37: Job succeeded