Build:
  1. 0
2024-09-07 20:01.20: New job: test links.0.9.8 with websocket.2.17, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/26509/head (3f38a28f9229e51d12d85b68724b7bcabeab7398)
                              on debian-12-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/26509/head" && git reset --hard 3f38a28f
git fetch origin master
git merge --no-edit 6fe6a740bece3d7856bce5664f49074ece940f31
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:e3fd6fc08dcaf20176799c01603bd800b58119a369c35f03be103fb4f790c874
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMSOLVERTIMEOUT="500"
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 websocket.2.17 2.17
RUN opam reinstall websocket.2.17; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'websocket.2.17' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam option solver=builtin-0install
RUN opam reinstall links.0.9.8; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'links.0.9.8' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam option solver=builtin-0install
RUN (opam reinstall --with-test links.0.9.8) || true
RUN opam reinstall --with-test --verbose links.0.9.8; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'links.0.9.8' && 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 .

2024-09-07 20:01.20: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:e3fd6fc08dcaf20176799c01603bd800b58119a369c35f03be103fb4f790c874-websocket.2.17-links.0.9.8-3f38a28f9229e51d12d85b68724b7bcabeab7398"
2024-09-07 20:01.20: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:e3fd6fc08dcaf20176799c01603bd800b58119a369c35f03be103fb4f790c874)
 (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 "uname -rs && opam exec -- ocaml -version && opam --version"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMSOLVERTIMEOUT 500)
 (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 websocket.2.17 2.17"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall websocket.2.17;\
             \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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'websocket.2.17' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (shell "opam option solver=builtin-0install"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall links.0.9.8;\
             \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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'links.0.9.8' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (shell "opam option solver=builtin-0install"))
 (run (network host)
      (shell "(opam reinstall --with-test links.0.9.8) || true"))
 (run (shell  "opam reinstall --with-test --verbose links.0.9.8;\
             \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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'links.0.9.8' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2024-09-07 20:01.20: Waiting for resource in pool OCluster
2024-09-07 20:01.21: Waiting for worker…
2024-09-07 20:01.21: Got resource from pool OCluster
Building on x86-bm-c17.sw.ocaml.org
All commits already cached
Updating files:  99% (32032/32165)
Updating files: 100% (32165/32165)
Updating files: 100% (32165/32165), done.
HEAD is now at 6fe6a740be Merge pull request #26462 from zoj613/opam-publish-zarr.0.1.0
Updating 6fe6a740be..3f38a28f92
Fast-forward
 packages/websocket-async/websocket-async.2.17/opam | 61 ++++++++++++++++++++++
 .../websocket-lwt-unix.2.17/opam                   | 57 ++++++++++++++++++++
 packages/websocket/websocket.2.17/opam             | 60 +++++++++++++++++++++
 3 files changed, 178 insertions(+)
 create mode 100644 packages/websocket-async/websocket-async.2.17/opam
 create mode 100644 packages/websocket-lwt-unix/websocket-lwt-unix.2.17/opam
 create mode 100644 packages/websocket/websocket.2.17/opam

(from ocaml/opam:debian-12-ocaml-4.14@sha256:e3fd6fc08dcaf20176799c01603bd800b58119a369c35f03be103fb4f790c874)
2024-09-07 20:01.25 ---> using "14f61f48d109d8e33d9462676e70fa65557d05dbfb6744f3fd41218bee71fd8b" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2024-09-07 20:01.25 ---> using "555b63a96f13f71e2ca10beb69c6da04a47cdf6552ebcf8e611d469859206f0d" 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 development 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 39 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=39 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2024-09-07 20:02.55 ---> saved as "f90b707c0540158a16afcfdad11614967b0dd0892e20184c0bad9395f8622009"

/home/opam: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-119-generic
The OCaml toplevel, version 4.14.2
2.3.0~alpha~dev
2024-09-07 20:02.55 ---> saved as "2231374b0977b94e2ddf0cdb76c3a5700206c90b3b13a42d2c78a9d807bd8d54"

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMSOLVERTIMEOUT 500)

/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/"))
2024-09-07 20:03.04 ---> saved as "fbc4a2e2e834847edf9fcec6f1bcc34d44afe6ec135fca79331063dce2fa84ac"

/home/opam: (copy (src .) (dst opam-repository/))
2024-09-07 20:03.15 ---> saved as "8cf97c0e78fc0bbbb2dd21b70287e7522c02b99f5ae720a291002b8920bd76c2"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2024-09-07 20:04.10 ---> saved as "6b32b25ff2b6a200dbb75745cc1e0e7b2ed10b85fb4dda3bcf768191b22a6e38"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8787 kB]
- Get:5 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [179 kB]
- Fetched 9221 kB in 1s (7229 kB/s)
- Reading package lists...
2024-09-07 20:04.12 ---> saved as "9a25b944e478720be1f928c1b413fa0eda66c6b39126b71251ee33dbc3fde7ee"

/home/opam: (run (shell "opam pin add -k version -yn websocket.2.17 2.17"))
websocket is now pinned to version 2.17
2024-09-07 20:04.12 ---> saved as "d6629b23cd634a21e27edf873320e4f04f34957f12159911e3452c21dfca6d05"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall websocket.2.17;\
                        \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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'websocket.2.17' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
websocket.2.17 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 42 packages
  - install angstrom            0.16.0        [required by uri]
  - install astring             0.8.5         [required by websocket]
  - install base                v0.16.3       [required by ppx_sexp_conv]
  - install base-bytes          base          [required by cohttp, ocplib-endian]
  - install base64              3.5.1         [required by websocket]
  - install bigstringaf         0.10.0        [required by angstrom]
  - install cohttp              5.3.1         [required by websocket]
  - install conduit             7.0.0         [required by websocket]
  - install conf-bash           1             [required by base]
  - install cppo                1.7.0         [required by ocplib-endian]
  - install csexp               1.5.2         [required by dune-configurator]
  - install digestif            1.2.0         [required by mirage-crypto-rng]
  - install domain-name         0.4.0         [required by ipaddr]
  - install dune                3.16.0        [required by websocket]
  - install dune-configurator   3.16.0        [required by mirage-crypto-rng]
  - install duration            0.2.1         [required by mirage-crypto-rng]
  - install eqaf                0.10          [required by digestif, mirage-crypto]
  - install ipaddr              5.6.0         [required by conduit]
  - install ipaddr-sexp         5.6.0         [required by conduit]
  - install jsonm               1.0.2         [required by cohttp]
  - install logs                0.7.0         [required by conduit, mirage-crypto-rng]
  - install macaddr             5.6.0         [required by ipaddr]
  - install mirage-crypto       1.1.0         [required by mirage-crypto-rng]
  - install mirage-crypto-rng   1.1.0         [required by websocket]
  - install ocaml-compiler-libs v0.12.4       [required by ppxlib]
  - install ocaml-syntax-shims  1.0.0         [required by angstrom]
  - install ocamlbuild          0.15.0        [required by astring]
  - install ocamlfind           1.9.6         [required by astring]
  - install ocplib-endian       1.2           [required by websocket]
  - install ppx_derivers        1.2.1         [required by ppxlib]
  - install ppx_sexp_conv       v0.16.0       [required by cohttp, conduit]
  - install ppxlib              0.33.0        [required by ppx_sexp_conv]
  - install re                  1.12.0        [required by cohttp]
  - install seq                 base          [required by re]
  - install sexplib0            v0.16.0       [required by cohttp, conduit]
  - install stdlib-shims        0.3.0         [required by ppxlib]
  - install stringext           1.6.0         [required by cohttp]
  - install topkg               1.0.7         [required by astring]
  - install uri                 4.4.0         [required by cohttp, conduit]
  - install uri-sexp            4.4.0         [required by cohttp]
  - install uutf                1.0.3         [required by jsonm]
  - install websocket           2.17 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.0  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.16.3  (cached)
-> retrieved base64.3.5.1  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved cohttp.5.3.1  (cached)
-> retrieved conduit.7.0.0  (cached)
-> retrieved cppo.1.7.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-bash.1
-> retrieved digestif.1.2.0  (cached)
-> retrieved domain-name.0.4.0  (cached)
-> retrieved dune.3.16.0, dune-configurator.3.16.0  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved eqaf.0.10  (cached)
-> retrieved ipaddr.5.6.0, ipaddr-sexp.5.6.0, macaddr.5.6.0  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved logs.0.7.0  (cached)
-> retrieved mirage-crypto.1.1.0, mirage-crypto-rng.1.1.0  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.15.0  (cached)
-> retrieved ocamlfind.1.9.6  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> retrieved ppxlib.0.33.0  (cached)
-> retrieved re.1.12.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved topkg.1.0.7  (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (cached)
-> retrieved uutf.1.0.3  (cached)
-> retrieved websocket.2.17  (cached)
-> installed ocamlfind.1.9.6
-> installed base-bytes.base
-> installed ocamlbuild.0.15.0
-> installed topkg.1.0.7
-> installed uutf.1.0.3
-> installed logs.0.7.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed dune.3.16.0
-> installed ppx_derivers.1.2.1
-> installed csexp.1.5.2
-> installed base64.3.5.1
-> installed domain-name.0.4.0
-> installed duration.0.2.1
-> installed eqaf.0.10
-> installed macaddr.5.6.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed cppo.1.7.0
-> installed re.1.12.0
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed ocplib-endian.1.2
-> installed ipaddr.5.6.0
-> installed digestif.1.2.0
-> installed dune-configurator.3.16.0
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.0
-> installed mirage-crypto.1.1.0
-> installed mirage-crypto-rng.1.1.0
-> installed uri.4.4.0
-> installed base.v0.16.3
-> installed ppxlib.0.33.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ipaddr-sexp.5.6.0
-> installed uri-sexp.4.4.0
-> installed conduit.7.0.0
-> installed cohttp.5.3.1
-> installed websocket.2.17
Done.
# To update the current shell environment, run: eval $(opam env)
2024-09-07 20:05.20 ---> saved as "e63539d079ef7106cb96a5a453b26114191df7b75679d8cb6c3e3adf528a82f2"

/home/opam: (run (shell "opam option solver=builtin-0install"))
Set to 'builtin-0install' the field solver in global configuration
2024-09-07 20:05.20 ---> saved as "9a54103657bb2ed002bdffd26d61fc26df5c706039fca6ee22c61e8305514741"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall links.0.9.8;\
                        \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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'links.0.9.8' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
links.0.9.8 is not installed. Install it? [y/n] y
The following actions will be performed:
=== downgrade 3 packages
  - downgrade eqaf                0.10 to 0.9     [required by mirage-crypto-ec, mirage-crypto, mirage-crypto-pk]
  - downgrade mirage-crypto       1.1.0 to 0.11.3 [required by tls]
  - downgrade mirage-crypto-rng   1.1.0 to 0.11.3 [required by tls]
=== recompile 6 packages
  - recompile conduit             7.0.0           [uses logs]
  - recompile digestif            1.2.0           [uses eqaf]
  - recompile jsonm               1.0.2           [uses uutf]
  - recompile logs                0.7.0           [uses lwt]
  - recompile uutf                1.0.3           [uses cmdliner]
  - recompile websocket           2.17 (pinned)   [uses mirage-crypto-rng, conduit]
=== install 54 packages
  - install   ANSITerminal        0.8.5           [required by links]
  - install   asn1-combinators    0.2.6           [required by x509]
  - install   bos                 0.2.1           [required by ca-certs]
  - install   ca-certs            0.2.3           [required by conduit-lwt-unix]
  - install   calendar            3.0.0           [required by links]
  - install   cmdliner            1.3.0           [required by cohttp-lwt-unix]
  - install   cohttp-lwt          5.3.0           [required by links]
  - install   cohttp-lwt-unix     5.3.0           [required by links]
  - install   conduit-lwt         7.0.0           [required by cohttp-lwt-unix]
  - install   conduit-lwt-unix    7.0.0           [required by links]
  - install   conf-gmp            4               [required by zarith, conf-gmp-powm-sec]
  - install   conf-gmp-powm-sec   3               [required by mirage-crypto-pk]
  - install   conf-libpcre        1               [required by pcre]
  - install   conf-pkg-config     3               [required by conf-libpcre]
  - install   cstruct             6.2.0           [required by tls]
  - install   dune-build-info     3.16.0          [required by rdf]
  - install   fmt                 0.9.0           [required by cohttp-lwt-unix, tls]
  - install   fpath               0.7.3           [required by ca-certs]
  - install   gen                 1.1             [required by sedlex]
  - install   gmap                0.3.0           [required by x509]
  - install   hkdf                1.0.4           [required by tls]
  - install   iri                 1.0.0           [required by rdf]
  - install   linenoise           1.5.1           [required by links]
  - install   links               0.9.8
  - install   lwt                 5.7.0           [required by links]
  - install   lwt_log             1.1.2           [required by websocket-lwt-unix]
  - install   lwt_ppx             2.1.0           [required by rdf_lwt]
  - install   magic-mime          1.3.1           [required by cohttp-lwt-unix]
  - install   menhir              20240715        [required by links]
  - install   menhirCST           20240715        [required by menhir]
  - install   menhirLib           20240715        [required by menhir]
  - install   menhirSdk           20240715        [required by menhir]
  - install   mirage-crypto-ec    0.11.3          [required by tls]
  - install   mirage-crypto-pk    0.11.3          [required by tls]
  - install   pbkdf               1.2.0           [required by x509]
  - install   pcre                7.5.0           [required by rdf]
  - install   ppx_deriving        6.0.2           [required by links]
  - install   ppx_deriving_yojson 3.9.0           [required by links]
  - install   ptime               1.1.0           [required by rdf]
  - install   rdf                 1.0.0           [required by rdf_lwt]
  - install   rdf_lwt             1.0.0           [required by links]
  - install   result              1.5             [required by links]
  - install   rresult             0.7.0           [required by bos]
  - install   safepass            3.1             [required by links]
  - install   sedlex              3.2             [required by rdf]
  - install   tls                 0.17.5          [required by links]
  - install   uucp                15.1.0          [required by rdf]
  - install   uuidm               0.9.8           [required by rdf]
  - install   uunf                15.1.0          [required by iri, uucp]
  - install   websocket-lwt-unix  2.17            [required by links]
  - install   x509                0.16.5          [required by tls]
  - install   xmlm                1.4.0           [required by rdf]
  - install   yojson              2.2.2           [required by ppx_deriving_yojson]
  - install   zarith              1.14            [required by asn1-combinators, mirage-crypto-pk]

The following system packages will first need to be installed:
    libgmp-dev libpcre3-dev pkg-config

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

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get 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 "apt-get" "install" "-qq" "-yy" "libgmp-dev" "libpcre3-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 18734 files and directories currently installed.)
- Preparing to unpack .../00-libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../01-libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libpcre16-3:amd64.
- Preparing to unpack .../02-libpcre16-3_2%3a8.39-15_amd64.deb ...
- Unpacking libpcre16-3:amd64 (2:8.39-15) ...
- Selecting previously unselected package libpcre3:amd64.
- Preparing to unpack .../03-libpcre3_2%3a8.39-15_amd64.deb ...
- Unpacking libpcre3:amd64 (2:8.39-15) ...
- Selecting previously unselected package libpcre32-3:amd64.
- Preparing to unpack .../04-libpcre32-3_2%3a8.39-15_amd64.deb ...
- Unpacking libpcre32-3:amd64 (2:8.39-15) ...
- Selecting previously unselected package libpcrecpp0v5:amd64.
- Preparing to unpack .../05-libpcrecpp0v5_2%3a8.39-15_amd64.deb ...
- Unpacking libpcrecpp0v5:amd64 (2:8.39-15) ...
- Selecting previously unselected package libpcre3-dev:amd64.
- Preparing to unpack .../06-libpcre3-dev_2%3a8.39-15_amd64.deb ...
- Unpacking libpcre3-dev:amd64 (2:8.39-15) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../07-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../08-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../09-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../10-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Setting up libpcre16-3:amd64 (2:8.39-15) ...
- Setting up libpcre3:amd64 (2:8.39-15) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up libpcre32-3:amd64 (2:8.39-15) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up libpcrecpp0v5:amd64 (2:8.39-15) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up libpcre3-dev:amd64 (2:8.39-15) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u7) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ANSITerminal.0.8.5  (cached)
-> retrieved asn1-combinators.0.2.6  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved ca-certs.0.2.3  (cached)
-> retrieved calendar.3.0.0  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved cohttp-lwt.5.3.0, cohttp-lwt-unix.5.3.0  (cached)
-> retrieved conduit.7.0.0, conduit-lwt.7.0.0, conduit-lwt-unix.7.0.0  (cached)
-> retrieved conf-gmp.4  (cached)
-> retrieved conf-gmp-powm-sec.3  (cached)
-> installed conf-pkg-config.3
-> retrieved cstruct.6.2.0  (cached)
-> installed conf-gmp.4
-> installed conf-libpcre.1
-> installed ANSITerminal.0.8.5
-> installed conf-gmp-powm-sec.3
-> retrieved digestif.1.2.0  (cached)
-> installed calendar.3.0.0
-> retrieved dune-build-info.3.16.0  (cached)
-> retrieved eqaf.0.9  (cached)
-> retrieved fmt.0.9.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved gmap.0.3.0  (cached)
-> installed cmdliner.1.3.0
-> retrieved hkdf.1.0.4  (cached)
-> retrieved iri.1.0.0  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> removed   jsonm.1.0.2
-> retrieved linenoise.1.5.1  (cached)
-> installed gmap.0.3.0
-> retrieved links.0.9.8  (cached)
-> retrieved logs.0.7.0  (cached)
-> installed dune-build-info.3.16.0
-> retrieved lwt.5.7.0  (cached)
-> retrieved lwt_log.1.1.2  (cached)
-> retrieved lwt_ppx.2.1.0  (cached)
-> retrieved magic-mime.1.3.1  (cached)
-> installed fpath.0.7.3
-> installed linenoise.1.5.1
-> installed gen.1.1
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715  (cached)
-> installed fmt.0.9.0
-> installed menhirCST.20240715
-> installed magic-mime.1.3.1
-> installed menhirSdk.20240715
-> retrieved mirage-crypto.0.11.3, mirage-crypto-ec.0.11.3, mirage-crypto-pk.0.11.3, mirage-crypto-rng.0.11.3  (cached)
-> installed menhirLib.20240715
-> installed cstruct.6.2.0
-> retrieved pbkdf.1.2.0  (cached)
-> retrieved pcre.7.5.0  (cached)
-> retrieved ppx_deriving.6.0.2  (cached)
-> retrieved ppx_deriving_yojson.3.9.0  (cached)
-> retrieved ptime.1.1.0  (cached)
-> installed pcre.7.5.0
-> retrieved rdf.1.0.0, rdf_lwt.1.0.0  (cached)
-> installed lwt.5.7.0
-> installed ptime.1.1.0
-> retrieved result.1.5  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved safepass.3.1  (cached)
-> retrieved sedlex.3.2  (cached)
-> installed result.1.5
-> retrieved tls.0.17.5  (cached)
-> installed lwt_log.1.1.2
-> retrieved uucp.15.1.0  (cached)
-> retrieved uuidm.0.9.8  (cached)
-> retrieved uunf.15.1.0  (cached)
-> retrieved uutf.1.0.3  (cached)
-> removed   uutf.1.0.3
-> retrieved websocket.2.17, websocket-lwt-unix.2.17  (cached)
-> removed   websocket.2.17
-> removed   conduit.7.0.0
-> removed   mirage-crypto-rng.1.1.0
-> removed   digestif.1.2.0
-> removed   logs.0.7.0
-> removed   mirage-crypto.1.1.0
-> removed   eqaf.0.10
-> installed eqaf.0.9
-> installed rresult.0.7.0
-> retrieved x509.0.16.5  (cached)
-> installed ppx_deriving.6.0.2
-> retrieved xmlm.1.4.0  (cached)
-> retrieved yojson.2.2.2  (cached)
-> retrieved zarith.1.14  (cached)
-> installed safepass.3.1
-> installed logs.0.7.0
-> installed uuidm.0.9.8
-> installed uutf.1.0.3
-> installed digestif.1.2.0
-> installed xmlm.1.4.0
-> installed yojson.2.2.2
-> installed lwt_ppx.2.1.0
-> installed cohttp-lwt.5.3.0
-> installed conduit.7.0.0
-> installed mirage-crypto.0.11.3
-> installed jsonm.1.0.2
-> installed sedlex.3.2
-> installed hkdf.1.0.4
-> installed pbkdf.1.2.0
-> installed mirage-crypto-rng.0.11.3
[ERROR] The compilation of websocket.2.17 failed at "dune build -p websocket -j 31 --promote-install-files=false @install".
-> installed bos.0.2.1
-> installed conduit-lwt.7.0.0
-> installed zarith.1.14
-> installed ppx_deriving_yojson.3.9.0
-> installed mirage-crypto-pk.0.11.3
-> installed asn1-combinators.0.2.6
-> installed uunf.15.1.0
-> installed mirage-crypto-ec.0.11.3
-> installed x509.0.16.5
-> installed ca-certs.0.2.3
-> installed iri.1.0.0
-> installed menhir.20240715
-> installed tls.0.17.5
-> installed conduit-lwt-unix.7.0.0
-> installed cohttp-lwt-unix.5.3.0
-> installed uucp.15.1.0
-> installed rdf.1.0.0
-> installed rdf_lwt.1.0.0

#=== ERROR while compiling websocket.2.17 =====================================#
# context              2.3.0~alpha~dev | linux/x86_64 | ocaml-base-compiler.4.14.2 | pinned(https://github.com/vbmithr/ocaml-websocket/releases/download/2.17/websocket-2.17.tbz)
# path                 ~/.opam/4.14/.opam-switch/build/websocket.2.17
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p websocket -j 31 --promote-install-files=false @install
# exit-code            1
# env-file             ~/.opam/log/websocket-7-34b5b8.env
# output-file          ~/.opam/log/websocket-7-34b5b8.out
### output ###
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I core/.websocket.objs/byte -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/cohttp -I /home/opam/.opam/4.14/lib/conduit -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr-sexp -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uri-sexp -intf-suffix .ml -no-alias-deps -open Websocket__ -o core/.websocket.objs/byte/websocket.cmo -c -impl core/websocket.ml)
# File "core/websocket.ml", line 1:
# Error: The implementation core/websocket.ml
#        does not match the interface core/.websocket.objs/byte/websocket.cmi: 
#        In module Rng:
#        Modules do not match:
#          sig val init : unit -> int -> Cstruct.t end
#        is not included in
#          sig val init : unit -> int -> string end
#        In module Rng:
#        Values do not match:
#          val init : unit -> int -> Cstruct.t
#        is not included in
#          val init : unit -> int -> string
#        The type unit -> int -> Cstruct.t is not compatible with the type
#          unit -> int -> string
#        Type Cstruct.t is not compatible with type string 
#        File "core/websocket.mli", line 25, characters 2-34:
#          Expected declaration
#        File "core/websocket.ml", line 24, characters 6-10: Actual declaration
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I core/.websocket.objs/byte -I core/.websocket.objs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/cohttp -I /home/opam/.opam/4.14/lib/conduit -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr-sexp -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uri-sexp -intf-suffix .ml -no-alias-deps -open Websocket__ -o core/.websocket.objs/native/websocket.cmx -c -impl core/websocket.ml)
# File "core/websocket.ml", line 1:
# Error: The implementation core/websocket.ml
#        does not match the interface core/.websocket.objs/byte/websocket.cmi: 
#        In module Rng:
#        Modules do not match:
#          sig val init : unit -> int -> Cstruct.t end
#        is not included in
#          sig val init : unit -> int -> string end
#        In module Rng:
#        Values do not match:
#          val init : unit -> int -> Cstruct.t
#        is not included in
#          val init : unit -> int -> string
#        The type unit -> int -> Cstruct.t is not compatible with the type
#          unit -> int -> string
#        Type Cstruct.t is not compatible with type string 
#        File "core/websocket.mli", line 25, characters 2-34:
#          Expected declaration
#        File "core/websocket.ml", line 24, characters 6-10: Actual declaration



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build websocket 2.17
+- 
+- The following changes have been performed (the rest was aborted)
| - remove    websocket           2.17
| - downgrade eqaf                0.10 to 0.9
| - downgrade mirage-crypto       1.1.0 to 0.11.3
| - downgrade mirage-crypto-rng   1.1.0 to 0.11.3
| - recompile conduit             7.0.0
| - recompile digestif            1.2.0
| - recompile jsonm               1.0.2
| - recompile logs                0.7.0
| - recompile uutf                1.0.3
| - install   ANSITerminal        0.8.5
| - install   asn1-combinators    0.2.6
| - install   bos                 0.2.1
| - install   ca-certs            0.2.3
| - install   calendar            3.0.0
| - install   cmdliner            1.3.0
| - install   cohttp-lwt          5.3.0
| - install   cohttp-lwt-unix     5.3.0
| - install   conduit-lwt         7.0.0
| - install   conduit-lwt-unix    7.0.0
| - install   conf-gmp            4
| - install   conf-gmp-powm-sec   3
| - install   conf-libpcre        1
| - install   conf-pkg-config     3
| - install   cstruct             6.2.0
| - install   dune-build-info     3.16.0
| - install   fmt                 0.9.0
| - install   fpath               0.7.3
| - install   gen                 1.1
| - install   gmap                0.3.0
| - install   hkdf                1.0.4
| - install   iri                 1.0.0
| - install   linenoise           1.5.1
| - install   lwt                 5.7.0
| - install   lwt_log             1.1.2
| - install   lwt_ppx             2.1.0
| - install   magic-mime          1.3.1
| - install   menhir              20240715
| - install   menhirCST           20240715
| - install   menhirLib           20240715
| - install   menhirSdk           20240715
| - install   mirage-crypto-ec    0.11.3
| - install   mirage-crypto-pk    0.11.3
| - install   pbkdf               1.2.0
| - install   pcre                7.5.0
| - install   ppx_deriving        6.0.2
| - install   ppx_deriving_yojson 3.9.0
| - install   ptime               1.1.0
| - install   rdf                 1.0.0
| - install   rdf_lwt             1.0.0
| - install   result              1.5
| - install   rresult             0.7.0
| - install   safepass            3.1
| - install   sedlex              3.2
| - install   tls                 0.17.5
| - install   uucp                15.1.0
| - install   uuidm               0.9.8
| - install   uunf                15.1.0
| - install   x509                0.16.5
| - install   xmlm                1.4.0
| - install   yojson              2.2.2
| - install   zarith              1.14
+- 
# To update the current shell environment, run: eval $(opam env)

The former state can be restored with:
    /usr/bin/opam switch import "/home/opam/.opam/4.14/.opam-switch/backup/state-20240907200521.export"
Or you can retry to install your package selection with:
    /usr/bin/opam install --restore
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
opam-repo-ci detected dependencies failing:  websocket.2.17
"/usr/bin/env" "bash" "-c" "opam reinstall links.0.9.8;
        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-12\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'links.0.9.8' && partial_fails="$partial_fails $pkg";
        done;
        test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
        exit 1" failed with exit status 1
2024-09-07 20:07.25: Job failed: Failed: Build failed
2024-09-07 20:07.25: Log analysis:
2024-09-07 20:07.25: >>> 
[ERROR] The compilation of websocket.2.17 failed at "dune build -p websocket -j 31 --promote-install-files=false @install".
 (score = 20)
2024-09-07 20:07.25: >>> 
# Error: The implementation core/websocket.ml
 (score = 48)
2024-09-07 20:07.25: >>> 
# Error: The implementation core/websocket.ml
 (score = 48)
2024-09-07 20:07.25: >>> 
opam-repo-ci detected dependencies failing:  websocket.2.17
 (score = 75)
2024-09-07 20:07.25:  websocket.2.17 failed to build