Build:
  1. 0
2025-01-11 05:17.30: New job: test linol.0.8, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27246/head (a9279ecc3d9507e2ac76b01c358ecdea7b0c393a)
                              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/27246/head" && git reset --hard a9279ecc
git fetch origin master
git merge --no-edit 67e940587b8aca227f511e1943bcd31eabe6b1db
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:adb587eed33a930e2b64d25601075f5553df11633f56f6211cd0c85f6bf1678e
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 linol.0.8 0.8
RUN opam reinstall linol.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" != 'linol.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 linol.0.8) || true
RUN opam reinstall --with-test --verbose linol.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" != 'linol.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-01-11 05:17.30: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:adb587eed33a930e2b64d25601075f5553df11633f56f6211cd0c85f6bf1678e-linol.0.8-a9279ecc3d9507e2ac76b01c358ecdea7b0c393a"
2025-01-11 05:17.30: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:adb587eed33a930e2b64d25601075f5553df11633f56f6211cd0c85f6bf1678e)
 (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 linol.0.8 0.8"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall linol.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\" != 'linol.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 linol.0.8) || true"))
 (run (shell  "opam reinstall --with-test --verbose linol.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\" != 'linol.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-01-11 05:17.30: Waiting for resource in pool OCluster
2025-01-11 05:17.31: Waiting for worker…
2025-01-11 05:23.04: Got resource from pool OCluster
Building on s390x-worker-02.marist.ci.dev
All commits already cached
Updating files:  85% (24725/28897)
Updating files:  86% (24852/28897)
Updating files:  87% (25141/28897)
Updating files:  88% (25430/28897)
Updating files:  89% (25719/28897)
Updating files:  90% (26008/28897)
Updating files:  91% (26297/28897)
Updating files:  92% (26586/28897)
Updating files:  93% (26875/28897)
Updating files:  94% (27164/28897)
Updating files:  95% (27453/28897)
Updating files:  96% (27742/28897)
Updating files:  97% (28031/28897)
Updating files:  98% (28320/28897)
Updating files:  99% (28609/28897)
Updating files: 100% (28897/28897)
Updating files: 100% (28897/28897), done.
HEAD is now at 67e940587b Merge pull request #27236 from kit-ty-kate/opam-publish-mccs.1.1-19
Updating 67e940587b..a9279ecc3d
Fast-forward
 packages/linol-eio/linol-eio.0.8/opam | 41 +++++++++++++++++++++++++++++++++++
 packages/linol-lwt/linol-lwt.0.8/opam | 40 ++++++++++++++++++++++++++++++++++
 packages/linol/linol.0.8/opam         | 41 +++++++++++++++++++++++++++++++++++
 3 files changed, 122 insertions(+)
 create mode 100644 packages/linol-eio/linol-eio.0.8/opam
 create mode 100644 packages/linol-lwt/linol-lwt.0.8/opam
 create mode 100644 packages/linol/linol.0.8/opam

(from ocaml/opam:debian-12-ocaml-4.14@sha256:adb587eed33a930e2b64d25601075f5553df11633f56f6211cd0c85f6bf1678e)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:adb587eed33a930e2b64d25601075f5553df11633f56f6211cd0c85f6bf1678e' locally
docker.io/ocaml/opam@sha256:adb587eed33a930e2b64d25601075f5553df11633f56f6211cd0c85f6bf1678e: Pulling from ocaml/opam
29bd91c5aff5: Already exists
a15416b3eff5: Already exists
dbef77ee59fd: Already exists
79498c1e0fd1: Already exists
9438be1a6c44: Already exists
714fedb0ad25: Already exists
a75fb79e1175: Already exists
90e07c6d0485: Already exists
06513067d235: Already exists
0d3ea53b8525: Already exists
a143d5d30838: Already exists
79752095960d: Already exists
0e3321ddce96: Already exists
b880bf2065ee: Already exists
b9c4e5598c9e: Already exists
b9c4e5598c9e: Already exists
9d8327b47983: Already exists
5e282dc00017: Already exists
46d52467d53e: Already exists
f1c959fa0903: Already exists
4f4fb700ef54: Already exists
ba0d6df41760: Already exists
6bbed460f370: Already exists
c8620e41ae52: Already exists
51ead5f8a2a8: Already exists
06d7c1ad0d18: Already exists
d1866ae80da5: Already exists
a7f715444ab7: Already exists
5b6ed3a57018: Already exists
5d5ccb860fdc: Already exists
6561e60e6f42: Already exists
55c46fb41904: Already exists
25feece70be9: Already exists
7c68ca7d2262: Already exists
613bd2111743: Already exists
69dd28f3ee00: Already exists
20347009191b: Already exists
05874f9b3ee5: Already exists
aeff5a7002e9: Already exists
5523a99d2e4a: Already exists
aa323d46e722: Already exists
bca4be759ad9: Already exists
Digest: sha256:adb587eed33a930e2b64d25601075f5553df11633f56f6211cd0c85f6bf1678e
Status: Downloaded newer image for ocaml/opam@sha256:adb587eed33a930e2b64d25601075f5553df11633f56f6211cd0c85f6bf1678e
2025-01-11 05:23.07 ---> using "831f2a9b772e1468838de7b6754cf15a66563fc16d90554c776f5d14a9235304" 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-01-11 05:23.07 ---> using "3af9929b4fc1e9e1c4c12d77ed3af2518ac9f02299ee82a0d9caad68104ac776" from cache

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

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

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

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2025-01-11 05:23.07 ---> using "626d2bf2a41067b5cb10a90a615e94d90aa7ba77c2af7b99f4e9921f642e0740" 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 (26290a42e5a3dd44c3e2f8f743e6b8c391bdc206)
# 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)
# 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-01-11 05:23.07 ---> using "fc2c04c27cc2875c4fdcc6ab70033273d9edc48dc5a848fe72169713c98b8706" 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-01-11 05:23.07 ---> using "1e9701d8292efd465f636de7db89000cf5b3844cc49180352b437ca9ab3fb73c" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-01-11 05:23.08 ---> using "feae877e109b28b7ce9ff84f4674e9290da35a8198dde6745bdc85673bb942de" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-01-11 05:23.08 ---> using "fc6553a4ea95b348a5bb7ec3901e40c6340bc0c541caaea74615b78ce0d1b319" 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 s390x Packages [206 kB]
- Fetched 310 kB in 1s (535 kB/s)
- Reading package lists...
- 
2025-01-11 05:23.08 ---> using "bd010c75a30d681334c841a7e05bd491a25285d1f8c64bbf8289405e6508e0b2" from cache

/home/opam: (run (shell "opam pin add -k version -yn linol.0.8 0.8"))
linol is now pinned to version 0.8
2025-01-11 05:23.08 ---> using "2ab00ff501aa0149432b8d54132aea26dfd088078ad51757da8ddcd2389bba61" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall linol.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\" != 'linol.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"))
linol.0.8 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
  - install atomic              base         [required by linol]
  - install dune                3.17.1       [required by linol]
  - install jsonrpc             1.20.1       [required by linol]
  - install linol               0.8 (pinned)
  - install logs                0.7.0        [required by linol]
  - install lsp                 1.20.1       [required by linol]
  - install ocamlbuild          0.15.0       [required by logs]
  - install ocamlfind           1.9.6        [required by logs]
  - install ppx_yojson_conv_lib v0.16.0      [required by lsp]
  - install seq                 base         [required by yojson]
  - install topkg               1.0.7        [required by logs]
  - install trace               0.8          [required by linol]
  - install uutf                1.0.3        [required by lsp]
  - install yojson              2.2.2        [required by linol]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved atomic.base  (cached)
