Build:
  1. 0
2024-09-07 20:01.20: New job: test irmin-server.3.9.0 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 irmin-server.3.9.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'irmin-server.3.9.0' && 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 irmin-server.3.9.0) || true
RUN opam reinstall --with-test --verbose irmin-server.3.9.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'irmin-server.3.9.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 .

2024-09-07 20:01.20: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:e3fd6fc08dcaf20176799c01603bd800b58119a369c35f03be103fb4f790c874-websocket.2.17-irmin-server.3.9.0-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 irmin-server.3.9.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'irmin-server.3.9.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 (shell "opam option solver=builtin-0install"))
 (run (network host)
      (shell "(opam reinstall --with-test irmin-server.3.9.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose irmin-server.3.9.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'irmin-server.3.9.0' && 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-c10.sw.ocaml.org
All commits already cached
Updating files:  58% (18791/32165)
Updating files:  59% (18978/32165)
Updating files:  60% (19299/32165)
Updating files:  61% (19621/32165)
Updating files:  62% (19943/32165)
Updating files:  63% (20264/32165)
Updating files:  64% (20586/32165)
Updating files:  65% (20908/32165)
Updating files:  66% (21229/32165)
Updating files:  67% (21551/32165)
Updating files:  68% (21873/32165)
Updating files:  69% (22194/32165)
Updating files:  70% (22516/32165)
Updating files:  71% (22838/32165)
Updating files:  72% (23159/32165)
Updating files:  73% (23481/32165)
Updating files:  74% (23803/32165)
Updating files:  75% (24124/32165)
Updating files:  76% (24446/32165)
Updating files:  77% (24768/32165)
Updating files:  78% (25089/32165)
Updating files:  79% (25411/32165)
Updating files:  80% (25732/32165)
Updating files:  81% (26054/32165)
Updating files:  82% (26376/32165)
Updating files:  83% (26697/32165)
Updating files:  84% (27019/32165)
Updating files:  85% (27341/32165)
Updating files:  86% (27662/32165)
Updating files:  87% (27984/32165)
Updating files:  88% (28306/32165)
Updating files:  89% (28627/32165)
Updating files:  90% (28949/32165)
Updating files:  91% (29271/32165)
Updating files:  92% (29592/32165)
Updating files:  93% (29914/32165)
Updating files:  94% (30236/32165)
Updating files:  95% (30557/32165)
Updating files:  96% (30879/32165)
Updating files:  97% (31201/32165)
Updating files:  98% (31522/32165)
Updating files:  99% (31844/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.28 ---> 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.28 ---> 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
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2024-09-07 20:01.28 ---> using "f90b707c0540158a16afcfdad11614967b0dd0892e20184c0bad9395f8622009" from cache

/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:01.28 ---> using "2231374b0977b94e2ddf0cdb76c3a5700206c90b3b13a42d2c78a9d807bd8d54" from cache

/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:01.28 ---> using "fbc4a2e2e834847edf9fcec6f1bcc34d44afe6ec135fca79331063dce2fa84ac" from cache

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

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2024-09-07 20:02.41 ---> 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 (7168 kB/s)
- Reading package lists...
2024-09-07 20:02.43 ---> 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:02.44 ---> 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 cppo.1.7.0
-> installed ocaml-syntax-shims.1.0.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 uri.4.4.0
-> installed mirage-crypto-rng.1.1.0
-> installed base.v0.16.3
-> installed ppxlib.0.33.0
-> installed ppx_sexp_conv.v0.16.0
-> installed uri-sexp.4.4.0
-> installed ipaddr-sexp.5.6.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:03.58 ---> 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:03.58 ---> saved as "9a54103657bb2ed002bdffd26d61fc26df5c706039fca6ee22c61e8305514741"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall irmin-server.3.9.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'irmin-server.3.9.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
irmin-server.3.9.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== recompile 6 packages
  - recompile conduit            7.0.0         [uses logs]
  - recompile jsonm              1.0.2         [uses uutf]
  - recompile logs               0.7.0         [uses cmdliner]
  - recompile mirage-crypto-rng  1.1.0         [uses logs]
  - recompile uutf               1.0.3         [uses cmdliner]
  - recompile websocket          2.17 (pinned) [uses conduit, mirage-crypto-rng]
=== install 49 packages
  - install   asn1-combinators   0.3.2         [required by x509]
  - install   bheap              2.0.0         [required by irmin]
  - install   bos                0.2.1         [required by ca-certs]
  - install   ca-certs           1.0.0         [required by conduit-lwt-unix]
  - install   checkseum          0.5.2         [required by irmin-pack]
  - install   cmdliner           1.3.0         [required by irmin-server]
  - install   cohttp-lwt         5.3.0         [required by cohttp-lwt-unix]
  - install   cohttp-lwt-unix    5.3.0         [required by irmin-server]
  - install   conduit-lwt        7.0.0         [required by cohttp-lwt-unix]
  - install   conduit-lwt-unix   7.0.0         [required by irmin-server]
  - install   conf-gmp           4             [required by conf-gmp-powm-sec, zarith]
  - install   conf-gmp-powm-sec  3             [required by mirage-crypto-pk]
  - install   conf-pkg-config    3             [required by zarith]
  - install   either             1.0.0         [required by repr]
  - install   fmt                0.9.0         [required by irmin-server]
  - install   fpath              0.7.3         [required by ca-certs]
  - install   gmap               0.3.0         [required by x509]
  - install   index              1.6.2         [required by irmin-pack]
  - install   irmin              3.9.0         [required by irmin-server]
  - install   irmin-pack         3.9.0         [required by irmin-server]
  - install   irmin-server       3.9.0
  - install   kdf                1.0.0         [required by x509]
  - install   lru                0.3.1         [required by index]
  - install   lwt                5.7.0         [required by irmin-server]
  - install   lwt_log            1.1.2         [required by websocket-lwt-unix]
  - install   magic-mime         1.3.1         [required by cohttp-lwt-unix]
  - install   mirage-crypto-ec   1.1.0         [required by x509]
  - install   mirage-crypto-pk   1.1.0         [required by x509]
  - install   mtime              2.0.0         [required by irmin, irmin-pack]
  - install   ocamlgraph         2.1.0         [required by irmin]
  - install   ohex               0.2.0         [required by ca-certs]
  - install   optint             0.3.0         [required by irmin-server]
  - install   ppx_blob           0.9.0         [required by irmin-server]
  - install   ppx_deriving       6.0.2         [required by ppx_repr]
  - install   ppx_irmin          3.9.0         [required by irmin-server]
  - install   ppx_repr           0.7.0         [required by ppx_irmin, index]
  - install   progress           0.4.0         [required by index]
  - install   psq                0.2.1         [required by lru]
  - install   ptime              1.1.0         [required by ca-certs]
  - install   repr               0.7.0         [required by irmin]
  - install   rresult            0.7.0         [required by bos]
  - install   rusage             1.0.0         [required by irmin-pack]
  - install   semaphore-compat   1.0.1         [required by index]
  - install   terminal           0.4.0         [required by progress]
  - install   uucp               15.1.0        [required by progress]
  - install   vector             1.0.0         [required by progress]
  - install   websocket-lwt-unix 2.17          [required by irmin-server]
  - install   x509               1.0.3         [required by ca-certs]
  - install   zarith             1.14          [required by mirage-crypto-pk]

The following system packages will first need to be installed:
    libgmp-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" "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 .../0-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 .../1-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 libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- 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 asn1-combinators.0.3.2  (cached)
-> retrieved bheap.2.0.0  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved ca-certs.1.0.0  (cached)
-> retrieved checkseum.0.5.2  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved cohttp-lwt.5.3.0, cohttp-lwt-unix.5.3.0  (cached)
-> installed bheap.2.0.0
-> 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)
-> retrieved either.1.0.0  (cached)
-> retrieved fmt.0.9.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> installed conf-gmp.4
-> installed conf-pkg-config.3
-> retrieved gmap.0.3.0  (cached)
-> retrieved index.1.6.2  (cached)
-> installed conf-gmp-powm-sec.3
-> installed either.1.0.0
-> installed gmap.0.3.0
-> installed fpath.0.7.3
-> retrieved irmin.3.9.0, irmin-pack.3.9.0, irmin-server.3.9.0, ppx_irmin.3.9.0  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved kdf.1.0.0  (cached)
-> retrieved logs.0.7.0  (cached)
-> retrieved lru.0.3.1  (cached)
-> retrieved lwt.5.7.0  (cached)
-> retrieved lwt_log.1.1.2  (cached)
-> retrieved magic-mime.1.3.1  (cached)
-> installed kdf.1.0.0
-> retrieved mirage-crypto-ec.1.1.0, mirage-crypto-pk.1.1.0, mirage-crypto-rng.1.1.0  (cached)
-> removed   jsonm.1.0.2
-> retrieved mtime.2.0.0  (cached)
-> installed cmdliner.1.3.0
-> installed magic-mime.1.3.1
-> retrieved ocamlgraph.2.1.0  (cached)
-> retrieved ohex.0.2.0  (cached)
-> retrieved optint.0.3.0  (cached)
-> retrieved ppx_blob.0.9.0  (cached)
-> retrieved ppx_deriving.6.0.2  (cached)
-> retrieved ppx_repr.0.7.0, repr.0.7.0  (cached)
-> installed ohex.0.2.0
-> retrieved progress.0.4.0, terminal.0.4.0  (cached)
-> installed optint.0.3.0
-> retrieved psq.0.2.1  (cached)
-> retrieved ptime.1.1.0  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved rusage.1.0.0  (cached)
-> retrieved semaphore-compat.1.0.1  (cached)
-> installed rusage.1.0.0
-> retrieved uucp.15.1.0  (cached)
-> retrieved uutf.1.0.3  (cached)
-> removed   uutf.1.0.3
-> installed psq.0.2.1
-> installed semaphore-compat.1.0.1
-> retrieved vector.1.0.0  (cached)
-> retrieved websocket.2.17, websocket-lwt-unix.2.17  (cached)
-> retrieved x509.1.0.3  (cached)
-> retrieved zarith.1.14  (cached)
-> installed mtime.2.0.0
-> installed vector.1.0.0
-> installed rresult.0.7.0
-> installed lru.0.3.1
-> installed ppx_blob.0.9.0
-> installed checkseum.0.5.2
-> installed fmt.0.9.0
-> installed ptime.1.1.0
-> installed ocamlgraph.2.1.0
-> installed uutf.1.0.3
-> removed   websocket.2.17
-> removed   conduit.7.0.0
-> removed   mirage-crypto-rng.1.1.0
-> removed   logs.0.7.0
-> installed lwt.5.7.0
-> installed asn1-combinators.0.3.2
-> installed lwt_log.1.1.2
-> installed jsonm.1.0.2
-> installed ppx_deriving.6.0.2
-> installed logs.0.7.0
-> installed zarith.1.14
-> installed repr.0.7.0
-> installed mirage-crypto-rng.1.1.0
-> installed mirage-crypto-pk.1.1.0
-> installed conduit.7.0.0
-> installed cohttp-lwt.5.3.0
-> installed websocket.2.17
-> installed bos.0.2.1
-> installed ppx_repr.0.7.0
-> installed conduit-lwt.7.0.0
-> installed ppx_irmin.3.9.0
-> installed mirage-crypto-ec.1.1.0
-> installed x509.1.0.3
-> installed ca-certs.1.0.0
-> installed conduit-lwt-unix.7.0.0
-> installed cohttp-lwt-unix.5.3.0
-> installed irmin.3.9.0
[ERROR] The compilation of websocket-lwt-unix.2.17 failed at "dune build -p websocket-lwt-unix -j 39 --promote-install-files=false @install".
-> installed uucp.15.1.0
-> installed terminal.0.4.0
-> installed progress.0.4.0
-> installed index.1.6.2
-> installed irmin-pack.3.9.0

#=== ERROR while compiling websocket-lwt-unix.2.17 ============================#
# context              2.3.0~alpha~dev | linux/x86_64 | ocaml-base-compiler.4.14.2 | file:///home/opam/opam-repository
# path                 ~/.opam/4.14/.opam-switch/build/websocket-lwt-unix.2.17
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p websocket-lwt-unix -j 39 --promote-install-files=false @install
# exit-code            1
# env-file             ~/.opam/log/websocket-lwt-unix-7-aebea7.env
# output-file          ~/.opam/log/websocket-lwt-unix-7-aebea7.out
### output ###
# File "lwt/dune", line 20, characters 48-55:
# 20 |  (libraries conduit-lwt-unix websocket-lwt-unix sexplib))
#                                                      ^^^^^^^
# Error: Library "sexplib" not found.
# -> required by _build/default/lwt/wscat.exe
# -> required by _build/install/default/bin/wscat-lwt
# -> required by _build/default/websocket-lwt-unix.install
# -> required by alias install



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build websocket-lwt-unix 2.17
+- 
+- The following changes have been performed (the rest was aborted)
| - recompile conduit           7.0.0
| - recompile jsonm             1.0.2
| - recompile logs              0.7.0
| - recompile mirage-crypto-rng 1.1.0
| - recompile uutf              1.0.3
| - recompile websocket         2.17
| - install   asn1-combinators  0.3.2
| - install   bheap             2.0.0
| - install   bos               0.2.1
| - install   ca-certs          1.0.0
| - install   checkseum         0.5.2
| - 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-pkg-config   3
| - install   either            1.0.0
| - install   fmt               0.9.0
| - install   fpath             0.7.3
| - install   gmap              0.3.0
| - install   index             1.6.2
| - install   irmin             3.9.0
| - install   irmin-pack        3.9.0
| - install   kdf               1.0.0
| - install   lru               0.3.1
| - install   lwt               5.7.0
| - install   lwt_log           1.1.2
| - install   magic-mime        1.3.1
| - install   mirage-crypto-ec  1.1.0
| - install   mirage-crypto-pk  1.1.0
| - install   mtime             2.0.0
| - install   ocamlgraph        2.1.0
| - install   ohex              0.2.0
| - install   optint            0.3.0
| - install   ppx_blob          0.9.0
| - install   ppx_deriving      6.0.2
| - install   ppx_irmin         3.9.0
| - install   ppx_repr          0.7.0
| - install   progress          0.4.0
| - install   psq               0.2.1
| - install   ptime             1.1.0
| - install   repr              0.7.0
| - install   rresult           0.7.0
| - install   rusage            1.0.0
| - install   semaphore-compat  1.0.1
| - install   terminal          0.4.0
| - install   uucp              15.1.0
| - install   vector            1.0.0
| - install   x509              1.0.3
| - 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-20240907200359.export"
[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-lwt-unix.2.17
"/usr/bin/env" "bash" "-c" "opam reinstall irmin-server.3.9.0;
        res=$?;
        test "$res" != 31 && exit "$res";
        export OPAMCLI=2.0;
        build_dir=$(opam var prefix)/.opam-switch/build;
        failed=$(ls "$build_dir");
        partial_fails="";
        for pkg in $failed; do
          if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'irmin-server.3.9.0' && 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:05.22: Job failed: Failed: Build failed
2024-09-07 20:05.22: Log analysis:
2024-09-07 20:05.22: >>> 
[ERROR] The compilation of websocket-lwt-unix.2.17 failed at "dune build -p websocket-lwt-unix -j 39 --promote-install-files=false @install".
 (score = 20)
2024-09-07 20:05.22: >>> 
# Error: Library "sexplib" not found.
 (score = 48)
2024-09-07 20:05.22: >>> 
opam-repo-ci detected dependencies failing:  websocket-lwt-unix.2.17
 (score = 75)
2024-09-07 20:05.22:  websocket-lwt-unix.2.17 failed to build