(not at the head of any monitored branch or PR)
2025-02-17 01:48.29: New job: test owee.0.8, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27453/head (7f5e4ebe590177150a262f97807f05af19cbd3a6)
                              on debian-12-ocaml-4.14/s390x

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/27453/head" && git reset --hard 7f5e4ebe
git fetch origin master
git merge --no-edit a17a63ad3c59d7e1f745e87d85b858a34e0cda25
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:ac3cf899f04099ced40ba46c845e7c30c7c501c67ecc8a35bd677c4b8519f1f1
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn owee.0.8 0.8
RUN opam reinstall owee.0.8; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'owee.0.8' && 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 owee.0.8) || true
RUN opam reinstall --with-test --verbose owee.0.8; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'owee.0.8' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2025-02-17 01:48.29: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:ac3cf899f04099ced40ba46c845e7c30c7c501c67ecc8a35bd677c4b8519f1f1-owee.0.8-7f5e4ebe590177150a262f97807f05af19cbd3a6"
2025-02-17 01:48.29: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:ac3cf899f04099ced40ba46c845e7c30c7c501c67ecc8a35bd677c4b8519f1f1)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn owee.0.8 0.8"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall owee.0.8;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'owee.0.8' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test owee.0.8) || true"))
 (run (shell  "opam reinstall --with-test --verbose owee.0.8;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'owee.0.8' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-02-17 01:48.29: Waiting for resource in pool OCluster
2025-02-17 01:48.30: Waiting for worker…
2025-02-17 02:04.04: Got resource from pool OCluster
Building on s390x-worker-01.marist.ci.dev
All commits already cached
Updating files:  31% (7293/23369)
Updating files:  32% (7479/23369)
Updating files:  33% (7712/23369)
Updating files:  34% (7946/23369)
Updating files:  35% (8180/23369)
Updating files:  36% (8413/23369)
Updating files:  37% (8647/23369)
Updating files:  38% (8881/23369)
Updating files:  39% (9114/23369)
Updating files:  40% (9348/23369)
Updating files:  41% (9582/23369)
Updating files:  42% (9815/23369)
Updating files:  43% (10049/23369)
Updating files:  44% (10283/23369)
Updating files:  45% (10517/23369)
Updating files:  46% (10750/23369)
Updating files:  47% (10984/23369)
Updating files:  48% (11218/23369)
Updating files:  49% (11451/23369)
Updating files:  50% (11685/23369)
Updating files:  51% (11919/23369)
Updating files:  52% (12152/23369)
Updating files:  53% (12386/23369)
Updating files:  54% (12620/23369)
Updating files:  55% (12853/23369)
Updating files:  56% (13087/23369)
Updating files:  57% (13321/23369)
Updating files:  58% (13555/23369)
Updating files:  58% (13768/23369)
Updating files:  59% (13788/23369)
Updating files:  60% (14022/23369)
Updating files:  61% (14256/23369)
Updating files:  62% (14489/23369)
Updating files:  63% (14723/23369)
Updating files:  64% (14957/23369)
Updating files:  65% (15190/23369)
Updating files:  66% (15424/23369)
Updating files:  67% (15658/23369)
Updating files:  68% (15891/23369)
Updating files:  69% (16125/23369)
Updating files:  70% (16359/23369)
Updating files:  71% (16592/23369)
Updating files:  72% (16826/23369)
Updating files:  73% (17060/23369)
Updating files:  74% (17294/23369)
Updating files:  74% (17510/23369)
Updating files:  75% (17527/23369)
Updating files:  76% (17761/23369)
Updating files:  77% (17995/23369)
Updating files:  78% (18228/23369)
Updating files:  79% (18462/23369)
Updating files:  80% (18696/23369)
Updating files:  81% (18929/23369)
Updating files:  82% (19163/23369)
Updating files:  83% (19397/23369)
Updating files:  84% (19630/23369)
Updating files:  85% (19864/23369)
Updating files:  86% (20098/23369)
Updating files:  87% (20332/23369)
Updating files:  87% (20470/23369)
Updating files:  88% (20565/23369)
Updating files:  89% (20799/23369)
Updating files:  90% (21033/23369)
Updating files:  91% (21266/23369)
Updating files:  92% (21500/23369)
Updating files:  93% (21734/23369)
Updating files:  94% (21967/23369)
Updating files:  95% (22201/23369)
Updating files:  96% (22435/23369)
Updating files:  97% (22668/23369)
Updating files:  98% (22902/23369)
Updating files:  99% (23136/23369)
Updating files: 100% (23369/23369)
Updating files: 100% (23369/23369), done.
HEAD is now at a17a63ad3c Merge pull request #27452 from chetmurthy/release-pcre2-ocaml-8.0.3
Updating a17a63ad3c..7f5e4ebe59
Fast-forward
 packages/owee/owee.0.8/opam | 43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)
 create mode 100644 packages/owee/owee.0.8/opam

(from ocaml/opam:debian-12-ocaml-4.14@sha256:ac3cf899f04099ced40ba46c845e7c30c7c501c67ecc8a35bd677c4b8519f1f1)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:ac3cf899f04099ced40ba46c845e7c30c7c501c67ecc8a35bd677c4b8519f1f1' locally
docker.io/ocaml/opam@sha256:ac3cf899f04099ced40ba46c845e7c30c7c501c67ecc8a35bd677c4b8519f1f1: Pulling from ocaml/opam
92bc3bb38690: Already exists
8ceea505e23e: Already exists
2a468ae4380f: Already exists
aa8529ea5f7b: Already exists
2b524421cb76: Already exists
fdd13dbf1385: Already exists
418bd7fb5220: Already exists
a697c88e27b6: Already exists
29170f2f11a8: Already exists
89631b220465: Already exists
614fe0af4fa9: Already exists
7532be30f496: Already exists
7170861ebe90: Already exists
4593907e761b: Already exists
83eed8fae5bb: Already exists
68239365c2a1: Already exists
67898b02a82c: Already exists
9af85476ae7c: Already exists
5c2f5e273ba9: Already exists
4dad5e9656aa: Already exists
4f4fb700ef54: Already exists
0f00f795dbfa: Already exists
5df626626dc1: Already exists
f92421e31eb8: Already exists
d0290048f6bf: Already exists
4bf1087b6b16: Already exists
f84317d5024f: Already exists
0c9b071ba144: Already exists
1fa5f6ebedf8: Already exists
329f78daa6e1: Already exists
c4118cdd2542: Already exists
54de1c7bb5e0: Already exists
43e311789910: Already exists
4d970b385266: Already exists
821379541537: Already exists
ff9eb55be269: Already exists
5bddef197392: Already exists
54f547f12ab4: Already exists
592f971cee7d: Pulling fs layer
d292184b4448: Pulling fs layer
c8372c48d745: Pulling fs layer
dd2099f559e4: Pulling fs layer
2431dd17fc24: Pulling fs layer
dd2099f559e4: Waiting
2431dd17fc24: Waiting
c8372c48d745: Download complete
592f971cee7d: Verifying Checksum
592f971cee7d: Download complete
2431dd17fc24: Verifying Checksum
2431dd17fc24: Download complete
dd2099f559e4: Verifying Checksum
dd2099f559e4: Download complete
d292184b4448: Verifying Checksum
d292184b4448: Download complete
592f971cee7d: Pull complete
d292184b4448: Pull complete
c8372c48d745: Pull complete
dd2099f559e4: Pull complete
2431dd17fc24: Pull complete
Digest: sha256:ac3cf899f04099ced40ba46c845e7c30c7c501c67ecc8a35bd677c4b8519f1f1
Status: Downloaded newer image for ocaml/opam@sha256:ac3cf899f04099ced40ba46c845e7c30c7c501c67ecc8a35bd677c4b8519f1f1
2025-02-17 02:04.11 ---> using "15cffe94eeb6bc95d7d0978ad36777787bba9a139daa640d7a3a3b3ec3a45319" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-02-17 02:04.11 ---> using "b86470ce2d0f5187ce9a040060d9c27e8fef214d7d35147e094fe777d3a03f5c" from cache

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

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

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] no changes from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from file:///home/opam/opam-repository
2025-02-17 02:04.11 ---> using "656167957612ba2b77baa6aabcd85fa619b14e9105bf08d3dae23651d38f20da" 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.4.0~alpha1~dev (747e73667ad9d054b0f736be205c0013e1bec087)
# self-upgrade         no
# system               arch=s390x 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                 3
# repositories         1 (local), 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-02-17 02:04.11 ---> using "8bfb9636f196f23b324e1fef25d1eb5d5c7a4def40489fd1d909b506cc48af20" 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-02-17 02:04.11 ---> using "b962bc5de813febb9d5412dc4db28191f046eb34e36c915e35ad48cfec3be251" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-02-17 02:05.33 ---> saved as "a37c0e1d10b1f078f6e440edbae7fb12a6922fc076d781d7cc4eb6ffc2ebf60a"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-02-17 02:08.48 ---> saved as "b42369e206b8ae6315abae35a12ebb8fd28541be154d835333178e5314bf426a"