-> installed atomic.base
-> retrieved dune.3.17.1  (cached)
-> retrieved jsonrpc.1.20.1, lsp.1.20.1  (cached)
-> retrieved linol.0.8  (cached)
-> retrieved logs.0.7.0  (cached)
-> retrieved ocamlbuild.0.15.0  (cached)
-> retrieved ocamlfind.1.9.6  (cached)
-> retrieved ppx_yojson_conv_lib.v0.16.0  (cached)
-> retrieved seq.base  (cached)
-> retrieved topkg.1.0.7  (cached)
-> retrieved trace.0.8  (cached)
-> retrieved uutf.1.0.3  (cached)
-> retrieved yojson.2.2.2  (cached)
-> installed ocamlfind.1.9.6
-> installed ocamlbuild.0.15.0
-> installed seq.base
-> installed topkg.1.0.7
-> installed uutf.1.0.3
-> installed logs.0.7.0
-> installed dune.3.17.1
-> installed jsonrpc.1.20.1
-> installed trace.0.8
-> installed yojson.2.2.2
-> installed ppx_yojson_conv_lib.v0.16.0
-> installed lsp.1.20.1
-> installed linol.0.8
Done.
# To update the current shell environment, run: eval $(opam env)
2025-01-11 05:23.53 ---> saved as "09c656efd18b9099e9d73b87ef9744692a7d866423b6720603c6932cdb870fb4"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   linol.0.8
-> installed linol.0.8
Done.
# To update the current shell environment, run: eval $(opam env)
2025-01-11 05:24.01 ---> saved as "5f4029c43c54d553c68f9bd29eed2d5d3f154ea69c311f4c4c4c7d3e9e34ac69"

/home/opam: (run (shell  "opam reinstall --with-test --verbose linol.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\" != 'linol.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 linol 0.8 (pinned)

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