Build:
  1. 0
2026-01-24 02:24.01: New job: test csexp-query.0.1.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29273/head (d713f87aee82de4b84991e9395eb0ed6a3bd8479)
                              on debian-13-ocaml-5.0/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-5.0@sha256:a195c4ae24e1606a5d3928fc879cb7596bcaa5c7e43991c1d04fcb33f4b5b835
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 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-5.0@sha256:a195c4ae24e1606a5d3928fc879cb7596bcaa5c7e43991c1d04fcb33f4b5b835-csexp-query.0.1.0-d713f87aee82de4b84991e9395eb0ed6a3bd8479"
2026-01-24 02:24.01: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.0@sha256:a195c4ae24e1606a5d3928fc879cb7596bcaa5c7e43991c1d04fcb33f4b5b835)
 (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 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:18.06: Waiting for worker…
2026-01-24 12:24.40: Got resource from pool OCluster
Building on eumache
All commits already cached
Updating files:  75% (14458/19265)
Updating files:  76% (14642/19265)
Updating files:  77% (14835/19265)
Updating files:  78% (15027/19265)
Updating files:  79% (15220/19265)
Updating files:  80% (15412/19265)
Updating files:  81% (15605/19265)
Updating files:  82% (15798/19265)
Updating files:  83% (15990/19265)
Updating files:  84% (16183/19265)
Updating files:  85% (16376/19265)
Updating files:  86% (16568/19265)
Updating files:  87% (16761/19265)
Updating files:  88% (16954/19265)
Updating files:  89% (17146/19265)
Updating files:  90% (17339/19265)
Updating files:  91% (17532/19265)
Updating files:  92% (17724/19265)
Updating files:  93% (17917/19265)
Updating files:  94% (18110/19265)
Updating files:  95% (18302/19265)
Updating files:  96% (18495/19265)
Updating files:  97% (18688/19265)
Updating files:  98% (18880/19265)
Updating files:  99% (19073/19265)
Updating files: 100% (19265/19265)
Updating files: 100% (19265/19265), done.
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-5.0@sha256:a195c4ae24e1606a5d3928fc879cb7596bcaa5c7e43991c1d04fcb33f4b5b835)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.0@sha256:a195c4ae24e1606a5d3928fc879cb7596bcaa5c7e43991c1d04fcb33f4b5b835' locally
docker.io/ocaml/opam@sha256:a195c4ae24e1606a5d3928fc879cb7596bcaa5c7e43991c1d04fcb33f4b5b835: Pulling from ocaml/opam
281b80c799de: Already exists
00fc4ac50d5e: Already exists
7dc48a314bea: Already exists
8f654937f9e3: Already exists
1240f6fbe8cc: Already exists
f77f967230a1: Already exists
1b4ac3d9a8c2: Already exists
27b61414175d: Already exists
26fabf9b20e0: Already exists
b4426e2c299b: Already exists
9c12df827e83: Already exists
9a5608646906: Already exists
2a83342677ae: Already exists
5cbaedd36b85: Already exists
750a9830ac77: Already exists
400560080670: Already exists
bad13195b6fa: Already exists
b51fe78b498e: Already exists
185ce27e889b: Already exists
8a483dc1e759: Already exists
4de9d6d54a13: Already exists
0c268a22c8a0: Already exists
4f4fb700ef54: Already exists
e61881bc2621: Already exists
c864a4af1ff0: Already exists
42d012f62ad9: Already exists
ccb2ed78fa2e: Already exists
84c22434b2f6: Already exists
18c972827b32: Already exists
4c6dcdff9e80: Already exists
280bf9d33ca6: Already exists
51ce8c29753c: Already exists
5ac80663b9d2: Already exists
93f877c915e3: Already exists
8573ccc6bb69: Already exists
d26192cd75ec: Already exists
c7cce15b715e: Already exists
c998ca7b5976: Already exists
3cd1b61d806b: Already exists
19a26ec5319e: Already exists
b1f6813045f3: Already exists
18c231978432: Already exists
3da6ed2d2457: Already exists
3ca36a125d96: Already exists
ad9ef7bb6e90: Already exists
Digest: sha256:a195c4ae24e1606a5d3928fc879cb7596bcaa5c7e43991c1d04fcb33f4b5b835
Status: Downloaded newer image for ocaml/opam@sha256:a195c4ae24e1606a5d3928fc879cb7596bcaa5c7e43991c1d04fcb33f4b5b835
2026-01-24 12:25.06 ---> using "223e9bec149ca9c63483d3388b783972d9169c8ecee6624d9f6945b430c957cd" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-24 12:25.06 ---> using "eede7f4861ef34eb8a9dad54338c832eae2cc5e0a18f5267635dd4775da186f2" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-24 12:25.22 ---> saved as "14052c8aee8489c360fb13d7a3f28c7ef5c5102fcc4c75c69ba1b8925cdccfbc"