/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 s390x Packages [211 kB]
- Fetched 315 kB in 1s (249 kB/s)
- Reading package lists...
- 
2025-02-17 02:09.00 ---> saved as "083dc8a741ede2a916ae320cfd4e0c26b3a2fd1744910617eb249224da0aae7f"

/home/opam: (run (shell "opam pin add -k version -yn owee.0.8 0.8"))
owee is now pinned to version 0.8
2025-02-17 02:09.05 ---> saved as "78e5eaa5ce3c413f55b0a2d991d663baacfcad79ce654ba22033b45c825d48a0"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall owee.0.8;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'owee.0.8' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
owee.0.8 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
  - install dune 3.17.2       [required by owee]
  - install owee 0.8 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.17.2  (cached)
-> retrieved owee.0.8  (https://github.com/let-def/owee/releases/download/v0.8/owee-0.8.tbz)
-> installed dune.3.17.2
-> installed owee.0.8
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-17 02:10.15 ---> saved as "d2abf13fcaf194b43779df41b60791ca6ceb3bb45221eb2b858457c1d3c36728"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test owee.0.8) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile owee     0.8 (pinned)
=== install 1 package
  - install   cmdliner 1.3.0        [required by owee]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.1.3.0  (https://erratique.ch/software/cmdliner/releases/cmdliner-1.3.0.tbz)
-> removed   owee.0.8
-> installed cmdliner.1.3.0
-> installed owee.0.8
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-17 02:11.10 ---> saved as "ea2992429409084d946d08bcee7e32afee980874f720256ad792868d903f8cab"

/home/opam: (run (shell  "opam reinstall --with-test --verbose owee.0.8;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'owee.0.8' && 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 owee 0.8 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [owee: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "owee" "-j" "3" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/owee.0.8)
-> compiled  owee.0.8
-> removed   owee.0.8
-> installed owee.0.8
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-17 02:11.31 ---> saved as "ed8603ea1107736a56d0381887499a49a93a79065bc7603553563b8eb3826096"
Job succeeded
2025-02-17 02:11.53: Job succeeded