(not at the head of any monitored branch or PR)
2025-04-16 07:33.39: New job: test oidc.0.2.0 with x509.1.0.6, using opam 2.3
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27763/head (b39d2f53cb93ceb35bf42e437269ae15a231f3f7)
                              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/27763/head" && git reset --hard b39d2f53
git fetch origin master
git merge --no-edit e6dedb1eed4b290f755e8755ac00728e09854600
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:ec682473bce2c2c47749ae1025968d0b585bdde0fcd2b8e7871a79f983cc1050
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn x509.1.0.6 1.0.6
RUN opam reinstall x509.1.0.6; \
    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" != 'x509.1.0.6' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall oidc.0.2.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'oidc.0.2.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test oidc.0.2.0) || true
RUN opam reinstall --with-test --verbose oidc.0.2.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'oidc.0.2.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2025-04-16 07:33.39: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:ec682473bce2c2c47749ae1025968d0b585bdde0fcd2b8e7871a79f983cc1050-x509.1.0.6-oidc.0.2.0-b39d2f53cb93ceb35bf42e437269ae15a231f3f7"
2025-04-16 07:33.39: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:ec682473bce2c2c47749ae1025968d0b585bdde0fcd2b8e7871a79f983cc1050)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn x509.1.0.6 1.0.6"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall x509.1.0.6;\
             \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\" != 'x509.1.0.6' && 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 oidc.0.2.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'oidc.0.2.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test oidc.0.2.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose oidc.0.2.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'oidc.0.2.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-04-16 07:33.39: Waiting for resource in pool OCluster
2025-04-16 08:12.32: Waiting for worker…
2025-04-16 08:17.40: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
Updating files:  59% (13534/22874)
Updating files:  60% (13725/22874)
Updating files:  61% (13954/22874)
Updating files:  62% (14182/22874)
Updating files:  63% (14411/22874)
Updating files:  64% (14640/22874)
Updating files:  65% (14869/22874)
Updating files:  66% (15097/22874)
Updating files:  67% (15326/22874)
Updating files:  68% (15555/22874)
Updating files:  69% (15784/22874)
Updating files:  70% (16012/22874)
Updating files:  71% (16241/22874)
Updating files:  72% (16470/22874)
Updating files:  73% (16699/22874)
Updating files:  74% (16927/22874)
Updating files:  75% (17156/22874)
Updating files:  76% (17385/22874)
Updating files:  77% (17613/22874)
Updating files:  78% (17842/22874)
Updating files:  79% (18071/22874)
Updating files:  80% (18300/22874)
Updating files:  81% (18528/22874)
Updating files:  82% (18757/22874)
Updating files:  83% (18986/22874)
Updating files:  84% (19215/22874)
Updating files:  85% (19443/22874)
Updating files:  86% (19672/22874)
Updating files:  87% (19901/22874)
Updating files:  88% (20130/22874)
Updating files:  89% (20358/22874)
Updating files:  90% (20587/22874)
Updating files:  91% (20816/22874)
Updating files:  92% (21045/22874)
Updating files:  93% (21273/22874)
Updating files:  94% (21502/22874)
Updating files:  95% (21731/22874)
Updating files:  96% (21960/22874)
Updating files:  97% (22188/22874)
Updating files:  98% (22417/22874)
Updating files:  99% (22646/22874)
Updating files: 100% (22874/22874)
Updating files: 100% (22874/22874), done.
HEAD is now at e6dedb1eed Merge pull request #27749 from toots/opam-publish-ffmpeg.1.2.3
Merge made by the 'ort' strategy.
 packages/x509/x509.1.0.6/opam | 60 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)
 create mode 100644 packages/x509/x509.1.0.6/opam