/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                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.0
# invariant            ["ocaml-base-compiler" {= "5.0.0"}]
# compiler-packages    ocaml-base-compiler.5.0.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.0/lib/ocaml/stublibs:/home/opam/.opam/5.0/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.0.0
2026-01-24 12:25.27 ---> saved as "1f15fc6dac740665a1930bd838a3a228482902762a5126bc0ddff20923a56560"

/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:25.37 ---> saved as "ced8b9cebfed13a69c1d95287279b8879515a4931e2e2f78717bb2101ee571dd"

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

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

/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 (6881 kB/s)
- Reading package lists...
- 
2026-01-24 12:26.06 ---> saved as "bdce6546d2aa891a9d899bb573adefadc8145d41bcd120dd7897187169cd8d7a"

/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:26.07 ---> saved as "c5bce62a72552f62bf518e44907a1da17e0211e70bd15ce15ca1bd2f566a01d3"

/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 4 packages
  - install csexp           1.5.2          [required by csexp-query]
  - install csexp-query     0.1.0 (pinned)
  - install dune            3.21.0         [required by csexp-query]
  - install dune-build-info 3.21.0         [required by csexp-query]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2  (cached)
-> retrieved csexp-query.0.1.0  (https://github.com/jberdine/csexp-query/releases/download/0.1.0/csexp-query-0.1.0.tbz)
-> retrieved dune.3.21.0, 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.
# To update the current shell environment, run: eval $(opam env)
2026-01-24 12:26.46 ---> saved as "6176934453bbc88c716ff3cfc369d4ed8efe9f6943e5e269544d3ee34a827c9d"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test csexp-query.0.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile csexp-query         0.1.0 (pinned)
=== install 24 packages
  - install   base                v0.16.4        [required by ppx_expect]
  - install   dune-configurator   3.21.0         [required by base]
  - install   jane-street-headers v0.16.0        [required by time_now]
  - install   jst-config          v0.16.0        [required by time_now]
  - 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 ppxlib]
  - install   ppx_enumerate       v0.16.0        [required by ppx_base]
  - install   ppx_expect          v0.16.2        [required by csexp-query]
  - 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_expect]
  - install   ppx_inline_test     v0.16.1        [required by ppx_expect]
  - 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_expect]
  - install   re                  1.14.0         [required by ppx_expect]
  - install   sexplib0            v0.16.0        [required by base]
  - install   stdio               v0.16.0        [required by ppx_expect]
  - install   stdlib-shims        0.3.0          [required by ppxlib]
  - install   time_now            v0.16.0        [required by ppx_inline_test]

<><> 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)
-> installed ppx_derivers.1.2.1
-> retrieved ppx_enumerate.v0.16.0  (https://opam.ocaml.org/cache)
-> 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)
-> retrieved ppx_optcomp.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_sexp_conv.v0.16.0  (https://opam.ocaml.org/cache)
-> installed ocaml-compiler-libs.v0.12.4
-> 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)
-> installed dune-configurator.3.21.0
-> 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.
# To update the current shell environment, run: eval $(opam env)
2026-01-24 12:27.37 ---> saved as "93545d850880ae6ac6028a4f8dba076f32fe1ff009c68dca1b8afb8e7537b6c4"

/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 1 package
  - recompile csexp-query 0.1.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [csexp-query: touch empty]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "touch" "empty" (CWD=/home/opam/.opam/5.0/.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/5.0/.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/5.0/.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/5.0/.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/5.0/.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/5.0/.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.
# To update the current shell environment, run: eval $(opam env)
2026-01-24 12:27.45 ---> saved as "cce1f670c1560a5314439f437552f1e7bce3fa0018ef1587d577bbc7588a05fc"
Job succeeded
2026-01-24 12:27.52: Job succeeded