2024-05-15 16:34.38: New job: test awsm-lwt.0.1.0 with http.6.0.0~alpha2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/25818/head (e342646724cf48470d12ed8fdd05429c43503303)
                              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/25818/head" && git reset --hard e3426467
git fetch origin master
git merge --no-edit 0dc68a8b920a5b579062cfcdbdf841a82e137ebd
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:35b1aa76181479f2ba40039ae0c5fa5d94e24300e1eb606117587a8e82e9d89e
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 http.6.0.0~alpha2 6.0.0~alpha2
RUN opam reinstall http.6.0.0~alpha2; \
    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" != 'http.6.0.0~alpha2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall awsm-lwt.0.1.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" != 'awsm-lwt.0.1.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 awsm-lwt.0.1.0) || true
RUN opam reinstall --with-test --verbose awsm-lwt.0.1.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" != 'awsm-lwt.0.1.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-05-15 16:34.38: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:35b1aa76181479f2ba40039ae0c5fa5d94e24300e1eb606117587a8e82e9d89e-http.6.0.0~alpha2-awsm-lwt.0.1.0-e342646724cf48470d12ed8fdd05429c43503303"
2024-05-15 16:34.38: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:35b1aa76181479f2ba40039ae0c5fa5d94e24300e1eb606117587a8e82e9d89e)
 (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 http.6.0.0~alpha2 6.0.0~alpha2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall http.6.0.0~alpha2;\
             \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\" != 'http.6.0.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall awsm-lwt.0.1.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\" != 'awsm-lwt.0.1.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 awsm-lwt.0.1.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose awsm-lwt.0.1.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\" != 'awsm-lwt.0.1.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-05-15 16:34.38: Waiting for resource in pool OCluster
2024-05-15 20:36.17: Waiting for worker…
2024-05-15 20:40.54: Got resource from pool OCluster
Building on x86-bm-c18.sw.ocaml.org
All commits already cached
Updating files:  86% (29321/33732)
Updating files:  87% (29347/33732)
Updating files:  88% (29685/33732)
Updating files:  89% (30022/33732)
Updating files:  90% (30359/33732)
Updating files:  91% (30697/33732)
Updating files:  92% (31034/33732)
Updating files:  93% (31371/33732)
Updating files:  94% (31709/33732)
Updating files:  95% (32046/33732)
Updating files:  96% (32383/33732)
Updating files:  97% (32721/33732)
Updating files:  98% (33058/33732)
Updating files:  99% (33395/33732)
Updating files: 100% (33732/33732)
Updating files: 100% (33732/33732), done.
HEAD is now at 0dc68a8b92 Merge pull request #25870 from hannesm/release-tls-v0.17.5
Merge made by the 'ort' strategy.
 .../base_bigstring/base_bigstring.v0.17.0/opam     | 27 +++++++++++
 .../base_quickcheck/base_quickcheck.v0.17.0/opam   | 34 ++++++++++++++
 packages/bin_prot/bin_prot.v0.17.0/opam            | 38 ++++++++++++++++
 packages/bio_io/bio_io.0.5.1/opam                  |  2 +-
 packages/bio_io/bio_io.0.6.0/opam                  |  2 +-
 packages/caisar-ir/caisar-ir.0.2/opam              |  2 +-
 packages/caisar-nnet/caisar-nnet.0.1/opam          |  2 +-
 packages/caisar-nnet/caisar-nnet.0.2/opam          |  2 +-
 packages/caisar-onnx/caisar-onnx.0.1/opam          |  2 +-
 packages/caisar-onnx/caisar-onnx.0.2/opam          |  2 +-
 packages/caisar-ovo/caisar-ovo.0.1/opam            |  2 +-
 packages/caisar-ovo/caisar-ovo.0.2/opam            |  2 +-
 packages/camlimages/camlimages.5.0.5/opam          |  2 +-
 .../capitalization/capitalization.v0.17.0/opam     | 25 ++++++++++
 packages/core/core.v0.17.0/opam                    | 50 ++++++++++++++++++++
 packages/dotenv/dotenv.0.0.1/opam                  |  2 +-
 packages/dotenv/dotenv.0.0.3/opam                  |  2 +-
 packages/feather/feather.0.2.0/opam                |  2 +-
 packages/feather/feather.0.3.0/opam                |  2 +-
 packages/fiber-lwt/fiber-lwt.3.7.0/opam            |  2 +-
 packages/fiber/fiber.3.7.0/opam                    |  2 +-
 packages/fieldslib/fieldslib.v0.17.0/opam          | 28 ++++++++++++
 packages/gel/gel.v0.17.0/opam                      | 26 +++++++++++
 packages/genspio/genspio.0.0.3/opam                |  2 +-
 packages/http/http.6.0.0~alpha2/opam               |  2 +-
 packages/http/http.6.0.0~beta2/opam                |  2 +-
 packages/idd/idd.0.1/opam                          |  2 +-
 packages/int_repr/int_repr.v0.17.0/opam            | 26 +++++++++++
 .../jane-street-headers.v0.17.0/opam               | 24 ++++++++++
 packages/jst-config/jst-config.v0.17.0/opam        | 32 +++++++++++++
 packages/lacaml/lacaml.10.0.1/opam                 |  2 +-
 packages/lacaml/lacaml.10.0.2/opam                 |  2 +-
 packages/lacaml/lacaml.11.0.0/opam                 |  2 +-
 packages/lacaml/lacaml.11.0.1/opam                 |  2 +-
 packages/lacaml/lacaml.11.0.2/opam                 |  2 +-
 packages/lacaml/lacaml.11.0.3/opam                 |  2 +-
 packages/lacaml/lacaml.11.0.4/opam                 |  2 +-
 packages/lacaml/lacaml.11.0.5/opam                 |  2 +-
 packages/lacaml/lacaml.11.0.6/opam                 |  2 +-
 packages/logical/logical.0.3.0/opam                |  2 +-
 packages/matplotlib/matplotlib.0.1/opam            |  2 +-
 packages/matplotlib/matplotlib.0.2/opam            |  2 +-
 packages/merge-fmt/merge-fmt.0.1/opam              |  2 +-
 packages/merge-fmt/merge-fmt.0.2/opam              |  2 +-
 packages/merge-fmt/merge-fmt.0.3/opam              |  2 +-
 packages/nuscr/nuscr.2.1.0/opam                    |  2 +-
 packages/nuscr/nuscr.2.1.1/opam                    |  2 +-
 .../ocaml-protoc-plugin.1.0.0/opam                 |  2 +-
 .../ocaml-protoc-plugin.2.0.0/opam                 |  2 +-
 .../ocaml-protoc-plugin.3.0.0/opam                 |  2 +-
 .../ocaml-protoc-plugin.4.0.0/opam                 |  2 +-
 .../ocaml-protoc-plugin.4.1.0/opam                 |  2 +-
 .../ocaml-protoc-plugin.4.2.0/opam                 |  2 +-
 .../ocaml-protoc-plugin.4.3.1/opam                 |  2 +-
 .../ocaml-protoc-plugin.4.4.0/opam                 |  2 +-
 .../ocaml-protoc-plugin.4.5.0/opam                 |  2 +-
 packages/ocaml-r/ocaml-r.0.1.0/opam                |  2 +-
 packages/ocaml-r/ocaml-r.0.1.1/opam                |  2 +-
 packages/ocaml-r/ocaml-r.0.2.0/opam                |  2 +-
 packages/ocaml-r/ocaml-r.0.3.0/opam                |  2 +-
 packages/ocaml-r/ocaml-r.0.3.1/opam                |  2 +-
 packages/ocaml-r/ocaml-r.0.4.0/opam                |  2 +-
 packages/ocaml-r/ocaml-r.0.5.0/opam                |  2 +-
 packages/ocaml-r/ocaml-r.0.6.0/opam                |  2 +-
 packages/ocamlformat/ocamlformat.0.23.0/opam       |  2 +-
 packages/ocamlformat/ocamlformat.0.24.1/opam       |  2 +-
 packages/parsexp/parsexp.v0.17.0/opam              | 43 ++++++++++++++++++
 packages/postgresql/postgresql.4.1.0/opam          |  2 +-
 packages/postgresql/postgresql.4.2.0/opam          |  2 +-
 packages/postgresql/postgresql.4.2.1/opam          |  2 +-
 packages/postgresql/postgresql.4.3.0/opam          |  2 +-
 packages/postgresql/postgresql.4.4.0/opam          |  2 +-
 packages/postgresql/postgresql.4.4.1/opam          |  2 +-
 packages/postgresql/postgresql.4.4.2/opam          |  2 +-
 packages/postgresql/postgresql.4.5.0/opam          |  2 +-
 packages/postgresql/postgresql.4.5.1/opam          |  2 +-
 packages/postgresql/postgresql.4.5.2/opam          |  2 +-
 packages/postgresql/postgresql.4.6.0/opam          |  2 +-
 packages/postgresql/postgresql.4.6.1/opam          |  2 +-
 packages/ppx_assert/ppx_assert.v0.17.0/opam        | 30 ++++++++++++
 packages/ppx_base/ppx_base.v0.17.0/opam            | 34 ++++++++++++++
 packages/ppx_bench/ppx_bench.v0.17.0/opam          | 26 +++++++++++
 packages/ppx_bin_prot/ppx_bin_prot.v0.17.0/opam    | 29 ++++++++++++
 packages/ppx_cold/ppx_cold.v0.17.0/opam            | 26 +++++++++++
 packages/ppx_compare/ppx_compare.v0.17.0/opam      | 27 +++++++++++
 .../ppx_custom_printf.v0.17.0/opam                 | 27 +++++++++++
 .../ppx_deriving_cad/ppx_deriving_cad.0.1.0/opam   |  2 +-
 .../ppx_deriving_cad/ppx_deriving_cad.0.2.0/opam   |  2 +-
 .../ppx_deriving_scad/ppx_deriving_scad.1.0.0/opam |  2 +-
 packages/ppx_diff/ppx_diff.v0.17.0/opam            | 31 +++++++++++++
 .../ppx_disable_unused_warnings.v0.17.0/opam       | 26 +++++++++++
 packages/ppx_enumerate/ppx_enumerate.v0.17.0/opam  | 27 +++++++++++
 packages/ppx_expect/ppx_expect.v0.17.0/opam        | 29 ++++++++++++
 .../ppx_fields_conv/ppx_fields_conv.v0.17.0/opam   | 27 +++++++++++
 .../ppx_fixed_literal.v0.17.0/opam                 | 27 +++++++++++
 packages/ppx_globalize/ppx_globalize.v0.17.0/opam  | 27 +++++++++++
 packages/ppx_hash/ppx_hash.v0.17.0/opam            | 29 ++++++++++++
 packages/ppx_here/ppx_here.v0.17.0/opam            | 26 +++++++++++
 .../ppx_ignore_instrumentation.v0.17.0/opam        | 26 +++++++++++
 .../ppx_inline_test/ppx_inline_test.v0.17.0/opam   | 27 +++++++++++
 packages/ppx_jane/ppx_jane.v0.17.0/opam            | 53 ++++++++++++++++++++++
 packages/ppx_let/ppx_let.v0.17.0/opam              | 27 +++++++++++
 packages/ppx_log/ppx_log.v0.17.0/opam              | 39 ++++++++++++++++
 .../ppx_module_timer/ppx_module_timer.v0.17.0/opam | 29 ++++++++++++
 packages/ppx_optcomp/ppx_optcomp.v0.17.0/opam      | 27 +++++++++++
 packages/ppx_optional/ppx_optional.v0.17.0/opam    | 28 ++++++++++++
 packages/ppx_pipebang/ppx_pipebang.v0.17.0/opam    | 25 ++++++++++
 .../ppx_protocol_conv/ppx_protocol_conv.5.1.3/opam |  2 +-
 packages/ppx_rapper/ppx_rapper.1.0.1/opam          |  2 +-
 packages/ppx_rapper/ppx_rapper.1.0.2/opam          |  2 +-
 packages/ppx_rapper/ppx_rapper.1.1.0/opam          |  2 +-
 packages/ppx_rapper/ppx_rapper.1.1.1/opam          |  2 +-
 packages/ppx_rapper/ppx_rapper.1.2.0/opam          |  2 +-
 packages/ppx_rapper/ppx_rapper.2.0.0/opam          |  2 +-
 packages/ppx_rapper/ppx_rapper.3.0.0/opam          |  2 +-
 packages/ppx_rapper/ppx_rapper.3.1.0/opam          |  2 +-
 packages/ppx_sexp_conv/ppx_sexp_conv.v0.17.0/opam  | 28 ++++++++++++
 .../ppx_sexp_message/ppx_sexp_message.v0.17.0/opam | 28 ++++++++++++
 .../ppx_sexp_value/ppx_sexp_value.v0.17.0/opam     | 28 ++++++++++++
 packages/ppx_stable/ppx_stable.v0.17.0/opam        | 27 +++++++++++
 .../ppx_stable_witness.v0.17.0/opam                | 26 +++++++++++
 packages/ppx_string/ppx_string.v0.17.0/opam        | 27 +++++++++++
 .../ppx_string_conv/ppx_string_conv.v0.17.0/opam   | 29 ++++++++++++
 packages/ppx_tydi/ppx_tydi.v0.17.0/opam            | 26 +++++++++++
 .../ppx_typerep_conv/ppx_typerep_conv.v0.17.0/opam | 27 +++++++++++
 .../ppx_variants_conv.v0.17.0/opam                 | 27 +++++++++++
 packages/ppxlib_jane/ppxlib_jane.v0.17.0/opam      | 25 ++++++++++
 packages/protocell/protocell.1.0.0/opam            |  2 +-
 packages/pyml_bindgen/pyml_bindgen.0.3.1/opam      |  2 +-
 packages/sanddb/sanddb.0.1/opam                    |  2 +-
 packages/sanddb/sanddb.0.2/opam                    |  2 +-
 packages/sanddb/sanddb.0.3.0/opam                  |  2 +-
 packages/sarif/sarif.0.2.1/opam                    |  2 +-
 packages/sarif/sarif.0.3.0/opam                    |  2 +-
 packages/sarif/sarif.0.3.1/opam                    |  2 +-
 packages/sexplib/sexplib.v0.17.0/opam              | 30 ++++++++++++
 packages/sihl-core/sihl-core.0.2.0/opam            |  2 +-
 packages/sihl-core/sihl-core.0.2.1/opam            |  2 +-
 packages/sihl-core/sihl-core.0.2.2/opam            |  2 +-
 packages/sihl-core/sihl-core.0.3.0~rc1/opam        |  2 +-
 packages/spin/spin.0.5.0/opam                      |  2 +-
 packages/spin/spin.0.5.1/opam                      |  2 +-
 .../splittable_random.v0.17.0/opam                 | 36 +++++++++++++++
 packages/sqlite3/sqlite3.4.4.1/opam                |  2 +-
 packages/stdio/stdio.v0.17.0/opam                  | 28 ++++++++++++
 packages/tensorboard/tensorboard.0.0.1/opam        |  2 +-
 packages/time_now/time_now.v0.17.0/opam            | 30 ++++++++++++
 packages/tldr/tldr.0.3.0/opam                      |  2 +-
 packages/torch/torch.0.10/opam                     |  2 +-
 packages/torch/torch.0.11/opam                     |  2 +-
 packages/torch/torch.0.12/opam                     |  2 +-
 packages/torch/torch.0.13/opam                     |  2 +-
 packages/torch/torch.0.14/opam                     |  2 +-
 packages/torch/torch.0.15/opam                     |  2 +-
 packages/torch/torch.0.16/opam                     |  2 +-
 packages/torch/torch.0.17/opam                     |  2 +-
 packages/torch/torch.0.5/opam                      |  2 +-
 packages/torch/torch.0.6/opam                      |  2 +-
 packages/torch/torch.0.7/opam                      |  2 +-
 packages/torch/torch.0.8/opam                      |  2 +-
 packages/torch/torch.0.9/opam                      |  2 +-
 packages/travesty/travesty.0.8.0/opam              |  2 +-
 packages/typerep/typerep.v0.17.0/opam              | 24 ++++++++++
 .../user-agent-parser/user-agent-parser.0.1.3/opam |  2 +-
 .../user-agent-parser/user-agent-parser.0.2.0/opam |  2 +-
 packages/variantslib/variantslib.v0.17.0/opam      | 27 +++++++++++
 packages/wasmtime/wasmtime.0.0.1/opam              |  2 +-
 packages/wasmtime/wasmtime.0.0.2/opam              |  2 +-
 packages/wasmtime/wasmtime.0.0.3/opam              |  2 +-
 169 files changed, 1671 insertions(+), 116 deletions(-)
 create mode 100644 packages/base_bigstring/base_bigstring.v0.17.0/opam
 create mode 100644 packages/base_quickcheck/base_quickcheck.v0.17.0/opam
 create mode 100644 packages/bin_prot/bin_prot.v0.17.0/opam
 create mode 100644 packages/capitalization/capitalization.v0.17.0/opam
 create mode 100644 packages/core/core.v0.17.0/opam
 create mode 100644 packages/fieldslib/fieldslib.v0.17.0/opam
 create mode 100644 packages/gel/gel.v0.17.0/opam
 create mode 100644 packages/int_repr/int_repr.v0.17.0/opam
 create mode 100644 packages/jane-street-headers/jane-street-headers.v0.17.0/opam
 create mode 100644 packages/jst-config/jst-config.v0.17.0/opam
 create mode 100644 packages/parsexp/parsexp.v0.17.0/opam
 create mode 100644 packages/ppx_assert/ppx_assert.v0.17.0/opam
 create mode 100644 packages/ppx_base/ppx_base.v0.17.0/opam
 create mode 100644 packages/ppx_bench/ppx_bench.v0.17.0/opam
 create mode 100644 packages/ppx_bin_prot/ppx_bin_prot.v0.17.0/opam
 create mode 100644 packages/ppx_cold/ppx_cold.v0.17.0/opam
 create mode 100644 packages/ppx_compare/ppx_compare.v0.17.0/opam
 create mode 100644 packages/ppx_custom_printf/ppx_custom_printf.v0.17.0/opam
 create mode 100644 packages/ppx_diff/ppx_diff.v0.17.0/opam
 create mode 100644 packages/ppx_disable_unused_warnings/ppx_disable_unused_warnings.v0.17.0/opam
 create mode 100644 packages/ppx_enumerate/ppx_enumerate.v0.17.0/opam
 create mode 100644 packages/ppx_expect/ppx_expect.v0.17.0/opam
 create mode 100644 packages/ppx_fields_conv/ppx_fields_conv.v0.17.0/opam
 create mode 100644 packages/ppx_fixed_literal/ppx_fixed_literal.v0.17.0/opam
 create mode 100644 packages/ppx_globalize/ppx_globalize.v0.17.0/opam
 create mode 100644 packages/ppx_hash/ppx_hash.v0.17.0/opam
 create mode 100644 packages/ppx_here/ppx_here.v0.17.0/opam
 create mode 100644 packages/ppx_ignore_instrumentation/ppx_ignore_instrumentation.v0.17.0/opam
 create mode 100644 packages/ppx_inline_test/ppx_inline_test.v0.17.0/opam
 create mode 100644 packages/ppx_jane/ppx_jane.v0.17.0/opam
 create mode 100644 packages/ppx_let/ppx_let.v0.17.0/opam
 create mode 100644 packages/ppx_log/ppx_log.v0.17.0/opam
 create mode 100644 packages/ppx_module_timer/ppx_module_timer.v0.17.0/opam
 create mode 100644 packages/ppx_optcomp/ppx_optcomp.v0.17.0/opam
 create mode 100644 packages/ppx_optional/ppx_optional.v0.17.0/opam
 create mode 100644 packages/ppx_pipebang/ppx_pipebang.v0.17.0/opam
 create mode 100644 packages/ppx_sexp_conv/ppx_sexp_conv.v0.17.0/opam
 create mode 100644 packages/ppx_sexp_message/ppx_sexp_message.v0.17.0/opam
 create mode 100644 packages/ppx_sexp_value/ppx_sexp_value.v0.17.0/opam
 create mode 100644 packages/ppx_stable/ppx_stable.v0.17.0/opam
 create mode 100644 packages/ppx_stable_witness/ppx_stable_witness.v0.17.0/opam
 create mode 100644 packages/ppx_string/ppx_string.v0.17.0/opam
 create mode 100644 packages/ppx_string_conv/ppx_string_conv.v0.17.0/opam
 create mode 100644 packages/ppx_tydi/ppx_tydi.v0.17.0/opam
 create mode 100644 packages/ppx_typerep_conv/ppx_typerep_conv.v0.17.0/opam
 create mode 100644 packages/ppx_variants_conv/ppx_variants_conv.v0.17.0/opam
 create mode 100644 packages/ppxlib_jane/ppxlib_jane.v0.17.0/opam
 create mode 100644 packages/sexplib/sexplib.v0.17.0/opam
 create mode 100644 packages/splittable_random/splittable_random.v0.17.0/opam
 create mode 100644 packages/stdio/stdio.v0.17.0/opam
 create mode 100644 packages/time_now/time_now.v0.17.0/opam
 create mode 100644 packages/typerep/typerep.v0.17.0/opam
 create mode 100644 packages/variantslib/variantslib.v0.17.0/opam

(from ocaml/opam:debian-12-ocaml-4.14@sha256:35b1aa76181479f2ba40039ae0c5fa5d94e24300e1eb606117587a8e82e9d89e)
2024-05-15 20:40.57 ---> using "6bc7e89b5725106f75c11a8b774d971b425f7dab532e626727166f8fc8501d75" 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-05-15 20:40.57 ---> using "6c46928c87bd33edd5e231c6d2911f55a5eec75b812a3d7fda9fca2b12f57d18" 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~alpha, 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 255 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=255 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2024-05-15 20:40.57 ---> using "3788b182527ec34e6f4ace4f954db383e2985afce7b5a5d65b696ddea02578e3" from cache

/home/opam: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-101-generic
The OCaml toplevel, version 4.14.2
2.2.0~beta3~dev
2024-05-15 20:40.57 ---> using "c7bf2e2bd9245a43ecc8d21b4a2e1fa9eed2aa27ec394d7eebda31d38857e6c9" 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-05-15 20:40.57 ---> using "112dde4704bddd0267c8982796c8bcbcc4f65cf21c3dfeb42addcfb7cee9ac89" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2024-05-15 20:40.59 ---> using "f5951c0d0e202201e1c94a3db17b20271b4ef253db5eb006e092f0c1d8ed88da" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2024-05-15 20:40.59 ---> using "aeb0aaa4bd7bbe10f436f0d82784c7851e9e5e11b6a4741f7c20d632635d3e23" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- 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-updates/main amd64 Packages.diff/Index [10.6 kB]
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages T-2024-04-23-2036.10-F-2024-04-23-2036.10.pdiff [1595 B]
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages T-2024-04-23-2036.10-F-2024-04-23-2036.10.pdiff [1595 B]
- Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [156 kB]
- Fetched 272 kB in 0s (1045 kB/s)
- Reading package lists...
- 
2024-05-15 20:40.59 ---> using "a1f465444230d0183319921a327821bae638ea95db7068ef469849826ba9206d" from cache

/home/opam: (run (shell "opam pin add -k version -yn http.6.0.0~alpha2 6.0.0~alpha2"))
http is now pinned to version 6.0.0~alpha2
2024-05-15 20:40.59 ---> using "df4b891fc3694645bfcbd52ec06cb3e20501d122ec3da8c8e107702575499187" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall http.6.0.0~alpha2;\
                        \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\" != 'http.6.0.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
http.6.0.0~alpha2 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 2 packages
  - install dune 3.15.2                [required by http]
  - install http 6.0.0~alpha2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.15.2  (cached)
-> retrieved http.6.0.0~alpha2  (cached)
-> installed dune.3.15.2
-> installed http.6.0.0~alpha2
Done.
# Run eval $(opam env) to update the current shell environment
2024-05-15 20:40.59 ---> using "be87dc6b3b6d22f4adb947cb4b5df34e14ddb9ffc5157584fd96552da522ed79" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall awsm-lwt.0.1.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\" != 'awsm-lwt.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
awsm-lwt.0.1.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 139 packages
  - install angstrom                    0.16.0   [required by uri]
  - install asn1-combinators            0.2.6    [required by x509]
  - install astring                     0.8.5    [required by conduit, ca-certs]
  - install awsm                        0.1.0    [required by awsm-lwt]
  - install awsm-codegen                0.1.0    [required by awsm]
  - install awsm-lwt                    0.1.0
  - install base                        v0.15.1  [required by core]
  - install base-bytes                  base     [required by cohttp]
  - install base64                      3.5.1    [required by awsm]
  - install base_bigstring              v0.15.0  [required by core]
  - install base_quickcheck             v0.15.0  [required by core]
  - install bigstringaf                 0.9.1    [required by angstrom]
  - install bin_prot                    v0.15.0  [required by core]
  - install bos                         0.2.1    [required by ca-certs]
  - install ca-certs                    0.2.3    [required by conduit-lwt-unix]
  - install camlp-streams               5.0.1    [required by ocamlformat-lib]
  - install cmdliner                    1.2.0    [required by cohttp-lwt-unix]
  - install cohttp                      5.3.1    [required by awsm]
  - install cohttp-lwt                  5.3.0    [required by cohttp-lwt-unix]
  - install cohttp-lwt-unix             5.3.0    [required by awsm-lwt]
  - install conduit                     6.2.2    [required by conduit-lwt]
  - install conduit-lwt                 6.2.2    [required by cohttp-lwt-unix]
  - install conduit-lwt-unix            6.2.2    [required by cohttp-lwt-unix]
  - install conf-gmp                    4        [required by conf-gmp-powm-sec, zarith]
  - install conf-gmp-powm-sec           3        [required by cryptokit]
  - install conf-pkg-config             3        [required by conf-zlib]
  - install conf-zlib                   1        [required by cryptokit]
  - install core                        v0.15.1  [required by awsm-codegen]
  - install core_kernel                 v0.15.0  [required by core_unix]
  - install core_unix                   v0.15.2  [required by awsm-codegen]
  - install cppo                        1.6.9    [required by yojson]
  - install cryptokit                   1.19     [required by awsm]
  - install csexp                       1.5.2    [required by ocamlformat-lib]
  - install cstruct                     6.2.0    [required by mirage-crypto, x509]
  - install domain-name                 0.4.0    [required by ipaddr, x509]
  - install dune-build-info             3.15.2   [required by ocamlformat-lib]
  - install dune-configurator           3.15.2   [required by cryptokit]
  - install duration                    0.2.1    [required by mirage-crypto-rng]
  - install either                      1.0.0    [required by ocamlformat-lib]
  - install eqaf                        0.9      [required by mirage-crypto]
  - install expect_test_helpers_core    v0.15.0  [required by core_unix]
  - install fieldslib                   v0.15.0  [required by core]
  - install fix                         20230505 [required by ocamlformat-lib]
  - install fmt                         0.9.0    [required by cohttp-lwt-unix]
  - 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 int_repr                    v0.15.0  [required by base_bigstring, core_kernel]
  - install ipaddr                      5.5.0    [required by conduit-lwt-unix]
  - install ipaddr-sexp                 5.5.0    [required by conduit-lwt-unix]
  - install jane-street-headers         v0.15.0  [required by core, core_unix]
  - install jsonm                       1.0.2    [required by cohttp]
  - install jst-config                  v0.15.1  [required by core, core_unix]
  - install logs                        0.7.0    [required by cohttp-lwt-unix]
  - install lwt                         5.7.0    [required by awsm-lwt]
  - install macaddr                     5.5.0    [required by ipaddr]
  - install magic-mime                  1.3.1    [required by cohttp-lwt-unix]
  - install menhir                      20231231 [required by ocamlformat-lib]
  - install menhirCST                   20231231 [required by menhir]
  - install menhirLib                   20231231 [required by ocamlformat-lib]
  - install menhirSdk                   20231231 [required by ocamlformat-lib]
  - install mirage-crypto               0.11.3   [required by ca-certs]
  - install mirage-crypto-ec            0.11.3   [required by x509]
  - install mirage-crypto-pk            0.11.3   [required by x509]
  - install mirage-crypto-rng           0.11.3   [required by x509]
  - install num                         1.5      [required by sexplib]
  - install ocaml-compiler-libs         v0.12.4  [required by ppxlib]
  - install ocaml-syntax-shims          1.0.0    [required by angstrom]
  - install ocaml-version               3.6.7    [required by ocamlformat-lib]
  - install ocaml_intrinsics            v0.15.2  [required by core_unix]
  - install ocamlbuild                  0.14.3   [required by xmlm, logs]
  - install ocamlfind                   1.9.6    [required by zarith, xmlm, logs]
  - install ocamlformat                 0.26.2   [required by awsm-codegen]
  - install ocamlformat-lib             0.26.2   [required by ocamlformat]
  - install ocamlgraph                  2.1.0    [required by awsm-codegen]
  - install ocp-indent                  1.8.1    [required by ocamlformat-lib]
  - install ocplib-endian               1.2      [required by lwt]
  - install parsexp                     v0.15.0  [required by sexplib]
  - install pbkdf                       1.2.0    [required by x509]
  - install ppx_assert                  v0.15.0  [required by core]
  - install ppx_base                    v0.15.0  [required by core]
  - install ppx_bench                   v0.15.1  [required by ppx_jane]
  - install ppx_bin_prot                v0.15.0  [required by ppx_jane]
  - install ppx_cold                    v0.15.0  [required by ppx_base]
  - install ppx_compare                 v0.15.0  [required by ppx_base, bin_prot]
  - install ppx_custom_printf           v0.15.0  [required by ppx_jane]
  - install ppx_derivers                1.2.1    [required by ppxlib]
  - install ppx_disable_unused_warnings v0.15.0  [required by ppx_jane]
  - install ppx_enumerate               v0.15.0  [required by ppx_base]
  - install ppx_expect                  v0.15.1  [required by ppx_jane]
  - install ppx_fields_conv             v0.15.0  [required by ppx_jane]
  - install ppx_fixed_literal           v0.15.0  [required by ppx_jane]
  - install ppx_hash                    v0.15.0  [required by core]
  - install ppx_here                    v0.15.0  [required by ppx_jane]
  - install ppx_ignore_instrumentation  v0.15.0  [required by ppx_jane]
  - install ppx_inline_test             v0.15.1  [required by core]
  - install ppx_jane                    v0.15.0  [required by core, core_unix]
  - install ppx_let                     v0.15.0  [required by ppx_jane]
  - install ppx_log                     v0.15.0  [required by ppx_jane]
  - install ppx_module_timer            v0.15.0  [required by ppx_jane]
  - install ppx_optcomp                 v0.15.0  [required by ppx_jane]
  - install ppx_optional                v0.15.0  [required by ppx_jane]
  - install ppx_pipebang                v0.15.0  [required by ppx_jane]
  - install ppx_sexp_conv               v0.15.1  [required by cohttp-lwt-unix]
  - install ppx_sexp_message            v0.15.0  [required by core]
  - install ppx_sexp_value              v0.15.0  [required by ppx_jane]
  - install ppx_stable                  v0.15.0  [required by ppx_jane]
  - install ppx_string                  v0.15.0  [required by ppx_jane]
  - install ppx_typerep_conv            v0.15.0  [required by ppx_jane]
  - install ppx_variants_conv           v0.15.0  [required by ppx_jane]
  - install ppxlib                      0.32.1   [required by awsm-codegen]
  - install ptime                       1.1.0    [required by ca-certs]
  - install re                          1.11.0   [required by awsm-codegen]
  - install result                      1.5      [required by ocamlformat-lib]
  - install rresult                     0.7.0    [required by bos]
  - install sedlex                      3.2      [required by awsm-codegen]
  - install seq                         base     [required by yojson]
  - install sexp_pretty                 v0.15.1  [required by expect_test_helpers_core]
  - install sexplib                     v0.15.1  [required by conduit-lwt]
  - install sexplib0                    v0.15.1  [required by cohttp-lwt]
  - install spawn                       v0.15.1  [required by core_unix]
  - install splittable_random           v0.15.0  [required by core]
  - install stdio                       v0.15.0  [required by core]
  - install stdlib-shims                0.3.0    [required by ocamlgraph]
  - install stringext                   1.6.0    [required by cohttp]
  - install time_now                    v0.15.0  [required by core]
  - install timezone                    v0.15.0  [required by core_unix]
  - install topkg                       1.0.7    [required by xmlm, logs]
  - install typerep                     v0.15.0  [required by core]
  - install uri                         4.4.0    [required by cohttp-lwt, conduit-lwt-unix]
  - install uri-sexp                    4.4.0    [required by awsm-codegen]
  - install uucp                        15.1.0   [required by uuseg]
  - install uuseg                       15.1.0   [required by ocamlformat-lib]
  - install uutf                        1.0.3    [required by jsonm, ocamlformat-lib]
  - install variantslib                 v0.15.0  [required by core]
  - install x509                        0.16.5   [required by ca-certs]
  - install xmlm                        1.4.0    [required by awsm]
  - install yojson                      2.1.2    [required by awsm-codegen]
  - install zarith                      1.13     [required by awsm]

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

<><> 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" "zlib1g-dev"
- 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 ... 18735 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) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../6-zlib1g-dev_1%3a1.2.13.dfsg-1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.2.13.dfsg-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 zlib1g-dev:amd64 (1:1.2.13.dfsg-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+deb12u4) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.0  (cached)
-> retrieved asn1-combinators.0.2.6  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved awsm.0.1.0, awsm-codegen.0.1.0, awsm-lwt.0.1.0  (cached)
-> retrieved base.v0.15.1  (cached)
-> retrieved base64.3.5.1  (cached)
-> retrieved base_bigstring.v0.15.0  (cached)
-> retrieved base_quickcheck.v0.15.0  (cached)
-> retrieved bigstringaf.0.9.1  (cached)
-> retrieved bin_prot.v0.15.0  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved ca-certs.0.2.3  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved cmdliner.1.2.0  (cached)
-> retrieved cohttp.5.3.1  (cached)
-> retrieved cohttp-lwt.5.3.0, cohttp-lwt-unix.5.3.0  (cached)
-> retrieved conduit.6.2.2, conduit-lwt.6.2.2, conduit-lwt-unix.6.2.2  (cached)
-> retrieved core.v0.15.1  (cached)
-> installed conf-gmp.4
-> installed conf-pkg-config.3
-> retrieved core_kernel.v0.15.0  (cached)
-> installed camlp-streams.5.0.1
-> installed conf-zlib.1
-> installed base64.3.5.1
-> installed conf-gmp-powm-sec.3
-> retrieved core_unix.v0.15.2  (cached)
-> retrieved cppo.1.6.9  (cached)
-> retrieved cryptokit.1.19  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved cstruct.6.2.0  (cached)
-> retrieved domain-name.0.4.0  (cached)
-> installed csexp.1.5.2
-> installed domain-name.0.4.0
-> retrieved dune-build-info.3.15.2, dune-configurator.3.15.2  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved either.1.0.0  (cached)
-> retrieved eqaf.0.9  (cached)
-> retrieved expect_test_helpers_core.v0.15.0  (cached)
-> retrieved fieldslib.v0.15.0  (cached)
-> retrieved fix.20230505  (cached)
-> retrieved fmt.0.9.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> installed cmdliner.1.2.0
-> installed cppo.1.6.9
-> retrieved gen.1.1  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved int_repr.v0.15.0  (cached)
-> retrieved ipaddr.5.5.0, ipaddr-sexp.5.5.0, macaddr.5.5.0  (cached)
-> retrieved jane-street-headers.v0.15.0  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved jst-config.v0.15.1  (cached)
-> retrieved logs.0.7.0  (cached)
-> retrieved lwt.5.7.0  (cached)
-> installed duration.0.2.1
-> installed either.1.0.0
-> retrieved magic-mime.1.3.1  (cached)
-> installed jane-street-headers.v0.15.0
-> installed gmap.0.3.0
-> installed macaddr.5.5.0
-> retrieved menhir.20231231, menhirCST.20231231, menhirLib.20231231, menhirSdk.20231231  (cached)
-> installed dune-build-info.3.15.2
-> installed fix.20230505
-> installed ipaddr.5.5.0
-> installed menhirCST.20231231
-> installed magic-mime.1.3.1
-> installed menhirSdk.20231231
-> 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)
-> retrieved num.1.5  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocaml-version.3.6.7  (cached)
-> retrieved ocaml_intrinsics.v0.15.2  (cached)
-> installed dune-configurator.3.15.2
-> installed menhirLib.20231231
-> retrieved ocamlbuild.0.14.3  (cached)
-> retrieved ocamlfind.1.9.6  (cached)
-> installed ocaml-version.3.6.7
-> retrieved ocamlformat.0.26.2, ocamlformat-lib.0.26.2  (cached)
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed bigstringaf.0.9.1
-> installed ocaml_intrinsics.v0.15.2
-> retrieved ocamlgraph.2.1.0  (cached)
-> retrieved ocp-indent.1.8.1  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved parsexp.v0.15.0  (cached)
-> retrieved pbkdf.1.2.0  (cached)
-> retrieved ppx_assert.v0.15.0  (cached)
-> retrieved ppx_base.v0.15.0  (cached)
-> retrieved ppx_bench.v0.15.1  (cached)
-> retrieved ppx_bin_prot.v0.15.0  (cached)
-> retrieved ppx_cold.v0.15.0  (cached)
-> retrieved ppx_compare.v0.15.0  (cached)
-> retrieved ppx_custom_printf.v0.15.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_disable_unused_warnings.v0.15.0  (cached)
-> retrieved ppx_enumerate.v0.15.0  (cached)
-> retrieved ppx_expect.v0.15.1  (cached)
-> retrieved ppx_fields_conv.v0.15.0  (cached)
-> retrieved ppx_fixed_literal.v0.15.0  (cached)
-> retrieved ppx_hash.v0.15.0  (cached)
-> retrieved ppx_here.v0.15.0  (cached)
-> retrieved ppx_ignore_instrumentation.v0.15.0  (cached)
-> retrieved ppx_inline_test.v0.15.1  (cached)
-> retrieved ppx_jane.v0.15.0  (cached)
-> retrieved ppx_let.v0.15.0  (cached)
-> installed num.1.5
-> retrieved ppx_log.v0.15.0  (cached)
-> retrieved ppx_module_timer.v0.15.0  (cached)
-> retrieved ppx_optcomp.v0.15.0  (cached)
-> retrieved ppx_optional.v0.15.0  (cached)
-> retrieved ppx_pipebang.v0.15.0  (cached)
-> retrieved ppx_sexp_conv.v0.15.1  (cached)
-> retrieved ppx_sexp_message.v0.15.0  (cached)
-> retrieved ppx_sexp_value.v0.15.0  (cached)
-> retrieved ppx_stable.v0.15.0  (cached)
-> retrieved ppx_string.v0.15.0  (cached)
-> retrieved ppx_typerep_conv.v0.15.0  (cached)
-> retrieved ppx_variants_conv.v0.15.0  (cached)
-> installed ppx_derivers.1.2.1
-> installed angstrom.0.16.0
-> retrieved ppxlib.0.32.1  (cached)
-> retrieved ptime.1.1.0  (cached)
-> retrieved re.1.11.0  (cached)
-> retrieved result.1.5  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved sedlex.3.2  (cached)
-> installed seq.base
-> retrieved sexp_pretty.v0.15.1  (cached)
-> retrieved sexplib.v0.15.1  (cached)
-> retrieved sexplib0.v0.15.1  (cached)
-> retrieved spawn.v0.15.1  (cached)
-> retrieved splittable_random.v0.15.0  (cached)
-> retrieved stdio.v0.15.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved time_now.v0.15.0  (cached)
-> retrieved timezone.v0.15.0  (cached)
-> retrieved topkg.1.0.7  (cached)
-> retrieved typerep.v0.15.0  (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (cached)
-> installed result.1.5
-> retrieved uucp.15.1.0  (cached)
-> installed stringext.1.6.0
-> retrieved uuseg.15.1.0  (cached)
-> retrieved uutf.1.0.3  (cached)
-> retrieved variantslib.v0.15.0  (cached)
-> installed stdlib-shims.0.3.0
-> retrieved x509.0.16.5  (cached)
-> retrieved xmlm.1.4.0  (cached)
-> retrieved yojson.2.1.2  (cached)
-> installed spawn.v0.15.1
-> retrieved zarith.1.13  (cached)
-> installed sexplib0.v0.15.1
-> installed gen.1.1
-> installed re.1.11.0
-> installed ocamlfind.1.9.6
-> installed base-bytes.base
-> installed uri.4.4.0
-> installed yojson.2.1.2
-> installed ocplib-endian.1.2
-> installed ocamlgraph.2.1.0
-> installed ocp-indent.1.8.1
-> installed ocamlbuild.0.14.3
-> installed zarith.1.13
-> installed base.v0.15.1
-> installed lwt.5.7.0
-> installed variantslib.v0.15.0
-> installed fieldslib.v0.15.0
-> installed stdio.v0.15.0
-> installed cryptokit.1.19
-> installed typerep.v0.15.0
-> installed parsexp.v0.15.0
-> installed sexplib.v0.15.1
-> installed topkg.1.0.7
-> installed rresult.0.7.0
-> installed uutf.1.0.3
-> installed xmlm.1.4.0
-> installed fmt.0.9.0
-> installed ptime.1.1.0
-> installed astring.0.8.5
-> installed cstruct.6.2.0
-> installed menhir.20231231
-> installed fpath.0.7.3
-> installed jsonm.1.0.2
-> installed eqaf.0.9
-> installed asn1-combinators.0.2.6
-> installed logs.0.7.0
-> installed mirage-crypto.0.11.3
-> installed pbkdf.1.2.0
-> installed bos.0.2.1
-> installed mirage-crypto-rng.0.11.3
-> installed mirage-crypto-pk.0.11.3
-> installed ppxlib.0.32.1
-> installed ppx_disable_unused_warnings.v0.15.0
-> installed ppx_optcomp.v0.15.0
-> installed ppx_here.v0.15.0
-> installed ppx_enumerate.v0.15.0
-> installed ppx_cold.v0.15.0
-> installed ppx_fields_conv.v0.15.0
-> installed ppx_variants_conv.v0.15.0
-> installed ppx_compare.v0.15.0
-> installed ppx_typerep_conv.v0.15.0
-> installed ppx_ignore_instrumentation.v0.15.0
-> installed ppx_stable.v0.15.0
-> installed ppx_fixed_literal.v0.15.0
-> installed ppx_pipebang.v0.15.0
-> installed ppx_optional.v0.15.0
-> installed ppx_sexp_conv.v0.15.1
-> installed ppx_let.v0.15.0
-> installed sedlex.3.2
-> installed mirage-crypto-ec.0.11.3
-> installed uri-sexp.4.4.0
-> installed ipaddr-sexp.5.5.0
-> installed ppx_hash.v0.15.0
-> installed ppx_assert.v0.15.0
-> installed x509.0.16.5
-> installed ppx_sexp_value.v0.15.0
-> installed ca-certs.0.2.3
-> installed ppx_sexp_message.v0.15.0
-> installed ppx_custom_printf.v0.15.0
-> installed ppx_base.v0.15.0
-> installed conduit.6.2.2
-> installed cohttp.5.3.1
-> installed jst-config.v0.15.1
-> installed conduit-lwt.6.2.2
-> installed ppx_log.v0.15.0
-> installed sexp_pretty.v0.15.1
-> installed cohttp-lwt.5.3.0
-> installed time_now.v0.15.0
-> installed ppx_string.v0.15.0
-> installed bin_prot.v0.15.0
-> installed conduit-lwt-unix.6.2.2
-> installed ppx_bin_prot.v0.15.0
-> installed ppx_module_timer.v0.15.0
-> installed ppx_inline_test.v0.15.1
-> installed cohttp-lwt-unix.5.3.0
-> installed ppx_bench.v0.15.1
-> installed ppx_expect.v0.15.1
-> installed splittable_random.v0.15.0
-> installed uucp.15.1.0
-> installed base_quickcheck.v0.15.0
-> installed uuseg.15.1.0
-> installed ppx_jane.v0.15.0
-> installed int_repr.v0.15.0
-> installed base_bigstring.v0.15.0
-> installed ocamlformat-lib.0.26.2
-> installed ocamlformat.0.26.2
-> installed core.v0.15.1
-> installed expect_test_helpers_core.v0.15.0
-> installed timezone.v0.15.0
-> installed core_kernel.v0.15.0
-> installed core_unix.v0.15.2
-> installed awsm-codegen.0.1.0
-> installed awsm.0.1.0
-> installed awsm-lwt.0.1.0
Done.

<><> ocp-indent.1.8.1 installed successfully ><><><><><><><><><><><><><><><><><>
=> This package requires additional configuration for use in editors. Install package 'user-setup', or manually:

   * for Emacs, add these lines to ~/.emacs:
     (add-to-list 'load-path "/home/opam/.opam/4.14/share/emacs/site-lisp")
     (require 'ocp-indent)

   * for Vim, add this line to ~/.vimrc:
     set rtp^="/home/opam/.opam/4.14/share/ocp-indent/vim"
# Run eval $(opam env) to update the current shell environment
2024-05-15 20:49.43 ---> saved as "cc7634d261d1215dd33b2ad031e2e20c61358104b7114a47d0ba9a81bae491d7"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved awsm-lwt.0.1.0  (https://github.com/solvuu/awsm/archive/refs/tags/0.1.0.tar.gz)
-> removed   awsm-lwt.0.1.0
-> installed awsm-lwt.0.1.0
Done.
# Run eval $(opam env) to update the current shell environment
2024-05-15 20:50.12 ---> saved as "ec6898b83ef75e9e1918d1c63f76c5d16e13c348d97b20215d705e98b0e8180a"

/home/opam: (run (shell  "opam reinstall --with-test --verbose awsm-lwt.0.1.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\" != 'awsm-lwt.0.1.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 awsm-lwt 0.1.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4:
-> retrieved awsm-lwt.0.1.0  (cached)
Processing  2/4: [awsm-lwt: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "awsm-lwt" "-j" "31" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/awsm-lwt.0.1.0)
-> compiled  awsm-lwt.0.1.0
-> removed   awsm-lwt.0.1.0
-> installed awsm-lwt.0.1.0
Done.
# Run eval $(opam env) to update the current shell environment
2024-05-15 20:50.44 ---> saved as "cfa79bd6130c30a66d880d535846d3caf48b9ed646c28a57ea7ac2618521b5b9"
Job succeeded
2024-05-15 20:50.52: Job succeeded