(for PR #29027)

2025-12-06 22:13.28: New job: test cohttp-server-lwt-unix.6.2.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29027/head (1943a08a49bd8ad146df90b1b6fce4343775819f)
                              on centos-10-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/29027/head" && git reset --hard 1943a08a
git fetch origin master
git merge --no-edit 2ab7464b16d46be89975bea0595240dd3fccf608
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-10-ocaml-4.14@sha256:67aa4894b0ceb1fee3e090e92071b4ae72ebdc268986884065507832415daee1
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 cohttp-server-lwt-unix.6.2.0 6.2.0
RUN opam reinstall cohttp-server-lwt-unix.6.2.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 "\"centos-10\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'cohttp-server-lwt-unix.6.2.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 cohttp-server-lwt-unix.6.2.0) || true
RUN opam reinstall --with-test --verbose cohttp-server-lwt-unix.6.2.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 "\"centos-10\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'cohttp-server-lwt-unix.6.2.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 .

2025-12-06 22:13.28: Using cache hint "ocaml/opam:centos-10-ocaml-4.14@sha256:67aa4894b0ceb1fee3e090e92071b4ae72ebdc268986884065507832415daee1-cohttp-server-lwt-unix.6.2.0-1943a08a49bd8ad146df90b1b6fce4343775819f"
2025-12-06 22:13.28: Using OBuilder spec:
((from ocaml/opam:centos-10-ocaml-4.14@sha256:67aa4894b0ceb1fee3e090e92071b4ae72ebdc268986884065507832415daee1)
 (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 cohttp-server-lwt-unix.6.2.0 6.2.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall cohttp-server-lwt-unix.6.2.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 \"\\\"centos-10\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'cohttp-server-lwt-unix.6.2.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 cohttp-server-lwt-unix.6.2.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose cohttp-server-lwt-unix.6.2.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 \"\\\"centos-10\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'cohttp-server-lwt-unix.6.2.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-12-06 22:13.28: Waiting for resource in pool OCluster
2025-12-06 22:29.22: Waiting for worker…
2025-12-06 22:33.02: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 2ab7464b16 Merge pull request #29022 from thatportugueseguy/release-passage-0.3.1
Merge made by the 'ort' strategy.
 packages/cohttp-async/cohttp-async.6.2.0/opam      | 74 +++++++++++++++++++++
 packages/cohttp-bench/cohttp-bench.6.2.0/opam      | 62 ++++++++++++++++++
 .../cohttp-curl-async/cohttp-curl-async.6.2.0/opam | 63 ++++++++++++++++++
 .../cohttp-curl-lwt/cohttp-curl-lwt.6.2.0/opam     | 63 ++++++++++++++++++
 packages/cohttp-curl/cohttp-curl.6.2.0/opam        | 51 +++++++++++++++
 packages/cohttp-eio/cohttp-eio.6.2.0/opam          | 64 ++++++++++++++++++
 .../cohttp-lwt-jsoo/cohttp-lwt-jsoo.6.2.0/opam     | 63 ++++++++++++++++++
 .../cohttp-lwt-unix/cohttp-lwt-unix.6.2.0/opam     | 70 ++++++++++++++++++++
 packages/cohttp-lwt/cohttp-lwt.6.2.0/opam          | 63 ++++++++++++++++++
 packages/cohttp-mirage/cohttp-mirage.6.2.0/opam    | 70 ++++++++++++++++++++
 .../cohttp-server-lwt-unix.6.2.0/opam              | 57 ++++++++++++++++
 packages/cohttp-top/cohttp-top.6.2.0/opam          | 54 +++++++++++++++
 packages/cohttp/cohttp.6.2.0/opam                  | 76 ++++++++++++++++++++++
 packages/http/http.6.2.0/opam                      | 60 +++++++++++++++++
 14 files changed, 890 insertions(+)
 create mode 100644 packages/cohttp-async/cohttp-async.6.2.0/opam
 create mode 100644 packages/cohttp-bench/cohttp-bench.6.2.0/opam
 create mode 100644 packages/cohttp-curl-async/cohttp-curl-async.6.2.0/opam
 create mode 100644 packages/cohttp-curl-lwt/cohttp-curl-lwt.6.2.0/opam
 create mode 100644 packages/cohttp-curl/cohttp-curl.6.2.0/opam
 create mode 100644 packages/cohttp-eio/cohttp-eio.6.2.0/opam
 create mode 100644 packages/cohttp-lwt-jsoo/cohttp-lwt-jsoo.6.2.0/opam
 create mode 100644 packages/cohttp-lwt-unix/cohttp-lwt-unix.6.2.0/opam
 create mode 100644 packages/cohttp-lwt/cohttp-lwt.6.2.0/opam
 create mode 100644 packages/cohttp-mirage/cohttp-mirage.6.2.0/opam
 create mode 100644 packages/cohttp-server-lwt-unix/cohttp-server-lwt-unix.6.2.0/opam
 create mode 100644 packages/cohttp-top/cohttp-top.6.2.0/opam
 create mode 100644 packages/cohttp/cohttp.6.2.0/opam
 create mode 100644 packages/http/http.6.2.0/opam

(from ocaml/opam:centos-10-ocaml-4.14@sha256:67aa4894b0ceb1fee3e090e92071b4ae72ebdc268986884065507832415daee1)
2025-12-06 22:33.43 ---> saved as "0b9bf4083e2dc6df76e0ea1d13ef21cb30770882be12f7db8599cdd64e38573f"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-06 22:33.43 ---> saved as "dc756f67342e25c19d260a65913e9981fad949ea3c1a9367997eef05587cb7c3"

/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
2025-12-06 22:34.03 ---> saved as "4da0b40dd1451b49aa77649df75e3de8922a8b658a57c79ea094aac6fd33482e"

/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=centos os-version=10
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2025-12-06 22:34.04 ---> saved as "bde517db76bd8ae2dbb12333d7942553a981da94c4fb7a2570aa8457524bfd01"

/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/"))
2025-12-06 22:34.16 ---> saved as "4d50a27375bcb3c1876628ed69ef0dd4a598a8f4ec96a54d7a230892a97b97d3"

/home/opam: (copy (src .) (dst opam-repository/))
2025-12-06 22:34.22 ---> saved as "157344e66b565e87baa99274e50bcacf3cc552bafac58b7570aebc1b9cbbfddf"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-06 22:34.39 ---> saved as "d0709a859befd8b23cb77ea537acf469600fc5fdf4a3bd8bd2914a14ea8115a3"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 10 - BaseOS                        39 kB/s |  14 kB     00:00    
- CentOS Stream 10 - BaseOS                       3.1 MB/s | 6.8 MB     00:02    
- CentOS Stream 10 - AppStream                     28 kB/s |  15 kB     00:00    
- CentOS Stream 10 - AppStream                    4.0 MB/s | 3.4 MB     00:00    
- CentOS Stream 10 - CRB                           27 kB/s |  14 kB     00:00    
- CentOS Stream 10 - CRB                          1.9 MB/s | 767 kB     00:00    
- CentOS Stream 10 - Extras packages               42 kB/s |  17 kB     00:00    
- Metadata cache created.
2025-12-06 22:34.47 ---> saved as "cff0ed4b8c9b9291c2521871bf10005e46692b2fb2873d4e162c82e9d8f1dab4"

/home/opam: (run (shell "opam pin add -k version -yn cohttp-server-lwt-unix.6.2.0 6.2.0"))
cohttp-server-lwt-unix is now pinned to version 6.2.0
2025-12-06 22:34.48 ---> saved as "d93ee510ef2a128abbdc45c78a9019d64bdc2142fbddd6b77f721bbbb2a53672"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall cohttp-server-lwt-unix.6.2.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 \"\\\"centos-10\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'cohttp-server-lwt-unix.6.2.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
cohttp-server-lwt-unix.6.2.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 10 packages
  - install base-bytes             base           [required by ocplib-endian]
  - install cohttp-server-lwt-unix 6.2.0 (pinned)
  - install cppo                   1.8.0          [required by lwt]
  - install csexp                  1.5.2          [required by dune-configurator]
  - install dune                   3.20.2         [required by cohttp-server-lwt-unix]
  - install dune-configurator      3.20.2         [required by lwt]
  - install http                   6.2.0          [required by cohttp-server-lwt-unix]
  - install lwt                    5.9.2          [required by cohttp-server-lwt-unix]
  - install ocamlfind              1.9.8          [required by base-bytes]
  - install ocplib-endian          1.2            [required by lwt]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cohttp-server-lwt-unix.6.2.0, http.6.2.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2  (cached)
-> retrieved lwt.5.9.2  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.20.2
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed http.6.2.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.20.2
-> installed lwt.5.9.2
-> installed cohttp-server-lwt-unix.6.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-06 22:35.17 ---> saved as "a0440bd84f6b3f2aebee6acf368e14600e325689c09010b18fd4bbf40a98eb0d"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test cohttp-server-lwt-unix.6.2.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile cohttp-server-lwt-unix 6.2.0 (pinned)
=== install 53 packages
  - install   angstrom               0.16.1         [required by uri]
  - install   asn1-combinators       0.3.2          [required by x509]
  - install   astring                0.8.5          [required by conduit]
  - install   base                   v0.16.4        [required by ppx_sexp_conv]
  - install   base64                 3.5.2          [required by cohttp]
  - install   bigstringaf            0.10.0         [required by angstrom]
  - install   bos                    0.2.1          [required by ca-certs]
  - install   ca-certs               1.0.1          [required by conduit-lwt-unix]
  - install   cmdliner               2.1.0          [required by cohttp-lwt-unix]
  - install   cohttp                 6.2.0          [required by cohttp-lwt, cohttp-lwt-unix]
  - install   cohttp-lwt             6.2.0          [required by cohttp-server-lwt-unix]
  - install   cohttp-lwt-unix        6.2.0          [required by cohttp-server-lwt-unix]
  - install   conduit                8.0.0          [required by conduit-lwt]
  - install   conduit-lwt            8.0.0          [required by cohttp-lwt-unix]
  - install   conduit-lwt-unix       8.0.0          [required by cohttp-server-lwt-unix]
  - install   conf-gmp               5              [required by conf-gmp-powm-sec, zarith]
  - install   conf-gmp-powm-sec      4              [required by mirage-crypto-pk]
  - install   conf-pkg-config        4              [required by zarith]
  - install   digestif               1.3.0          [required by ca-certs]
  - install   domain-name            0.5.0          [required by ipaddr]
  - install   duration               0.2.1          [required by mirage-crypto-rng]
  - install   eqaf                   0.10           [required by digestif, mirage-crypto]
  - install   fmt                    0.11.0         [required by cohttp-lwt-unix]
  - install   fpath                  0.7.3          [required by ca-certs]
  - install   gmap                   0.3.0          [required by x509]
  - install   ipaddr                 5.6.1          [required by cohttp-lwt]
  - install   ipaddr-sexp            5.6.1          [required by conduit-lwt-unix]
  - install   kdf                    1.0.0          [required by x509]
  - install   logs                   0.10.0         [required by cohttp-lwt, cohttp-lwt-unix]
  - install   macaddr                5.6.1          [required by ipaddr]
  - install   magic-mime             1.3.1          [required by cohttp-lwt-unix]
  - install   mirage-crypto          2.0.2          [required by ca-certs]
  - install   mirage-crypto-ec       2.0.2          [required by x509]
  - install   mirage-crypto-pk       2.0.2          [required by x509]
  - install   mirage-crypto-rng      2.0.2          [required by x509]
  - install   ocaml-compiler-libs    v0.12.4        [required by ppxlib]
  - install   ocaml-syntax-shims     1.0.0          [required by angstrom]
  - install   ocamlbuild             0.16.1         [required by logs]
  - install   ohex                   0.2.0          [required by ca-certs]
  - install   ppx_derivers           1.2.1          [required by ppxlib]
  - install   ppx_sexp_conv          v0.16.0        [required by cohttp-lwt, cohttp-lwt-unix]
  - install   ppxlib                 0.35.0         [required by ppx_sexp_conv]
  - install   ptime                  1.2.0          [required by ca-certs]
  - install   re                     1.14.0         [required by cohttp]
  - install   rresult                0.7.0          [required by bos]
  - install   sexplib0               v0.16.0        [required by cohttp-lwt]
  - install   stdlib-shims           0.3.0          [required by ppxlib]
  - install   stringext              1.6.0          [required by cohttp]
  - install   topkg                  1.1.1          [required by logs]
  - install   uri                    4.4.0          [required by cohttp-lwt]
  - install   uri-sexp               4.4.0          [required by cohttp]
  - install   x509                   1.0.6          [required by ca-certs]
  - install   zarith                 1.14           [required by mirage-crypto-pk]

The following system packages will first need to be installed:
    gmp-devel

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
  2. Display the recommended yum command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "yum" "install" "-y" "gmp-devel"
- Last metadata expiration check: 0:00:33 ago on Sat Dec  6 22:34:46 2025.
- Dependencies resolved.
- ================================================================================
-  Package          Architecture  Version                  Repository        Size
- ================================================================================
- Installing:
-  gmp-devel        x86_64        1:6.2.1-12.el10          appstream        174 k
- Installing dependencies:
-  gmp-c++          x86_64        1:6.2.1-12.el10          appstream         20 k
- 
- Transaction Summary
- ================================================================================
- Install  2 Packages
- 
- Total download size: 194 k
- Installed size: 382 k
- Downloading Packages:
- (1/2): gmp-c++-6.2.1-12.el10.x86_64.rpm         650 kB/s |  20 kB     00:00    
- (2/2): gmp-devel-6.2.1-12.el10.x86_64.rpm       1.6 MB/s | 174 kB     00:00    
- --------------------------------------------------------------------------------
- Total                                           307 kB/s | 194 kB     00:00     
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
-   Preparing        :                                                        1/1 
-   Installing       : gmp-c++-1:6.2.1-12.el10.x86_64                         1/2 
-   Installing       : gmp-devel-1:6.2.1-12.el10.x86_64                       2/2 
-   Running scriptlet: gmp-devel-1:6.2.1-12.el10.x86_64                       2/2 
- 
- Installed:
-   gmp-c++-1:6.2.1-12.el10.x86_64        gmp-devel-1:6.2.1-12.el10.x86_64       
- 
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "gmp-devel"
- gmp-devel-6.2.1-12.el10.x86_64

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved asn1-combinators.0.3.2  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved base.v0.16.4  (https://opam.ocaml.org/cache)
-> retrieved base64.3.5.2  (https://opam.ocaml.org/cache)
-> retrieved bigstringaf.0.10.0  (https://opam.ocaml.org/cache)
-> installed base64.3.5.2
-> retrieved bos.0.2.1  (https://opam.ocaml.org/cache)
-> retrieved ca-certs.1.0.1  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> installed bigstringaf.0.10.0
-> retrieved cohttp.6.2.0, cohttp-lwt.6.2.0, cohttp-lwt-unix.6.2.0, cohttp-server-lwt-unix.6.2.0  (https://github.com/mirage/ocaml-cohttp/releases/download/v6.2.0/cohttp-6.2.0.tbz)
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0  (https://opam.ocaml.org/cache)
-> retrieved conf-gmp.5  (https://opam.ocaml.org/cache)
-> installed conf-gmp.5
-> retrieved conf-gmp-powm-sec.4  (https://opam.ocaml.org/cache)
-> installed conf-pkg-config.4
-> installed conf-gmp-powm-sec.4
-> retrieved digestif.1.3.0  (https://opam.ocaml.org/cache)
-> retrieved domain-name.0.5.0  (https://opam.ocaml.org/cache)
-> retrieved duration.0.2.1  (https://opam.ocaml.org/cache)
-> retrieved eqaf.0.10  (https://opam.ocaml.org/cache)
-> installed domain-name.0.5.0
-> installed duration.0.2.1
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved fpath.0.7.3  (https://opam.ocaml.org/cache)
-> retrieved gmap.0.3.0  (https://opam.ocaml.org/cache)
-> installed eqaf.0.10
-> installed gmap.0.3.0
-> retrieved ipaddr.5.6.1, ipaddr-sexp.5.6.1, macaddr.5.6.1  (https://opam.ocaml.org/cache)
-> retrieved kdf.1.0.0  (https://opam.ocaml.org/cache)
-> installed macaddr.5.6.1
-> retrieved logs.0.10.0  (https://opam.ocaml.org/cache)
-> retrieved magic-mime.1.3.1  (https://opam.ocaml.org/cache)
-> installed cmdliner.2.1.0
-> installed digestif.1.3.0
-> installed ipaddr.5.6.1
-> retrieved mirage-crypto.2.0.2, mirage-crypto-ec.2.0.2, mirage-crypto-pk.2.0.2, mirage-crypto-rng.2.0.2  (https://opam.ocaml.org/cache)
-> installed magic-mime.1.3.1
-> retrieved ocaml-compiler-libs.v0.12.4  (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 ohex.0.2.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1  (https://opam.ocaml.org/cache)
-> installed ohex.0.2.0
-> retrieved ppx_sexp_conv.v0.16.0  (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved ppxlib.0.35.0  (https://opam.ocaml.org/cache)
-> retrieved ptime.1.2.0  (https://opam.ocaml.org/cache)
-> installed angstrom.0.16.1
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved rresult.0.7.0  (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> installed mirage-crypto.2.0.2
-> retrieved stringext.1.6.0  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> installed kdf.1.0.0
-> installed sexplib0.v0.16.0
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (https://opam.ocaml.org/cache)
-> installed re.1.14.0
-> retrieved x509.1.0.6  (https://opam.ocaml.org/cache)
-> retrieved zarith.1.14  (https://opam.ocaml.org/cache)
-> installed uri.4.4.0
-> removed   cohttp-server-lwt-unix.6.2.0
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed base.v0.16.4
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed asn1-combinators.0.3.2
-> installed fpath.0.7.3
-> installed logs.0.10.0
-> installed mirage-crypto-rng.2.0.2
-> installed mirage-crypto-pk.2.0.2
-> installed ppxlib.0.35.0
-> installed bos.0.2.1
-> installed ppx_sexp_conv.v0.16.0
-> installed mirage-crypto-ec.2.0.2
-> installed ipaddr-sexp.5.6.1
-> installed uri-sexp.4.4.0
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed conduit.8.0.0
-> installed cohttp.6.2.0
-> installed conduit-lwt.8.0.0
-> installed cohttp-lwt.6.2.0
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt-unix.6.2.0
-> installed cohttp-server-lwt-unix.6.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-06 22:35.50 ---> saved as "a5f43d9d51a5c0a1d7829167c4ad9154747cd5819c9e60a246ba18bff0105ec8"

/home/opam: (run (shell  "opam reinstall --with-test --verbose cohttp-server-lwt-unix.6.2.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 \"\\\"centos-10\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'cohttp-server-lwt-unix.6.2.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 cohttp-server-lwt-unix 6.2.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [cohttp-server-lwt-unix: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "cohttp-server-lwt-unix" "-j" "255" "@install" "@cohttp-server-lwt-unix/runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/cohttp-server-lwt-unix.6.2.0)
-> compiled  cohttp-server-lwt-unix.6.2.0
-> removed   cohttp-server-lwt-unix.6.2.0
-> installed cohttp-server-lwt-unix.6.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-06 22:35.53 ---> saved as "499ca96c4577dcb8737dd4fc1226f5284f67f67ea30405a4577257c73af86729"
Job succeeded
2025-12-06 22:35.58: Job succeeded