(from ocaml/opam:debian-12-ocaml-4.14@sha256:ec682473bce2c2c47749ae1025968d0b585bdde0fcd2b8e7871a79f983cc1050)
2025-04-16 08:18.03 ---> using "c803204894feb69882c6f8a93debc38d237226aa0742423bb8ecaf2af7ff192b" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-04-16 08:18.03 ---> using "ece3a69ccd84d1bc3f538d5d927c0677b7135e0ed5c5cf4c9c4520c17f38358a" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [y/n] y
[NOTE] The 'jobs' option was reset, its value was 39 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=39 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-04-16 08:18.03 ---> using "d5e769d11ef10526cdb73f418d047f005a7a5b69bb629bfc2d2d388c7c8b8cdf" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=12
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2025-04-16 08:18.03 ---> using "715b54b0301c5ea573dce9ba6774fadf0f93b64dc7a24253bfe6c76c219d7da5" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2025-04-16 08:18.03 ---> using "2963a137c235cb1efcbb6bb5c962ec263787dd9c8275045ae610283ae366c13d" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-04-16 08:18.06 ---> using "72197177bf27231b4bd80e3225d73772d558e41cb7b32b4e17ff6d2de15baf0b" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-04-16 08:18.06 ---> using "571557d91170c1dbdbbbed4eb2aedf3d8cb920dd1bd2b2fa4f82214a74cc1fd0" 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-security bookworm-security/main amd64 Packages [254 kB]
- Fetched 357 kB in 0s (755 kB/s)
- Reading package lists...
- 
2025-04-16 08:18.06 ---> using "547e347da3aea25898ca8a7b5c27f495705d67dd0f19300c651f329609e71371" from cache

/home/opam: (run (shell "opam pin add -k version -yn x509.1.0.6 1.0.6"))
x509 is now pinned to version 1.0.6
2025-04-16 08:18.06 ---> using "b0ae616d31fdcfb5b7cd08f3f3f4251a413789b07f5616efc9c925433971f5eb" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall x509.1.0.6;\
                        \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\" != 'x509.1.0.6' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
x509.1.0.6 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 29 packages
  - install asn1-combinators  0.3.2          [required by x509]
  - install base64            3.5.1          [required by x509]
  - install conf-gmp          5              [required by conf-gmp-powm-sec, zarith]
  - install conf-gmp-powm-sec 4              [required by mirage-crypto-pk]
  - install conf-pkg-config   4              [required by zarith]
  - install csexp             1.5.2          [required by dune-configurator]
  - install digestif          1.2.0          [required by mirage-crypto-ec, kdf, mirage-crypto-pk]
  - install domain-name       0.4.1          [required by x509]
  - install dune              3.18.0         [required by x509]
  - install dune-configurator 3.18.0         [required by mirage-crypto-ec]
  - install duration          0.2.1          [required by mirage-crypto-rng]
  - install eqaf              0.10           [required by mirage-crypto-ec, mirage-crypto-pk]
  - install fmt               0.10.0         [required by x509]
  - install gmap              0.3.0          [required by x509]
  - install ipaddr            5.6.0          [required by x509]
  - install kdf               1.0.0          [required by x509]
  - install logs              0.8.0          [required by x509]
  - install macaddr           5.6.0          [required by ipaddr]
  - install mirage-crypto     2.0.0          [required by x509]
  - install mirage-crypto-ec  2.0.0          [required by x509]
  - install mirage-crypto-pk  2.0.0          [required by x509]
  - install mirage-crypto-rng 2.0.0          [required by x509]
  - install ocamlbuild        0.16.1         [required by fmt, logs]
  - install ocamlfind         1.9.8          [required by fmt, logs]
  - install ohex              0.2.0          [required by x509]
  - install ptime             1.2.0          [required by x509]
  - install topkg             1.0.8          [required by fmt, logs]
  - install x509              1.0.6 (pinned)
  - 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 ... 18747 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+deb12u10) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved asn1-combinators.0.3.2  (cached)
