Build:
  1. 0
2026-02-17 18:08.37: New job: test oq.1.0.3, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29407/head (6e32489f2089b0482c5eca0092c9023d2f289906)
                              on debian-13-ocaml-5.4-afl/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/29407/head" && git reset --hard 6e32489f
git fetch origin master
git merge --no-edit 3b501ac1d7ca1c4c2a0a9d24fe18453007b1c41a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4-afl@sha256:ad0e7e557d8fcb19a12ef36da3b8e58df0a230c3ddd2c803744f44b9487be6aa
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 oq.1.0.3 1.0.3
RUN opam reinstall oq.1.0.3; \
    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" != 'oq.1.0.3' && 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 oq.1.0.3) || true
RUN opam reinstall --with-test --verbose oq.1.0.3; \
    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" != 'oq.1.0.3' && 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-02-17 18:08.37: Using cache hint "ocaml/opam:debian-13-ocaml-5.4-afl@sha256:ad0e7e557d8fcb19a12ef36da3b8e58df0a230c3ddd2c803744f44b9487be6aa-oq.1.0.3-6e32489f2089b0482c5eca0092c9023d2f289906"
2026-02-17 18:08.37: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4-afl@sha256:ad0e7e557d8fcb19a12ef36da3b8e58df0a230c3ddd2c803744f44b9487be6aa)
 (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 oq.1.0.3 1.0.3"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall oq.1.0.3;\
             \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\" != 'oq.1.0.3' && 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 oq.1.0.3) || true"))
 (run (shell  "opam reinstall --with-test --verbose oq.1.0.3;\
             \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\" != 'oq.1.0.3' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-02-17 18:08.37: Waiting for resource in pool OCluster
2026-02-17 18:08.37: Waiting for worker…
2026-02-17 18:08.39: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 3b501ac1d7 Merge pull request #29383 from thatportugueseguy/release-passage-0.3.3
Merge made by the 'ort' strategy.
 packages/oq/oq.1.0.3/opam | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 packages/oq/oq.1.0.3/opam

(from ocaml/opam:debian-13-ocaml-5.4-afl@sha256:ad0e7e557d8fcb19a12ef36da3b8e58df0a230c3ddd2c803744f44b9487be6aa)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4-afl@sha256:ad0e7e557d8fcb19a12ef36da3b8e58df0a230c3ddd2c803744f44b9487be6aa' locally
docker.io/ocaml/opam@sha256:ad0e7e557d8fcb19a12ef36da3b8e58df0a230c3ddd2c803744f44b9487be6aa: Pulling from ocaml/opam
ef235bf1a09a: Already exists
63ff7b8f62f7: Already exists
d97a3c4f37e5: Already exists
998bb0585113: Already exists
94828ef2bfe2: Already exists
3dd00a8a6b86: Already exists
1816e5253dcb: Already exists
e502341419e0: Already exists
7741a83685ca: Already exists
713e411af135: Already exists
5d3b19c24612: Already exists
29b7cdb1fafb: Already exists
015412fc79ef: Already exists
bbb53f8a3678: Already exists
e4b20c98bd52: Already exists
09103d92a91d: Already exists
042e26f97610: Already exists
1ee2a20e6c74: Already exists
83c7c07ee7d9: Already exists
4e9ca69a996f: Already exists
3e6921c56ad6: Already exists
c16273f75711: Already exists
4f4fb700ef54: Already exists
4876e5de169a: Already exists
924fedb47896: Already exists
eab21cd4733f: Already exists
2a28c5a72f80: Already exists
a565bce96cc2: Already exists
1b84da29c428: Already exists
a99c55249385: Already exists
5043a4afe7d4: Already exists
e596723297c6: Already exists
9233633d4448: Already exists
f0cc407c3599: Already exists
5737f0b22df8: Already exists
757775b7c837: Already exists
2d2d616aaf57: Already exists
b240f925287f: Already exists
a05b65e9dec1: Already exists
752e118a24d2: Already exists
6f4175cf580f: Already exists
64f003a48a27: Pulling fs layer
724e3e4cac19: Pulling fs layer
45402f6ea9da: Pulling fs layer
c18025f9bbe8: Pulling fs layer
d4f2e5bc4d05: Pulling fs layer
a75d4c303033: Pulling fs layer
323efe234222: Pulling fs layer
323efe234222: Waiting
a75d4c303033: Waiting
c18025f9bbe8: Waiting
d4f2e5bc4d05: Waiting
64f003a48a27: Verifying Checksum
64f003a48a27: Download complete
64f003a48a27: Pull complete
45402f6ea9da: Verifying Checksum
45402f6ea9da: Download complete
724e3e4cac19: Download complete
724e3e4cac19: Pull complete
d4f2e5bc4d05: Download complete
45402f6ea9da: Pull complete
323efe234222: Verifying Checksum
323efe234222: Download complete
a75d4c303033: Verifying Checksum
a75d4c303033: Download complete
c18025f9bbe8: Verifying Checksum
c18025f9bbe8: Download complete
c18025f9bbe8: Pull complete
d4f2e5bc4d05: Pull complete
a75d4c303033: Pull complete
323efe234222: Pull complete
Digest: sha256:ad0e7e557d8fcb19a12ef36da3b8e58df0a230c3ddd2c803744f44b9487be6aa
Status: Downloaded newer image for ocaml/opam@sha256:ad0e7e557d8fcb19a12ef36da3b8e58df0a230c3ddd2c803744f44b9487be6aa
2026-02-17 18:09.18 ---> using "c06a5da7079dbda25323dda62326f4652da9ebb75c3602e4cbf5b92981bc9cc7" 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-02-17 18:09.18 ---> using "5f07c56524fed37eb660d0103793f60c209eca9b706244655d425946344b4486" 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-02-17 18:09.18 ---> using "438395dd97618048252db3ccac9cc21ae7a31d9d2215eab2e54813cdc0afcf32" 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       5.4
# invariant            ["ocaml-variants" {= "5.4.0+options"}]
# compiler-packages    ocaml-compiler.5.4.0, ocaml-option-afl.1, ocaml-options-only-afl.1, ocaml-variants.5.4.0+options
# 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.0+options+afl
2026-02-17 18:09.18 ---> using "45955885821a64e90965947aebc4db1fba1c8225cb879dd65557da489341e3b6" 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-02-17 18:09.18 ---> using "f6fc6b666c1f47078048cb48aeda1dda65c0bdfb2ee8d0c578efdefd41b11eb1" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-02-17 18:09.26 ---> saved as "436f2a2db210ee0ffc9874e708be18e1800e9bce7832ec4f6a12ec7e1d83bf72"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-17 18:09.43 ---> saved as "775e47624f2523d6206e8ed939a1cbbf03573021f23b231b146a4ebb66b5af1c"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- 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-security trixie-security/main amd64 Packages [108 kB]
- Fetched 198 kB in 0s (1713 kB/s)
- Reading package lists...
2026-02-17 18:09.44 ---> saved as "cde6a95410b7c0cff3d5bb4ed093ba836f105bc9ce64fd6bfd7ddb25e2fe0d3a"

/home/opam: (run (shell "opam pin add -k version -yn oq.1.0.3 1.0.3"))
oq is now pinned to version 1.0.3
2026-02-17 18:09.45 ---> saved as "749c98aa6ed4a8c42dd6cc780ce2173d8a365dbe2d9952e19bf7b5205ad3dc28"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall oq.1.0.3;\
                        \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\" != 'oq.1.0.3' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
oq.1.0.3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 78 packages
  - install base                        v0.17.3        [required by oq]
  - install base_bigstring              v0.17.0        [required by core]
  - install base_quickcheck             v0.17.1        [required by core]
  - install bin_prot                    v0.17.0-1      [required by core]
  - install capitalization              v0.17.0        [required by ppx_string_conv]
  - install cmdliner                    2.1.0          [required by oq]
  - install conf-g++                    1.0            [required by re2]
  - install core                        v0.17.1        [required by oq]
  - install core_kernel                 v0.17.0        [required by core_unix]
  - install core_unix                   v0.17.1        [required by oq]
  - install csexp                       1.5.2          [required by dune-configurator]
  - install dune                        3.21.1         [required by oq]
  - install dune-configurator           3.21.1         [required by base]
  - install expect_test_helpers_core    v0.17.0        [required by core_unix]
  - install fieldslib                   v0.17.0        [required by core]
  - install gel                         v0.17.0        [required by ppx_diff]
  - install int_repr                    v0.17.0        [required by base_bigstring, core_kernel]
  - install jane-street-headers         v0.17.0        [required by core, core_unix]
  - install jane_rope                   v0.17.0        [required by re2]
  - install jst-config                  v0.17.0        [required by core, core_unix]
  - install num                         1.6            [required by sexplib]
  - install ocaml-compiler-libs         v0.17.0        [required by ppxlib]
  - install ocaml_intrinsics_kernel     v0.17.1        [required by base]
  - install oq                          1.0.3 (pinned)
  - install parsexp                     v0.17.0        [required by sexplib]
  - install ppx_assert                  v0.17.0        [required by core]
  - install ppx_base                    v0.17.0        [required by core]
  - install ppx_bench                   v0.17.1        [required by ppx_jane]
  - install ppx_bin_prot                v0.17.1        [required by ppx_jane]
  - install ppx_cold                    v0.17.0        [required by ppx_base]
  - install ppx_compare                 v0.17.0        [required by ppx_diff]
  - install ppx_custom_printf           v0.17.0        [required by ppx_jane]
  - install ppx_derivers                1.2.1          [required by ppxlib]
  - install ppx_diff                    v0.17.1        [required by core]
  - install ppx_disable_unused_warnings v0.17.0        [required by ppx_jane]
  - install ppx_enumerate               v0.17.0        [required by ppx_diff]
  - install ppx_expect                  v0.17.3        [required by ppx_jane]
  - install ppx_fields_conv             v0.17.0        [required by ppx_jane]
  - install ppx_fixed_literal           v0.17.0        [required by ppx_jane]
  - install ppx_globalize               v0.17.2        [required by ppx_base]
  - install ppx_hash                    v0.17.0        [required by core]
  - install ppx_here                    v0.17.0        [required by ppx_jane]
  - install ppx_ignore_instrumentation  v0.17.0        [required by ppx_jane]
  - install ppx_inline_test             v0.17.1        [required by core]
  - install ppx_jane                    v0.17.0        [required by oq]
  - install ppx_let                     v0.17.1        [required by ppx_jane]
  - install ppx_log                     v0.17.0        [required by ppx_jane]
  - install ppx_module_timer            v0.17.0        [required by ppx_jane]
  - install ppx_optcomp                 v0.17.1        [required by core, core_unix]
  - install ppx_optional                v0.17.0        [required by ppx_jane]
  - install ppx_pipebang                v0.17.0        [required by ppx_jane]
  - install ppx_sexp_conv               v0.17.1        [required by core]
  - install ppx_sexp_message            v0.17.0        [required by core]
  - install ppx_sexp_value              v0.17.0        [required by ppx_jane]
  - install ppx_stable                  v0.17.1        [required by ppx_jane]
  - install ppx_stable_witness          v0.17.0        [required by ppx_jane]
  - install ppx_string                  v0.17.0        [required by ppx_jane]
  - install ppx_string_conv             v0.17.0        [required by ppx_jane]
  - install ppx_tydi                    v0.17.1        [required by ppx_jane]
  - install ppx_typerep_conv            v0.17.1        [required by ppx_jane]
  - install ppx_variants_conv           v0.17.1        [required by ppx_jane]
  - install ppxlib                      0.37.0         [required by ppx_diff]
  - install ppxlib_jane                 v0.17.4        [required by ppx_diff]
  - install re                          1.14.0         [required by expect_test_helpers_core]
  - install re2                         v0.17.0        [required by oq]
  - install regex_parser_intf           v0.17.0        [required by re2]
  - install sexp_pretty                 v0.17.0        [required by expect_test_helpers_core]
  - install sexplib                     v0.17.0        [required by core, core_unix]
  - install sexplib0                    v0.17.0        [required by base]
  - install spawn                       v0.17.0        [required by core_unix]
  - install splittable_random           v0.17.0        [required by core]
  - install stdio                       v0.17.0        [required by oq]
  - install stdlib-shims                0.3.0          [required by ppxlib]
  - install time_now                    v0.17.0        [required by core]
  - install timezone                    v0.17.0        [required by core_unix]
  - install typerep                     v0.17.1        [required by core]
  - install uopt                        v0.17.0        [required by core_unix]
  - install variantslib                 v0.17.0        [required by core]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.3  (cached)
-> retrieved base_bigstring.v0.17.0  (cached)
-> retrieved base_quickcheck.v0.17.1  (cached)
-> retrieved bin_prot.v0.17.0-1  (cached)
-> retrieved capitalization.v0.17.0  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved core.v0.17.1  (cached)
-> installed conf-g++.1.0
-> retrieved core_kernel.v0.17.0  (cached)
-> retrieved core_unix.v0.17.1  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1  (cached)
-> retrieved expect_test_helpers_core.v0.17.0  (cached)
-> retrieved fieldslib.v0.17.0  (cached)
-> retrieved gel.v0.17.0  (cached)
-> retrieved int_repr.v0.17.0  (cached)
-> retrieved jane-street-headers.v0.17.0  (cached)
-> retrieved jane_rope.v0.17.0  (cached)
-> retrieved jst-config.v0.17.0  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved oq.1.0.3  (cached)
-> retrieved parsexp.v0.17.0  (cached)
-> retrieved ppx_assert.v0.17.0  (cached)
-> retrieved ppx_base.v0.17.0  (cached)
-> retrieved ppx_bench.v0.17.1  (cached)
-> retrieved ppx_bin_prot.v0.17.1  (cached)
-> retrieved ppx_cold.v0.17.0  (cached)
-> installed cmdliner.2.1.0
-> retrieved ppx_compare.v0.17.0  (cached)
-> retrieved ppx_custom_printf.v0.17.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_diff.v0.17.1  (cached)
-> retrieved ppx_disable_unused_warnings.v0.17.0  (cached)
-> retrieved ppx_enumerate.v0.17.0  (cached)
-> retrieved ppx_expect.v0.17.3  (cached)
-> retrieved ppx_fields_conv.v0.17.0  (cached)
-> retrieved ppx_fixed_literal.v0.17.0  (cached)
-> retrieved ppx_globalize.v0.17.2  (cached)
-> retrieved ppx_hash.v0.17.0  (cached)
-> retrieved ppx_here.v0.17.0  (cached)
-> retrieved ppx_ignore_instrumentation.v0.17.0  (cached)
-> retrieved ppx_inline_test.v0.17.1  (cached)
-> retrieved ppx_jane.v0.17.0  (cached)
-> retrieved ppx_let.v0.17.1  (cached)
-> retrieved ppx_log.v0.17.0  (cached)
-> retrieved ppx_module_timer.v0.17.0  (cached)
-> retrieved ppx_optcomp.v0.17.1  (cached)
-> retrieved ppx_optional.v0.17.0  (cached)
-> retrieved ppx_pipebang.v0.17.0  (cached)
-> retrieved ppx_sexp_conv.v0.17.1  (cached)
-> retrieved ppx_sexp_message.v0.17.0  (cached)
-> retrieved ppx_sexp_value.v0.17.0  (cached)
-> retrieved ppx_stable.v0.17.1  (cached)
-> retrieved ppx_stable_witness.v0.17.0  (cached)
-> retrieved ppx_string.v0.17.0  (cached)
-> retrieved ppx_string_conv.v0.17.0  (cached)
-> retrieved ppx_tydi.v0.17.1  (cached)
-> retrieved ppx_typerep_conv.v0.17.1  (cached)
-> retrieved ppx_variants_conv.v0.17.1  (cached)
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved ppxlib_jane.v0.17.4  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved re2.v0.17.0  (cached)
-> retrieved regex_parser_intf.v0.17.0  (cached)
-> retrieved sexp_pretty.v0.17.0  (cached)
-> retrieved sexplib.v0.17.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved spawn.v0.17.0  (cached)
-> retrieved splittable_random.v0.17.0  (cached)
-> retrieved stdio.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved time_now.v0.17.0  (cached)
-> retrieved timezone.v0.17.0  (cached)
-> retrieved typerep.v0.17.1  (cached)
-> retrieved uopt.v0.17.0  (cached)
-> retrieved variantslib.v0.17.0  (cached)
-> installed num.1.6
-> installed dune.3.21.1
-> installed jane-street-headers.v0.17.0
-> installed ppx_derivers.1.2.1
-> installed csexp.1.5.2
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed re.1.14.0
-> installed sexplib0.v0.17.0
-> installed spawn.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed parsexp.v0.17.0
-> installed dune-configurator.3.21.1
-> installed sexplib.v0.17.0
-> installed base.v0.17.3
-> installed fieldslib.v0.17.0
-> installed variantslib.v0.17.0
-> installed regex_parser_intf.v0.17.0
-> installed stdio.v0.17.0
-> installed typerep.v0.17.1
-> installed ppxlib.0.37.0
-> installed ppx_optcomp.v0.17.1
-> installed ppxlib_jane.v0.17.4
-> installed ppx_disable_unused_warnings.v0.17.0
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_stable_witness.v0.17.0
-> installed ppx_tydi.v0.17.1
-> installed ppx_variants_conv.v0.17.1
-> installed ppx_typerep_conv.v0.17.1
-> installed ppx_fields_conv.v0.17.0
-> installed ppx_stable.v0.17.1
-> installed ppx_pipebang.v0.17.0
-> installed ppx_ignore_instrumentation.v0.17.0
-> installed ppx_fixed_literal.v0.17.0
-> installed ppx_enumerate.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_compare.v0.17.0
-> installed ppx_optional.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_let.v0.17.1
-> installed ppx_hash.v0.17.0
-> installed ppx_sexp_value.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_sexp_message.v0.17.0
-> installed ppx_custom_printf.v0.17.0
-> installed ppx_base.v0.17.0
-> installed capitalization.v0.17.0
-> installed jst-config.v0.17.0
-> installed sexp_pretty.v0.17.0
-> installed bin_prot.v0.17.0-1
-> installed ppx_string.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_bin_prot.v0.17.1
-> installed ppx_string_conv.v0.17.0
-> installed ppx_module_timer.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed ppx_bench.v0.17.1
-> installed ppx_expect.v0.17.3
-> installed splittable_random.v0.17.0
-> installed base_quickcheck.v0.17.1
-> installed ppx_log.v0.17.0
-> installed ppx_jane.v0.17.0
-> installed uopt.v0.17.0
-> installed gel.v0.17.0
-> installed jane_rope.v0.17.0
-> installed int_repr.v0.17.0
-> installed base_bigstring.v0.17.0
-> installed ppx_diff.v0.17.1
-> installed core.v0.17.1
-> installed timezone.v0.17.0
-> installed expect_test_helpers_core.v0.17.0
-> installed core_kernel.v0.17.0
-> installed core_unix.v0.17.1
-> installed re2.v0.17.0
-> installed oq.1.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-17 18:12.24 ---> saved as "db7f787fc48ea8cd290c4a978d9acb5280dc64119bb44f065bf56914a34520e1"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved oq.1.0.3  (https://github.com/s-kostyaev/oq/archive/refs/tags/v1.0.3.tar.gz)
-> removed   oq.1.0.3
-> installed oq.1.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-17 18:12.32 ---> saved as "5b862c734875f77859d221e7776c8d8a62cff1a84d97c74121a42fddb1ea417b"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [oq.1.0.3: extract]
-> retrieved oq.1.0.3  (cached)
Processing  2/4: [oq: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "oq" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/oq.1.0.3)
-> compiled  oq.1.0.3
-> removed   oq.1.0.3
-> installed oq.1.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-17 18:12.39 ---> saved as "b4c98beb6b9a7095c5ac515252039e24aa8a92fa96afaf2d2cb2f82de14d6145"
Job succeeded
2026-02-17 18:12.48: Job succeeded