(not at the head of any monitored branch or PR)
2026-04-08 12:35.25: New job: test ppx_bin_there.0.1.12, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29677/head (14cf1d5d7d35bdd290559dd76592f432c2d3ef63)
                              on archlinux-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/29677/head" && git reset --hard 14cf1d5d
git fetch origin master
git merge --no-edit 6b534cc83dbfe7a87165d088a7003b5a0cd906f1
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-5.4@sha256:c961b0508941255e2c521559e83d1e6bea267e93de2173604f99cbe829d74ae7
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 ppx_bin_there.0.1.12 0.1.12
RUN opam reinstall ppx_bin_there.0.1.12; \
    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 "\"archlinux\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ppx_bin_there.0.1.12' && 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 ppx_bin_there.0.1.12) || true
RUN opam reinstall --with-test --verbose ppx_bin_there.0.1.12; \
    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 "\"archlinux\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ppx_bin_there.0.1.12' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-04-08 12:35.25: Using cache hint "ocaml/opam:archlinux-ocaml-5.4@sha256:c961b0508941255e2c521559e83d1e6bea267e93de2173604f99cbe829d74ae7-ppx_bin_there.0.1.12-14cf1d5d7d35bdd290559dd76592f432c2d3ef63"
2026-04-08 12:35.25: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-5.4@sha256:c961b0508941255e2c521559e83d1e6bea267e93de2173604f99cbe829d74ae7)
 (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 ppx_bin_there.0.1.12 0.1.12"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ppx_bin_there.0.1.12;\
             \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 \"\\\"archlinux\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ppx_bin_there.0.1.12' && 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 ppx_bin_there.0.1.12) || true"))
 (run (shell  "opam reinstall --with-test --verbose ppx_bin_there.0.1.12;\
             \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 \"\\\"archlinux\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ppx_bin_there.0.1.12' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-08 12:35.25: Waiting for resource in pool OCluster
2026-04-08 12:35.25: Waiting for worker…
2026-04-08 12:35.27: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files:  88% (16530/18641)
Updating files:  89% (16591/18641)
Updating files:  90% (16777/18641)
Updating files:  91% (16964/18641)
Updating files:  92% (17150/18641)
Updating files:  93% (17337/18641)
Updating files:  94% (17523/18641)
Updating files:  95% (17709/18641)
Updating files:  96% (17896/18641)
Updating files:  97% (18082/18641)
Updating files:  98% (18269/18641)
Updating files:  99% (18455/18641)
Updating files: 100% (18641/18641)
Updating files: 100% (18641/18641), done.
HEAD is now at 6b534cc83d Merge pull request #29654 from astrada/gdfuse082
Updating 6b534cc83d..14cf1d5d7d
Fast-forward
 packages/bin_there/bin_there.0.1.12/opam         | 28 ++++++++++++++++++++++
 packages/ppx_bin_there/ppx_bin_there.0.1.12/opam | 30 ++++++++++++++++++++++++
 2 files changed, 58 insertions(+)
 create mode 100644 packages/bin_there/bin_there.0.1.12/opam
 create mode 100644 packages/ppx_bin_there/ppx_bin_there.0.1.12/opam

(from ocaml/opam:archlinux-ocaml-5.4@sha256:c961b0508941255e2c521559e83d1e6bea267e93de2173604f99cbe829d74ae7)
Unable to find image 'ocaml/opam:archlinux-ocaml-5.4@sha256:c961b0508941255e2c521559e83d1e6bea267e93de2173604f99cbe829d74ae7' locally
docker.io/ocaml/opam@sha256:c961b0508941255e2c521559e83d1e6bea267e93de2173604f99cbe829d74ae7: Pulling from ocaml/opam
976a2c87c6cd: Pulling fs layer
dfb366f7addb: Pulling fs layer
ce670089a512: Pulling fs layer
c288a0693cd2: Pulling fs layer
976a2c87c6cd: Waiting
3f066c94c6cc: Pulling fs layer
dfb366f7addb: Waiting
ce670089a512: Waiting
deab2dde3ae8: Pulling fs layer
c288a0693cd2: Waiting
bda86218b3d8: Pulling fs layer
3f066c94c6cc: Waiting
b2b50e711bb4: Pulling fs layer
3e1f868a84b7: Pulling fs layer
bda86218b3d8: Waiting
b2b50e711bb4: Waiting
8620732fda60: Pulling fs layer
3e1f868a84b7: Waiting
c66a9fc60b7a: Pulling fs layer
ee91cba96ec2: Pulling fs layer
8620732fda60: Waiting
ec9984fb9321: Pulling fs layer
ee91cba96ec2: Waiting
c66a9fc60b7a: Waiting
9bea11ba4322: Pulling fs layer
ec9984fb9321: Waiting
4f4fb700ef54: Pulling fs layer
9bea11ba4322: Waiting
e5b9754a091c: Pulling fs layer
4f4fb700ef54: Waiting
c36935dd69f8: Pulling fs layer
950560d034c6: Pulling fs layer
e5b9754a091c: Waiting
c36935dd69f8: Waiting
703daed0c94d: Pulling fs layer
623014974f76: Pulling fs layer
950560d034c6: Waiting
f6198f651628: Pulling fs layer
703daed0c94d: Waiting
623014974f76: Waiting
1dff6ae9be18: Pulling fs layer
9ec6f8d8eb6e: Pulling fs layer
1dff6ae9be18: Waiting
49e9a91610b7: Pulling fs layer
f6198f651628: Waiting
27af71616d64: Pulling fs layer
d8efdd305544: Pulling fs layer
2567b9079c82: Pulling fs layer
49e9a91610b7: Waiting
734b12f61dc6: Pulling fs layer
afbc65f77286: Pulling fs layer
2567b9079c82: Waiting
dacbc6b21e36: Pulling fs layer
60cf6ac0a5d7: Pulling fs layer
a589fdb23ea7: Pulling fs layer
20f5b19e9690: Pulling fs layer
d54119fc44da: Pulling fs layer
45041c651ae0: Pulling fs layer
27af71616d64: Waiting
a589fdb23ea7: Waiting
60cf6ac0a5d7: Waiting
9f08de39f8b1: Pulling fs layer
d54119fc44da: Waiting
6857ab024e86: Pulling fs layer
20f5b19e9690: Waiting
dacbc6b21e36: Waiting
41d00dfa594c: Pulling fs layer
9f08de39f8b1: Waiting
45041c651ae0: Waiting
afbc65f77286: Waiting
41d00dfa594c: Waiting
6857ab024e86: Waiting
d8efdd305544: Waiting
dfb366f7addb: Verifying Checksum
dfb366f7addb: Download complete
c288a0693cd2: Verifying Checksum
c288a0693cd2: Download complete
976a2c87c6cd: Verifying Checksum
976a2c87c6cd: Download complete
3f066c94c6cc: Verifying Checksum
3f066c94c6cc: Download complete
deab2dde3ae8: Verifying Checksum
deab2dde3ae8: Download complete
bda86218b3d8: Verifying Checksum
bda86218b3d8: Download complete
ce670089a512: Verifying Checksum
ce670089a512: Download complete
3e1f868a84b7: Verifying Checksum
3e1f868a84b7: Download complete
b2b50e711bb4: Verifying Checksum
b2b50e711bb4: Download complete
8620732fda60: Download complete
ee91cba96ec2: Download complete
ec9984fb9321: Download complete
9bea11ba4322: Verifying Checksum
9bea11ba4322: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
e5b9754a091c: Verifying Checksum
e5b9754a091c: Download complete
c36935dd69f8: Verifying Checksum
c36935dd69f8: Download complete
950560d034c6: Verifying Checksum
950560d034c6: Download complete
703daed0c94d: Download complete
623014974f76: Verifying Checksum
623014974f76: Download complete
f6198f651628: Verifying Checksum
f6198f651628: Download complete
1dff6ae9be18: Download complete
9ec6f8d8eb6e: Verifying Checksum
9ec6f8d8eb6e: Download complete
49e9a91610b7: Verifying Checksum
49e9a91610b7: Download complete
27af71616d64: Verifying Checksum
27af71616d64: Download complete
d8efdd305544: Download complete
2567b9079c82: Download complete
afbc65f77286: Verifying Checksum
afbc65f77286: Download complete
c66a9fc60b7a: Verifying Checksum
c66a9fc60b7a: Download complete
60cf6ac0a5d7: Verifying Checksum
60cf6ac0a5d7: Download complete
a589fdb23ea7: Download complete
20f5b19e9690: Verifying Checksum
20f5b19e9690: Download complete
d54119fc44da: Verifying Checksum
d54119fc44da: Download complete
976a2c87c6cd: Pull complete
dfb366f7addb: Pull complete
45041c651ae0: Verifying Checksum
45041c651ae0: Download complete
9f08de39f8b1: Download complete
ce670089a512: Pull complete
dacbc6b21e36: Verifying Checksum
dacbc6b21e36: Download complete
c288a0693cd2: Pull complete
6857ab024e86: Verifying Checksum
6857ab024e86: Download complete
3f066c94c6cc: Pull complete
41d00dfa594c: Verifying Checksum
41d00dfa594c: Download complete
deab2dde3ae8: Pull complete
bda86218b3d8: Pull complete
b2b50e711bb4: Pull complete
3e1f868a84b7: Pull complete
8620732fda60: Pull complete
c66a9fc60b7a: Pull complete
ee91cba96ec2: Pull complete
ec9984fb9321: Pull complete
9bea11ba4322: Pull complete
4f4fb700ef54: Pull complete
e5b9754a091c: Pull complete
c36935dd69f8: Pull complete
950560d034c6: Pull complete
703daed0c94d: Pull complete
623014974f76: Pull complete
f6198f651628: Pull complete
1dff6ae9be18: Pull complete
9ec6f8d8eb6e: Pull complete
49e9a91610b7: Pull complete
27af71616d64: Pull complete
d8efdd305544: Pull complete
2567b9079c82: Pull complete
734b12f61dc6: Verifying Checksum
734b12f61dc6: Download complete
734b12f61dc6: Pull complete
afbc65f77286: Pull complete
dacbc6b21e36: Pull complete
60cf6ac0a5d7: Pull complete
a589fdb23ea7: Pull complete
20f5b19e9690: Pull complete
d54119fc44da: Pull complete
45041c651ae0: Pull complete
9f08de39f8b1: Pull complete
6857ab024e86: Pull complete
41d00dfa594c: Pull complete
Digest: sha256:c961b0508941255e2c521559e83d1e6bea267e93de2173604f99cbe829d74ae7
Status: Downloaded newer image for ocaml/opam@sha256:c961b0508941255e2c521559e83d1e6bea267e93de2173604f99cbe829d74ae7
2026-04-08 12:36.19 ---> using "3ed9aa2109f8fa572faa446f1877aad08ba4c70e5a3e9cf2dcfe38865c61b85c" 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-04-08 12:36.19 ---> using "77fc8dc20f1ac010286ab2e66d51ee828b957735d36e82c6b3cb7587d47a2a88" 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-04-08 12:36.19 ---> using "a3614564aeab03c2e73e937b94dbccb5d38722ae46da06617df17799a59573a2" 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=arch os-version=20260329.0.507017
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages    ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.1
2026-04-08 12:36.19 ---> using "65c184f7ea26a1d9a2c066679f15739185c5ddc6768a7be9bc8aab37fa8f2f11" 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-04-08 12:36.19 ---> using "e1f77de7735330823ba39a986a19f0f39f1261d1165a0f4975b58dccfb2a7451" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-08 12:36.27 ---> saved as "63d270888c4cf9864fe94c0c1fd7912ec71f93ffe450bb710281b6ce741ba402"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-08 12:36.48 ---> saved as "6301e80284ec9cce23269c4281521d984fd5e1306aaa6bee4ac429e6a6873993"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
-  core downloading...
-  extra downloading...
2026-04-08 12:36.48 ---> saved as "012073a3096a1bf95c59db5f53f5b2a0e5bae5092cc61229e7b960852eeef81d"

/home/opam: (run (shell "opam pin add -k version -yn ppx_bin_there.0.1.12 0.1.12"))
ppx_bin_there is now pinned to version 0.1.12
2026-04-08 12:36.49 ---> saved as "2435bd758df249264e4fd99e676973aafe5c8aac4c6aaf5159dff704b8a1205c"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ppx_bin_there.0.1.12;\
                        \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 \"\\\"archlinux\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ppx_bin_there.0.1.12' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ppx_bin_there.0.1.12 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 packages
  ∗ bin_there           0.1.12          [required by ppx_bin_there]
  ∗ dune                3.22.1          [required by ppx_bin_there]
  ∗ ocaml-compiler-libs v0.17.0         [required by ppxlib]
  ∗ ppx_bin_there       0.1.12 (pinned)
  ∗ ppx_derivers        1.2.1           [required by ppxlib]
  ∗ ppxlib              0.38.0          [required by ppx_bin_there]
  ∗ sexplib0            v0.17.0         [required by ppxlib]
  ∗ stdlib-shims        0.3.0           [required by ppxlib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved bin_there.0.1.12  (cached)
⬇ retrieved dune.3.22.1  (cached)
⬇ retrieved ocaml-compiler-libs.v0.17.0  (cached)
⬇ retrieved ppx_bin_there.0.1.12  (https://gitlab.com/api/v4/projects/81089450/packages/generic/ppx_bin_there/0.1.12/ppx_bin_there-0.1.12.tar.gz)
⬇ retrieved ppx_derivers.1.2.1  (cached)
⬇ retrieved ppxlib.0.38.0  (cached)
⬇ retrieved sexplib0.v0.17.0  (cached)
⬇ retrieved stdlib-shims.0.3.0  (cached)
∗ installed dune.3.22.1
∗ installed ppx_derivers.1.2.1
∗ installed stdlib-shims.0.3.0
∗ installed bin_there.0.1.12
∗ installed sexplib0.v0.17.0
∗ installed ocaml-compiler-libs.v0.17.0
∗ installed ppxlib.0.38.0
∗ installed ppx_bin_there.0.1.12
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-08 12:38.01 ---> saved as "f166a9e36f2400591d3fa9279b13ee3ccda860508bc5ecd8fdaf31ea01dbef9e"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test ppx_bin_there.0.1.12) || true"))
The following actions will be performed:
=== recompile 1 package
  ↻ ppx_bin_there      0.1.12 (pinned)
=== install 10 packages
  ∗ alcotest           1.9.1           [required by ppx_bin_there]
  ∗ astring            0.8.5           [required by alcotest]
  ∗ cmdliner           2.1.0           [required by alcotest]
  ∗ fmt                0.11.0          [required by alcotest]
  ∗ ocaml-syntax-shims 1.0.0           [required by alcotest]
  ∗ ocamlbuild         0.16.1          [required by fmt, astring, uutf]
  ∗ ocamlfind          1.9.8           [required by fmt, astring, uutf]
  ∗ re                 1.14.0          [required by alcotest]
  ∗ topkg              1.1.1           [required by fmt, astring, uutf]
  ∗ uutf               1.0.4           [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
⬇ retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
⬇ retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
⬇ retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
⬇ retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
⬇ retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
⬇ retrieved ocamlfind.1.9.8  (https://opam.ocaml.org/cache)
⬇ retrieved re.1.14.0  (https://opam.ocaml.org/cache)
⬇ retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
⬇ retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
∗ installed ocaml-syntax-shims.1.0.0
∗ installed re.1.14.0
∗ installed ocamlfind.1.9.8
∗ installed cmdliner.2.1.0
⊘ removed   ppx_bin_there.0.1.12
∗ installed ocamlbuild.0.16.1
∗ installed topkg.1.1.1
∗ installed uutf.1.0.4
∗ installed fmt.0.11.0
∗ installed astring.0.8.5
∗ installed alcotest.1.9.1
∗ installed ppx_bin_there.0.1.12
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-08 12:38.36 ---> saved as "ca601257a900ae252e4b71308af210fad7c66752afa4d5f2c979d89791a5d192"

/home/opam: (run (shell  "opam reinstall --with-test --verbose ppx_bin_there.0.1.12;\
                        \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 \"\\\"archlinux\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ppx_bin_there.0.1.12' && 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
  ↻ ppx_bin_there 0.1.12 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [ppx_bin_there: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ppx_bin_there" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/ppx_bin_there.0.1.12)
Processing  2/4: [ppx_bin_there: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "ppx_bin_there" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/ppx_bin_there.0.1.12)
- (cd _build/default/test && ./test_ppx_bin_there.exe)
- Testing `ppx_bin_there'.
- This run has ID `PYCIJ5NY'.
- 
-   [OK]          derived          0   point.
-   [OK]          derived          1   point no header.
-   [OK]          derived          2   color.
-   [OK]          derived          3   color tags.
-   [OK]          derived          4   shape.
-   [OK]          derived          5   shape wire.
-   [OK]          derived          6   singleton.
-   [OK]          derived          7   singleton no header.
-   [OK]          derived          8   unit_like.
-   [OK]          derived          9   unit_like no header.
-   [OK]          derived         10   my_int.
-   [OK]          derived         11   box.
-   [OK]          derived         12   pair.
-   [OK]          derived         13   polvar.
-   [OK]          derived         14   polvar hash header.
-   [OK]          derived         15   sharing.
-   [OK]          derived         16   bp alias.
-   [OK]          derived         17   module sig+impl.
-   [OK]          derived         18   mutual rec types.
-   [OK]          derived         19   mutual rec modules.
-   [OK]          derived         20   type alias.
-   [OK]          derived         21   parametric alias.
-   [OK]          derived         22   inline record single.
-   [OK]          derived         23   inline record multi.
-   [OK]          derived         24   polvar record field.
-   [OK]          derived         25   polvar inheritance.
-   [OK]          derived         26   polvar inheritance field.
-   [OK]          derived         27   recursive tree.
-   [OK]          derived         28   single ctor parametric.
-   [OK]          derived         29   parametric sig+impl.
-   [OK]          derived         30   parametric tuple alias.
-   [OK]          derived         31   concrete triple alias.
-   [OK]          derived         32   bracket alias.
-   [OK]          derived         33   mutually recursive bracket.
-   [OK]          derived         34   tuple arities 4-9.
-   [OK]          derived         35   tok bracket.
-   [OK]          derived         36   lazy_t.
-   [OK]          derived         37   Lazy.t.
-   [OK]          derived         38   unknown tag variant.
-   [OK]          derived         39   unknown tag polvar.
-   [OK]          derived         40   qualified alias.
-   [OK]          derived         41   phantom alias.
-   [OK]          derived         42   renamed type variable.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ppx_bin_there.0.1.12/_build/default/test/_build/_tests/ppx_bin_there'.
- Test Successful in 0.004s. 43 tests run.
λ compiled  ppx_bin_there.0.1.12
⊘ removed   ppx_bin_there.0.1.12
∗ installed ppx_bin_there.0.1.12
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-08 12:38.46 ---> saved as "cd01a38e576cd5497ae34e2db458a48ce8a53370683f83eeebc9ebd71cb2e18f"
Job succeeded
2026-04-08 12:38.55: Job succeeded