-> retrieved base64.3.5.1  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-pkg-config.4
-> installed conf-gmp.5
-> installed conf-gmp-powm-sec.4
-> retrieved digestif.1.2.0  (cached)
-> retrieved domain-name.0.4.1  (cached)
-> retrieved dune.3.18.0, dune-configurator.3.18.0  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved eqaf.0.10  (cached)
-> retrieved fmt.0.10.0  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved ipaddr.5.6.0, macaddr.5.6.0  (cached)
-> retrieved kdf.1.0.0  (cached)
-> retrieved logs.0.8.0  (cached)
-> retrieved mirage-crypto.2.0.0, mirage-crypto-ec.2.0.0, mirage-crypto-pk.2.0.0, mirage-crypto-rng.2.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ohex.0.2.0  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved topkg.1.0.8  (cached)
-> retrieved x509.1.0.6  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.0.8
-> installed fmt.0.10.0
-> installed ptime.1.2.0
-> installed logs.0.8.0
-> installed dune.3.18.0
-> installed duration.0.2.1
-> installed ohex.0.2.0
-> installed gmap.0.3.0
-> installed csexp.1.5.2
-> installed asn1-combinators.0.3.2
-> installed base64.3.5.1
-> installed domain-name.0.4.1
-> installed eqaf.0.10
-> installed macaddr.5.6.0
-> installed ipaddr.5.6.0
-> installed digestif.1.2.0
-> installed dune-configurator.3.18.0
-> installed mirage-crypto.2.0.0
-> installed kdf.1.0.0
-> installed mirage-crypto-rng.2.0.0
-> installed mirage-crypto-pk.2.0.0
-> installed mirage-crypto-ec.2.0.0
-> installed x509.1.0.6
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-16 08:18.06 ---> using "dd2616e8251c8d8a06996ade0e912e3ca6f15b0f6fca2ffe95f715f7d2f1eab5" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall oidc.0.2.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'oidc.0.2.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
oidc.0.2.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 10 packages
  - install angstrom           0.16.1 [required by uri]
  - install astring            0.8.5  [required by jose]
  - install bigstringaf        0.10.0 [required by angstrom]
  - install jose               0.10.0 [required by oidc]
  - install ocaml-syntax-shims 1.0.0  [required by angstrom]
  - install oidc               0.2.0
  - install seq                base   [required by yojson]
  - install stringext          1.6.0  [required by uri]
  - install uri                4.4.0  [required by oidc]
  - install yojson             2.2.2  [required by oidc]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved jose.0.10.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved oidc.0.2.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved stringext.1.6.0  (cached)
-> retrieved uri.4.4.0  (cached)
-> retrieved yojson.2.2.2  (cached)
-> installed stringext.1.6.0
-> installed bigstringaf.0.10.0
-> installed ocaml-syntax-shims.1.0.0
-> installed angstrom.0.16.1
-> installed astring.0.8.5
-> installed yojson.2.2.2
-> installed jose.0.10.0
-> installed uri.4.4.0
-> installed oidc.0.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-16 08:18.25 ---> saved as "de5bfc852c2100281969440e81909ab4363872227cefad5ee2c461b2fe4e62fc"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test oidc.0.2.0) || true"))
The following actions will be performed:
=== recompile 8 packages
  - recompile fmt               0.10.0         [uses cmdliner]
  - recompile jose              0.10.0         [uses x509]
  - recompile logs              0.8.0          [uses cmdliner]
  - recompile mirage-crypto-ec  2.0.0          [uses mirage-crypto-rng]
  - recompile mirage-crypto-pk  2.0.0          [uses mirage-crypto-rng]
  - recompile mirage-crypto-rng 2.0.0          [uses logs]
  - recompile oidc              0.2.0
  - recompile x509              1.0.6 (pinned) [uses fmt]
=== install 10 packages
  - install   alcotest          1.9.0          [required by oidc]
  - install   cmdliner          1.3.0          [required by alcotest]
  - install   containers        3.15           [required by oidc]
  - install   either            1.0.0          [required by containers]
  - install   junit             2.2.0          [required by oidc]
  - install   junit_alcotest    2.2.0          [required by oidc]
  - install   re                1.12.0         [required by alcotest]
  - install   stdlib-shims      0.3.0          [required by alcotest]
  - install   tyxml             4.6.0          [required by junit]
  - install   uutf              1.0.4          [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.0  (https://github.com/mirage/alcotest/releases/download/1.9.0/alcotest-1.9.0.tbz)
-> retrieved cmdliner.1.3.0  (https://erratique.ch/software/cmdliner/releases/cmdliner-1.3.0.tbz)
-> retrieved containers.3.15  (https://github.com/c-cube/ocaml-containers/releases/download/v3.15/containers-3.15.tbz)
-> retrieved either.1.0.0  (https://github.com/mirage/either/releases/download/1.0.0/either-1.0.0.tbz)
-> retrieved fmt.0.10.0  (https://erratique.ch/software/fmt/releases/fmt-0.10.0.tbz)
-> installed either.1.0.0
-> retrieved jose.0.10.0  (https://github.com/ulrikstrid/ocaml-jose/releases/download/v0.10.0/jose-0.10.0.tbz)
-> retrieved junit.2.2.0, junit_alcotest.2.2.0  (https://github.com/Khady/ocaml-junit/releases/download/2.2.0/junit-2.2.0.tbz)
-> retrieved logs.0.8.0  (https://erratique.ch/software/logs/releases/logs-0.8.0.tbz)
-> retrieved mirage-crypto-ec.2.0.0, mirage-crypto-pk.2.0.0, mirage-crypto-rng.2.0.0  (https://github.com/mirage/mirage-crypto/releases/download/v2.0.0/mirage-crypto-2.0.0.tbz)
-> installed cmdliner.1.3.0
-> installed containers.3.15
-> retrieved oidc.0.2.0  (https://github.com/ulrikstrid/ocaml-oidc/releases/download/v0.2.0/oidc-v0.2.0.tbz)
-> retrieved re.1.12.0  (https://github.com/ocaml/ocaml-re/releases/download/1.12.0/re-1.12.0.tbz)
-> retrieved stdlib-shims.0.3.0  (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz)
-> installed stdlib-shims.0.3.0
-> retrieved tyxml.4.6.0  (https://github.com/ocsigen/tyxml/releases/download/4.6.0/tyxml-4.6.0.tbz)
-> removed   oidc.0.2.0
-> removed   jose.0.10.0
-> installed re.1.12.0
-> retrieved uutf.1.0.4  (https://erratique.ch/software/uutf/releases/uutf-1.0.4.tbz)
-> removed   x509.1.0.6
-> removed   mirage-crypto-ec.2.0.0
-> removed   mirage-crypto-pk.2.0.0
-> removed   mirage-crypto-rng.2.0.0
-> removed   logs.0.8.0
-> removed   fmt.0.10.0
-> installed fmt.0.10.0
-> installed uutf.1.0.4
-> installed logs.0.8.0
-> installed mirage-crypto-rng.2.0.0
-> installed alcotest.1.9.0
-> installed mirage-crypto-pk.2.0.0
-> installed tyxml.4.6.0
-> installed junit.2.2.0
[ERROR] The compilation of junit_alcotest.2.2.0 failed at "dune build -p junit_alcotest -j 71 @install".
-> installed mirage-crypto-ec.2.0.0
-> installed x509.1.0.6
-> installed jose.0.10.0

#=== ERROR while compiling junit_alcotest.2.2.0 ===============================#
# context              2.3.0 | linux/x86_64 | ocaml-base-compiler.4.14.2 | file:///home/opam/opam-repository
# path                 ~/.opam/4.14/.opam-switch/build/junit_alcotest.2.2.0
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p junit_alcotest -j 71 @install
# exit-code            1
# env-file             ~/.opam/log/junit_alcotest-7-2848ff.env
# output-file          ~/.opam/log/junit_alcotest-7-2848ff.out
### output ###
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I alcotest/.junit_alcotest.objs/byte -I alcotest/.junit_alcotest.objs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/junit -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/tyxml -I /home/opam/.opam/4.14/lib/tyxml/functor -I /home/opam/.opam/4.14/lib/uutf -intf-suffix .ml -no-alias-deps -o alcotest/.junit_alcotest.objs/native/junit_alcotest.cmx -c -impl alcotest/junit_alcotest.ml)
# File "alcotest/junit_alcotest.ml", line 35, characters 6-32:
# 35 |     | Alcotest_engine__Core.Skip as exn ->
#            ^^^^^^^^^^^^^^^^^^^^^^^^^^
# Error: Unbound constructor Alcotest_engine__Core.Skip
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I alcotest/.junit_alcotest.objs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/junit -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/tyxml -I /home/opam/.opam/4.14/lib/tyxml/functor -I /home/opam/.opam/4.14/lib/uutf -intf-suffix .ml -no-alias-deps -o alcotest/.junit_alcotest.objs/byte/junit_alcotest.cmo -c -impl alcotest/junit_alcotest.ml)
# File "alcotest/junit_alcotest.ml", line 35, characters 6-32:
# 35 |     | Alcotest_engine__Core.Skip as exn ->
#            ^^^^^^^^^^^^^^^^^^^^^^^^^^
# Error: Unbound constructor Alcotest_engine__Core.Skip



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build junit_alcotest 2.2.0
+- 
+- The following changes have been performed (the rest was aborted)
| - remove    oidc              0.2.0
| - recompile fmt               0.10.0
| - recompile jose              0.10.0
| - recompile logs              0.8.0
| - recompile mirage-crypto-ec  2.0.0
| - recompile mirage-crypto-pk  2.0.0
| - recompile mirage-crypto-rng 2.0.0
| - recompile x509              1.0.6
| - install   alcotest          1.9.0
| - install   cmdliner          1.3.0
| - install   containers        3.15
| - install   either            1.0.0
| - install   junit             2.2.0
| - install   re                1.12.0
| - install   stdlib-shims      0.3.0
| - install   tyxml             4.6.0
| - install   uutf              1.0.4
+- 
# 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-20250416081826.export"
Or you can retry to install your package selection with:
    /usr/bin/opam install --restore
2025-04-16 08:19.04 ---> saved as "00212adc4de8101a07004a70d50194ae8e2ac255013c901c0fffd60d5117b938"

/home/opam: (run (shell  "opam reinstall --with-test --verbose oidc.0.2.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'oidc.0.2.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
oidc.0.2.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 2 packages
  - install junit_alcotest 2.2.0 [required by oidc]
  - install oidc           0.2.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/6: [junit_alcotest.2.2.0: extract]
-> retrieved junit_alcotest.2.2.0  (cached)
Processing  2/6: [oidc.0.2.0: extract]
Processing  3/6: [oidc.0.2.0: extract] [junit_alcotest: dune build]
-> retrieved oidc.0.2.0  (cached)
Processing  3/6: [junit_alcotest: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "junit_alcotest" "-j" "71" "@install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/junit_alcotest.2.2.0)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I alcotest/.junit_alcotest.objs/byte -I alcotest/.junit_alcotest.objs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/junit -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/tyxml -I /home/opam/.opam/4.14/lib/tyxml/functor -I /home/opam/.opam/4.14/lib/uutf -intf-suffix .ml -no-alias-deps -o alcotest/.junit_alcotest.objs/native/junit_alcotest.cmx -c -impl alcotest/junit_alcotest.ml)
- File "alcotest/junit_alcotest.ml", line 35, characters 6-32:
- 35 |     | Alcotest_engine__Core.Skip as exn ->
-            ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Error: Unbound constructor Alcotest_engine__Core.Skip
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I alcotest/.junit_alcotest.objs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/junit -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/tyxml -I /home/opam/.opam/4.14/lib/tyxml/functor -I /home/opam/.opam/4.14/lib/uutf -intf-suffix .ml -no-alias-deps -o alcotest/.junit_alcotest.objs/byte/junit_alcotest.cmo -c -impl alcotest/junit_alcotest.ml)
- File "alcotest/junit_alcotest.ml", line 35, characters 6-32:
- 35 |     | Alcotest_engine__Core.Skip as exn ->
-            ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Error: Unbound constructor Alcotest_engine__Core.Skip
[ERROR] The compilation of junit_alcotest.2.2.0 failed at "dune build -p junit_alcotest -j 71 @install".

#=== ERROR while compiling junit_alcotest.2.2.0 ===============================#
# context              2.3.0 | linux/x86_64 | ocaml-base-compiler.4.14.2 | file:///home/opam/opam-repository
# path                 ~/.opam/4.14/.opam-switch/build/junit_alcotest.2.2.0
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p junit_alcotest -j 71 @install
# exit-code            1
# env-file             ~/.opam/log/junit_alcotest-8-392fb0.env
# output-file          ~/.opam/log/junit_alcotest-8-392fb0.out
### output ###
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I alcotest/.junit_alcotest.objs/byte -I alcotest/.junit_alcotest.objs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/junit -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/tyxml -I /home/opam/.opam/4.14/lib/tyxml/functor -I /home/opam/.opam/4.14/lib/uutf -intf-suffix .ml -no-alias-deps -o alcotest/.junit_alcotest.objs/native/junit_alcotest.cmx -c -impl alcotest/junit_alcotest.ml)
# File "alcotest/junit_alcotest.ml", line 35, characters 6-32:
# 35 |     | Alcotest_engine__Core.Skip as exn ->
#            ^^^^^^^^^^^^^^^^^^^^^^^^^^
# Error: Unbound constructor Alcotest_engine__Core.Skip
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I alcotest/.junit_alcotest.objs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/junit -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/tyxml -I /home/opam/.opam/4.14/lib/tyxml/functor -I /home/opam/.opam/4.14/lib/uutf -intf-suffix .ml -no-alias-deps -o alcotest/.junit_alcotest.objs/byte/junit_alcotest.cmo -c -impl alcotest/junit_alcotest.ml)
# File "alcotest/junit_alcotest.ml", line 35, characters 6-32:
# 35 |     | Alcotest_engine__Core.Skip as exn ->
#            ^^^^^^^^^^^^^^^^^^^^^^^^^^
# Error: Unbound constructor Alcotest_engine__Core.Skip



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions were aborted
| - install oidc 0.2.0
+- 
+- The following actions failed
| - build junit_alcotest 2.2.0
+- 
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose oidc.0.2.0' failed.
[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:  junit_alcotest.2.2.0
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose oidc.0.2.0;
        res=$?;
        test "$res" != 31 && exit "$res";
        export OPAMCLI=2.0;
        build_dir=$(opam var prefix)/.opam-switch/build;
        failed=$(ls "$build_dir");
        partial_fails="";
        for pkg in $failed; do
          if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'oidc.0.2.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
2025-04-16 08:19.22: Job failed: Failed: Build failed
2025-04-16 08:19.22: Log analysis:
2025-04-16 08:19.22: >>> 
[ERROR] The compilation of junit_alcotest.2.2.0 failed at "dune build -p junit_alcotest -j 71 @install".
 (score = 20)
2025-04-16 08:19.22: >>> 
# Error: Unbound constructor Alcotest_engine__Core.Skip
 (score = 48)
2025-04-16 08:19.22: >>> 
# Error: Unbound constructor Alcotest_engine__Core.Skip
 (score = 48)
2025-04-16 08:19.22: >>> 
[ERROR] The compilation of junit_alcotest.2.2.0 failed at "dune build -p junit_alcotest -j 71 @install".
 (score = 20)
2025-04-16 08:19.22: >>> 
# Error: Unbound constructor Alcotest_engine__Core.Skip
 (score = 48)
2025-04-16 08:19.22: >>> 
# Error: Unbound constructor Alcotest_engine__Core.Skip
 (score = 48)
2025-04-16 08:19.22: >>> 
opam-repo-ci detected dependencies failing:  junit_alcotest.2.2.0
 (score = 75)
2025-04-16 08:19.22:  junit_alcotest.2.2.0 failed to build