Build:
  1. 0
2026-03-26 15:23.47: New job: test current_examples.0.7.4, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29606/head (4e07f997e5a403e3e284236003dd2dff6b1992f9)
                              on opensuse-16.0-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/29606/head" && git reset --hard 4e07f997
git fetch origin master
git merge --no-edit 46f289cd3749314bbebddeede62fc05f9858f680
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:48d322166269ce210e2f4064b31b2dcd07913382dd53c961887a06821b80d1e3
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 current_examples.0.7.4 0.7.4
RUN opam reinstall current_examples.0.7.4; \
    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 "\"opensuse-16.0\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'current_examples.0.7.4' && 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 current_examples.0.7.4) || true
RUN opam reinstall --with-test --verbose current_examples.0.7.4; \
    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 "\"opensuse-16.0\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'current_examples.0.7.4' && 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 .

2026-03-26 15:23.47: Using cache hint "ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:48d322166269ce210e2f4064b31b2dcd07913382dd53c961887a06821b80d1e3-current_examples.0.7.4-4e07f997e5a403e3e284236003dd2dff6b1992f9"
2026-03-26 15:23.47: Using OBuilder spec:
((from ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:48d322166269ce210e2f4064b31b2dcd07913382dd53c961887a06821b80d1e3)
 (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 current_examples.0.7.4 0.7.4"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall current_examples.0.7.4;\
             \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 \"\\\"opensuse-16.0\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'current_examples.0.7.4' && 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 current_examples.0.7.4) || true"))
 (run (shell  "opam reinstall --with-test --verbose current_examples.0.7.4;\
             \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 \"\\\"opensuse-16.0\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'current_examples.0.7.4' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-26 15:23.47: Waiting for resource in pool OCluster
2026-03-26 15:32.31: Waiting for worker…
2026-03-26 15:35.43: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 46f289cd37 Merge pull request #29563 from NathanReb/release-ppxlib-0.38.0
Updating 46f289cd37..4e07f997e5
Fast-forward
 packages/current/current.0.7.4/opam                |  94 ++++++++++++++++++
 packages/current_docker/current_docker.0.7.4/opam  |  83 ++++++++++++++++
 .../current_examples/current_examples.0.7.4/opam   |  98 +++++++++++++++++++
 packages/current_git/current_git.0.7.4/opam        |  88 +++++++++++++++++
 packages/current_github/current_github.0.7.4/opam  |  97 +++++++++++++++++++
 packages/current_gitlab/current_gitlab.0.7.4/opam  |  59 ++++++++++++
 packages/current_rpc/current_rpc.0.7.4/opam        |  84 +++++++++++++++++
 packages/current_slack/current_slack.0.7.4/opam    |  77 +++++++++++++++
 packages/current_ssh/current_ssh.0.7.4/opam        |  43 +++++++++
 packages/current_web/current_web.0.7.4/opam        | 105 +++++++++++++++++++++
 10 files changed, 828 insertions(+)
 create mode 100644 packages/current/current.0.7.4/opam
 create mode 100644 packages/current_docker/current_docker.0.7.4/opam
 create mode 100644 packages/current_examples/current_examples.0.7.4/opam
 create mode 100644 packages/current_git/current_git.0.7.4/opam
 create mode 100644 packages/current_github/current_github.0.7.4/opam
 create mode 100644 packages/current_gitlab/current_gitlab.0.7.4/opam
 create mode 100644 packages/current_rpc/current_rpc.0.7.4/opam
 create mode 100644 packages/current_slack/current_slack.0.7.4/opam
 create mode 100644 packages/current_ssh/current_ssh.0.7.4/opam
 create mode 100644 packages/current_web/current_web.0.7.4/opam

(from ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:48d322166269ce210e2f4064b31b2dcd07913382dd53c961887a06821b80d1e3)
Unable to find image 'ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:48d322166269ce210e2f4064b31b2dcd07913382dd53c961887a06821b80d1e3' locally
docker.io/ocaml/opam@sha256:48d322166269ce210e2f4064b31b2dcd07913382dd53c961887a06821b80d1e3: Pulling from ocaml/opam
64cfa2a65095: Already exists
204ffcf2f1fe: Pulling fs layer
f6fa4529cc6b: Pulling fs layer
97af65095748: Pulling fs layer
b802a6057f6d: Pulling fs layer
47b045e79836: Pulling fs layer
2ce8a10bf29f: Pulling fs layer
781ee767d1c7: Pulling fs layer
2271c058ae3a: Pulling fs layer
2e5754ca2c40: Pulling fs layer
de21e4dabd9c: Pulling fs layer
f047029589c4: Pulling fs layer
0f454d36be04: Pulling fs layer
04ab44a2df2c: Pulling fs layer
ad401f078830: Pulling fs layer
f047029589c4: Waiting
096a51bccb57: Pulling fs layer
04ab44a2df2c: Waiting
b802a6057f6d: Waiting
2e5754ca2c40: Waiting
781ee767d1c7: Waiting
2271c058ae3a: Waiting
de21e4dabd9c: Waiting
ad401f078830: Waiting
e7134f98c78b: Pulling fs layer
47b045e79836: Waiting
afc7c35ee433: Pulling fs layer
7bfa5dba7952: Pulling fs layer
0f454d36be04: Waiting
096a51bccb57: Waiting
e7134f98c78b: Waiting
4f4fb700ef54: Pulling fs layer
f6b6a751bb6a: Pulling fs layer
4f4fb700ef54: Waiting
afc7c35ee433: Waiting
2ce8a10bf29f: Waiting
7bfa5dba7952: Waiting
f71dccae2ee7: Pulling fs layer
f6b6a751bb6a: Waiting
fe37a54a1499: Pulling fs layer
1815b99ebc09: Pulling fs layer
f71dccae2ee7: Waiting
fe37a54a1499: Waiting
363d1f23b2cf: Pulling fs layer
4bb0990bd121: Pulling fs layer
1815b99ebc09: Waiting
ac4f9c652c6c: Pulling fs layer
4bb0990bd121: Waiting
ab5409fef174: Pulling fs layer
363d1f23b2cf: Waiting
ac4f9c652c6c: Waiting
5e58ee45c6c7: Pulling fs layer
ab5409fef174: Waiting
ee06219176b1: Pulling fs layer
5e58ee45c6c7: Waiting
34fd31afeec8: Pulling fs layer
ee06219176b1: Waiting
c7a97b361486: Pulling fs layer
34fd31afeec8: Waiting
f43c436b80ca: Pulling fs layer
de6ecf1d150c: Pulling fs layer
c7a97b361486: Waiting
f43c436b80ca: Waiting
78430d721ba0: Pulling fs layer
de6ecf1d150c: Waiting
04a8b38489d1: Pulling fs layer
78430d721ba0: Waiting
a9da0a03d6b4: Pulling fs layer
04a8b38489d1: Waiting
e572f19ef953: Pulling fs layer
65e9f9829912: Pulling fs layer
a9da0a03d6b4: Waiting
0c1a6125592a: Pulling fs layer
e572f19ef953: Waiting
65e9f9829912: Waiting
12aaad7daeca: Pulling fs layer
10437ea910d9: Pulling fs layer
10437ea910d9: Waiting
12aaad7daeca: Waiting
0c1a6125592a: Waiting
204ffcf2f1fe: Verifying Checksum
204ffcf2f1fe: Download complete
204ffcf2f1fe: Pull complete
b802a6057f6d: Verifying Checksum
b802a6057f6d: Download complete
47b045e79836: Download complete
f6fa4529cc6b: Verifying Checksum
f6fa4529cc6b: Download complete
97af65095748: Verifying Checksum
97af65095748: Download complete
781ee767d1c7: Verifying Checksum
781ee767d1c7: Download complete
2271c058ae3a: Verifying Checksum
2271c058ae3a: Download complete
2ce8a10bf29f: Verifying Checksum
2ce8a10bf29f: Download complete
2e5754ca2c40: Verifying Checksum
2e5754ca2c40: Download complete
f047029589c4: Verifying Checksum
f047029589c4: Download complete
de21e4dabd9c: Verifying Checksum
de21e4dabd9c: Download complete
0f454d36be04: Verifying Checksum
0f454d36be04: Download complete
04ab44a2df2c: Verifying Checksum
04ab44a2df2c: Download complete
ad401f078830: Verifying Checksum
ad401f078830: Download complete
096a51bccb57: Verifying Checksum
096a51bccb57: Download complete
e7134f98c78b: Verifying Checksum
e7134f98c78b: Download complete
afc7c35ee433: Verifying Checksum
afc7c35ee433: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
f6b6a751bb6a: Verifying Checksum
f6b6a751bb6a: Download complete
f71dccae2ee7: Download complete
fe37a54a1499: Verifying Checksum
fe37a54a1499: Download complete
1815b99ebc09: Verifying Checksum
1815b99ebc09: Download complete
363d1f23b2cf: Verifying Checksum
363d1f23b2cf: Download complete
4bb0990bd121: Download complete
ac4f9c652c6c: Download complete
5e58ee45c6c7: Download complete
ab5409fef174: Download complete
ee06219176b1: Download complete
34fd31afeec8: Download complete
c7a97b361486: Verifying Checksum
c7a97b361486: Download complete
de6ecf1d150c: Verifying Checksum
de6ecf1d150c: Download complete
f6fa4529cc6b: Pull complete
04a8b38489d1: Verifying Checksum
04a8b38489d1: Download complete
a9da0a03d6b4: Download complete
e572f19ef953: Download complete
f43c436b80ca: Verifying Checksum
f43c436b80ca: Download complete
0c1a6125592a: Download complete
12aaad7daeca: Download complete
10437ea910d9: Download complete
65e9f9829912: Verifying Checksum
65e9f9829912: Download complete
78430d721ba0: Verifying Checksum
78430d721ba0: Download complete
97af65095748: Pull complete
b802a6057f6d: Pull complete
47b045e79836: Pull complete
2ce8a10bf29f: Pull complete
781ee767d1c7: Pull complete
2271c058ae3a: Pull complete
2e5754ca2c40: Pull complete
de21e4dabd9c: Pull complete
f047029589c4: Pull complete
0f454d36be04: Pull complete
04ab44a2df2c: Pull complete
ad401f078830: Pull complete
096a51bccb57: Pull complete
e7134f98c78b: Pull complete
afc7c35ee433: Pull complete
7bfa5dba7952: Pull complete
4f4fb700ef54: Pull complete
f6b6a751bb6a: Pull complete
f71dccae2ee7: Pull complete
fe37a54a1499: Pull complete
1815b99ebc09: Pull complete
363d1f23b2cf: Pull complete
4bb0990bd121: Pull complete
ac4f9c652c6c: Pull complete
ab5409fef174: Pull complete
5e58ee45c6c7: Pull complete
ee06219176b1: Pull complete
34fd31afeec8: Pull complete
c7a97b361486: Pull complete
f43c436b80ca: Pull complete
de6ecf1d150c: Pull complete
78430d721ba0: Pull complete
04a8b38489d1: Pull complete
a9da0a03d6b4: Pull complete
e572f19ef953: Pull complete
65e9f9829912: Pull complete
0c1a6125592a: Pull complete
12aaad7daeca: Pull complete
10437ea910d9: Pull complete
Digest: sha256:48d322166269ce210e2f4064b31b2dcd07913382dd53c961887a06821b80d1e3
Status: Downloaded newer image for ocaml/opam@sha256:48d322166269ce210e2f4064b31b2dcd07913382dd53c961887a06821b80d1e3
2026-03-26 15:44.58 ---> saved as "fbfb63538acc5b68860c96756370d8c1982007d8bb244ea63a2197ef9c0a6f52"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-26 15:44.59 ---> saved as "b30cf8bd0962ae1ed8e7d340d046321e9b83c04bc0218290ed6f38a7a1bdf84c"

/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 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] Initialised
2026-03-26 15:45.21 ---> saved as "561f4df4efe360b3f40c7062b6909b3971b9bc45bebab76b0295c43ba78e8e07"

/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.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=opensuse-leap os-version=16.0
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# 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
2026-03-26 15:45.21 ---> saved as "e5532827813c9bde597050a6789b20cc763f89d717147e75b6d18b379fea81e6"

/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/"))
2026-03-26 15:45.31 ---> saved as "12504326bdd9e310c321fa025fe556c29a98eaae987fbda5f22d1777c9cb1d58"

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-26 15:45.42 ---> saved as "a2a88faec40a9b8a2fb2fa6a061d3c11a47ca5257bcda5789c2e56d49f37ba2f"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-26 15:46.00 ---> saved as "631bfac67c6b7ecb86783a557fa6b7c37f1dae8d60c08a9413ebc28370e1d570"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Repository 'repo-openh264 (16.0)' is up to date.
- Retrieving repository 'repo-oss (16.0)' metadata [.
- ..
- Looking for gpg keys in repository repo-oss (16.0).
-   gpgkey=http://cdn.opensuse.org/distribution/leap/16.0/repo/oss/x86_64/repodata/repomd.xml.key
- ..
- 
- Note: Received 1 new package signing key from repository "repo-oss (16.0)":
- 
-   Those additional keys are usually used to sign packages shipped by the repository. In order to
-   validate those packages upon download and installation the new keys will be imported into the rpm
-   database.
- 
-   New:
-   Key Fingerprint:  F044 C2C5 07A1 262B 538A AADD 8A49 EB03 25DB 7AE0
-   Key Name:         openSUSE:Backports OBS Project <openSUSE:Backports@build.opensuse.org>
-   Key Algorithm:    RSA 4096
-   Key Created:      Wed May 10 14:46:12 2023
-   Key Expires:      Sun May  9 14:46:12 2027
-   Rpm Name:         gpg-pubkey-25db7ae0-645bae34
- 
-   The repository metadata introducing the new keys have been signed and validated by the trusted
-   key:
- 
-   Repository:       repo-oss (16.0)
-   Key Fingerprint:  AD48 5664 E901 B867 051A B15F 35A2 F86E 29B7 00A4
-   Key Name:         openSUSE Project Signing Key <opensuse@opensuse.org>
-   Key Algorithm:    RSA 4096
-   Key Created:      Mon Jun 20 14:03:14 2022
-   Key Expires:      Fri Jun 19 14:03:14 2026 (expires in 84 days)
-   Rpm Name:         gpg-pubkey-29b700a4-62b07e22
- 
- .
- .
- ....
- .........
- .........
- .........
- .........
- .........
- .........
- .........
- .........
- ..........
- .........
- .........
- .........
- ........
- ........
- .........
- ........
- .done]
- Building repository 'repo-oss (16.0)' cache [..
- ..done]
- All repositories have been refreshed.
2026-03-26 15:46.30 ---> saved as "8ecd53c79e49a3bf26950f6da61a5f2963ebfac6bad141f45e1644144d3c8c31"

/home/opam: (run (shell "opam pin add -k version -yn current_examples.0.7.4 0.7.4"))
current_examples is now pinned to version 0.7.4
2026-03-26 15:46.30 ---> saved as "e692f8ed9657965d82fde661aba5f0085a2b2d571828326074d88bc55f8dd58d"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall current_examples.0.7.4;\
                        \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 \"\\\"opensuse-16.0\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'current_examples.0.7.4' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
current_examples.0.7.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 157 packages
  - install angstrom              0.16.1             [required by uri]
  - install ansi                  0.7.0              [required by current_web]
  - install asetmap               0.8.1              [required by capnp-rpc-lwt, capnp-rpc, capnp-rpc-net]
  - install asn1-combinators      0.2.6              [required by capnp-rpc-net]
  - install astring               0.8.5              [required by current_docker, capnp-rpc-unix, capnp-rpc-lwt, etc.]
  - install atd                   2.16.0             [required by atdgen]
  - install atdgen                2.15.0             [required by gitlab]
  - install atdgen-runtime        2.16.0             [required by github-data]
  - install base                  v0.16.4            [required by capnp]
  - install base-bytes            base               [required by extunix]
  - install base64                3.5.2              [required by capnp-rpc-unix, capnp-rpc-net, current_github]
  - install bigstringaf           0.10.0             [required by angstrom, multipart_form-lwt]
  - install biniou                1.2.2              [required by atdgen]
  - install bos                   0.2.1              [required by current, current_docker]
  - install bstr                  0.0.4              [required by prettym]
  - install ca-certs              0.2.3              [required by conduit-lwt-unix]
  - install camlp-streams         5.0.1              [required by biniou]
  - install capnp                 3.6.0              [required by capnp-rpc-net, capnp-rpc-lwt, current_rpc]
  - install capnp-rpc             1.2.3              [required by current_examples]
  - install capnp-rpc-lwt         1.2.3              [required by current_examples]
  - install capnp-rpc-net         1.2.3              [required by current_examples]
  - install capnp-rpc-unix        1.2.3              [required by current_examples]
  - install cf                    0.5.0              [required by cf-lwt]
  - install cf-lwt                0.5.0              [required by irmin-watcher]
  - install cmdliner              1.3.0              [required by current_examples]
  - install cohttp                6.0.0              [required by github-unix, cohttp-lwt-unix, gitlab-unix]
  - install cohttp-lwt            6.0.0              [required by cohttp-lwt-unix]
  - install cohttp-lwt-unix       6.0.0              [required by current_github, current_gitlab]
  - install conduit               6.2.3              [required by conduit-lwt]
  - install conduit-lwt           6.2.3              [required by cohttp-lwt-unix]
  - install conduit-lwt-unix      6.2.3              [required by cohttp-lwt-unix, current_web]
  - install conf-capnproto        2                  [required by capnp-rpc-lwt, capnp-rpc-net]
  - install conf-git              1.1                [required by current_git]
  - install conf-gmp              5                  [required by zarith]
  - install conf-gmp-powm-sec     4                  [required by mirage-crypto-pk]
  - install conf-graphviz         0.1                [required by current_web]
  - install conf-libev            4-13               [required by current]
  - install conf-libffi           2.0.0              [required by ctypes-foreign]
  - install conf-pkg-config       4                  [required by zarith, conf-sqlite3]
  - install conf-sqlite3          1                  [required by sqlite3]
  - install cppo                  1.8.0              [required by ppx_deriving]
  - install crunch                4.0.0              [required by current_web]
  - install csexp                 1.5.2              [required by dune-configurator]
  - install cstruct               6.2.0              [required by capnp-rpc-net, current_github]
  - install cstruct-lwt           6.2.0              [required by capnp-rpc-unix]
  - install csv                   2.4                [required by current_web]
  - install ctypes                0.24.0             [required by cf, fsevents]
  - install ctypes-foreign        0.24.0             [required by cf]
  - install current               0.7.4              [required by current_examples]
  - install current_docker        0.7.4              [required by current_examples]
  - install current_examples      0.7.4 (pinned)
  - install current_git           0.7.4              [required by current_examples]
  - install current_github        0.7.4              [required by current_examples]
  - install current_gitlab        0.7.4              [required by current_examples]
  - install current_incr          0.6.1              [required by current]
  - install current_rpc           0.7.4              [required by current_examples]
  - install current_ssh           0.7.4              [required by current_examples]
  - install current_web           0.7.4              [required by current_examples]
  - install dockerfile            8.3.4              [required by current_examples]
  - install domain-name           0.5.0              [required by tls]
  - install dune                  3.22.0             [required by current_examples]
  - install dune-compiledb        0.6.0              [required by sqlite3]
  - install dune-configurator     3.22.0             [required by extunix, mirage-crypto, mirage-crypto-rng, sqlite3]
  - install duration              0.2.1              [required by current_examples]
  - install easy-format           1.3.4              [required by atd]
  - install eqaf                  0.9                [required by mirage-crypto]
  - install extunix               0.4.3              [required by capnp-rpc-unix]
  - install ezjsonm               1.3.0              [required by dune-compiledb]
  - install fmt                   0.11.0             [required by current_examples]
  - install fpath                 0.7.3              [required by current_examples]
  - install fsevents              0.3.0              [required by fsevents-lwt]
  - install fsevents-lwt          0.3.0              [required by irmin-watcher]
  - install github                4.5.0              [required by github-unix]
  - install github-data           4.5.0              [required by github]
  - install github-unix           4.5.0              [required by current_github]
  - install gitlab                0.1.8              [required by gitlab-unix]
  - install gitlab-unix           0.1.8              [required by current_gitlab]
  - install gmap                  0.3.0              [required by x509]
  - install hex                   1.5.0              [required by current_github]
  - install hkdf                  1.0.4 (deprecated) [required by tls]
  - install http                  6.0.0              [required by cohttp-lwt-unix]
  - install ISO8601               0.2.6              [required by gitlab]
  - install inotify               2.6                [required by irmin-watcher]
  - install integers              0.7.0              [required by ctypes]
  - install ipaddr                5.6.2              [required by tls]
  - install ipaddr-sexp           5.6.2              [required by conduit-lwt-unix]
  - install irmin-watcher         0.5.0              [required by current_git]
  - install jsonm                 1.0.2              [required by ezjsonm]
  - install ke                    0.6                [required by multipart_form-lwt]
  - install logs                  0.10.0             [required by current_examples]
  - install lwt                   6.1.1              [required by current_examples]
  - install lwt-dllist            1.1.0              [required by current]
  - install macaddr               5.6.2              [required by ipaddr]
  - install magic-mime            1.3.1              [required by cohttp-lwt-unix]
  - install menhir                20260209           [required by atd]
  - install menhirCST             20260209           [required by menhir]
  - install menhirGLR             20260209           [required by menhir]
  - install menhirLib             20260209           [required by menhir]
  - install menhirSdk             20260209           [required by menhir]
  - install mirage-clock          4.2.0              [required by tls-mirage]
  - install mirage-crypto         0.11.3             [required by capnp-rpc-net, current_github]
  - install mirage-crypto-ec      0.11.3             [required by tls]
  - install mirage-crypto-pk      0.11.3             [required by current_github]
  - install mirage-crypto-rng     0.11.3             [required by capnp-rpc-net]
  - install mirage-crypto-rng-lwt 0.11.3             [required by capnp-rpc-unix]
  - install mirage-flow           3.0.0              [required by capnp-rpc-net, capnp-rpc-unix]
  - install mirage-kv             6.1.1              [required by tls-mirage]
  - install mtime                 2.1.0              [required by mirage-crypto-rng-lwt]
  - install multipart_form        0.8.0              [required by multipart_form-lwt]
  - install multipart_form-lwt    0.8.0              [required by current_web]
  - install num                   1.6                [required by sexplib]
  - install ocaml-compiler-libs   v0.12.4            [required by ppxlib]
  - install ocaml-syntax-shims    1.0.0              [required by angstrom]
  - install ocamlbuild            0.16.1             [required by logs, astring, asetmap, etc.]
  - install ocamlfind             1.9.8              [required by bos, fmt, asetmap, etc.]
  - install ocplib-endian         1.2                [required by capnp]
  - install optint                0.3.0              [required by mirage-kv]
  - install parsexp               v0.16.0            [required by sexplib]
  - install pbkdf                 1.2.0              [required by x509]
  - install pecu                  0.7                [required by multipart_form]
  - install ppx_derivers          1.2.1              [required by ppx_deriving]
  - install ppx_deriving          6.0.3              [required by current_examples]
  - install ppx_deriving_yojson   3.9.1              [required by current_examples]
  - install ppx_sexp_conv         v0.16.0            [required by dockerfile]
  - install ppxlib                0.35.0             [required by extunix, ppx_deriving]
  - install prettym               0.0.4              [required by multipart_form]
  - install prometheus            1.3                [required by current_examples]
  - install prometheus-app        1.3                [required by current_examples]
  - install ptime                 1.2.0              [required by current_github, capnp-rpc-net, current_gitlab]
  - install re                    1.14.0             [required by current]
  - install res                   5.0.2              [required by capnp]
  - install result                1.5                [required by current_examples]
  - install routes                2.0.0              [required by current_examples]
  - install rresult               0.7.0              [required by current_github, current_gitlab]
  - install seq                   base               [required by yojson, tyxml]
  - install session               0.5.0              [required by current_web]
  - install session-cohttp        0.5.0              [required by session-cohttp-lwt]
  - install session-cohttp-lwt    0.5.0              [required by current_web]
  - install sexplib               v0.16.0            [required by current_web]
  - install sexplib0              v0.16.0            [required by dockerfile]
  - install sqlite3               5.4.0              [required by current]
  - install stdint                0.7.2              [required by capnp-rpc-lwt, capnp-rpc, current_rpc]
  - install stdio                 v0.16.0            [required by capnp]
  - install stdlib-shims          0.3.0              [required by ppxlib]
  - install stringext             1.6.0              [required by github-unix, uri, gitlab-unix]
  - install tls                   0.17.3             [required by capnp-rpc-net]
  - install tls-lwt               0.17.3             [required by current_github]
  - install tls-mirage            0.17.3             [required by capnp-rpc-net]
  - install topkg                 1.1.1              [required by logs, astring, asetmap, etc.]
  - install tyxml                 4.6.0              [required by current_github]
  - install unstrctrd             0.4                [required by multipart_form]
  - install uri                   4.4.0              [required by current_examples]
  - install uri-sexp              4.4.0              [required by cohttp]
  - install uutf                  1.0.4              [required by tyxml, ezjsonm, multipart_form]
  - install x509                  0.16.5             [required by capnp-rpc-net, current_github]
  - install yojson                2.2.2              [required by current_examples]
  - install zarith                1.14               [required by asn1-combinators]

The following system packages will first need to be installed:
    capnproto gmp-devel graphviz libcapnp-devel libev-devel libffi-devel sqlite3-devel

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run zypper to install them (may need root/sudo access)
  2. Display the recommended zypper 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 "zypper" "--non-interactive" "install" "capnproto" "gmp-devel" "graphviz" "libcapnp-devel" "libev-devel" "libffi-devel" "sqlite3-devel"
- Refreshing service 'openSUSE'.
- Loading repository data...
- Reading installed packages...
- Resolving package dependencies...
- 
- The following 19 NEW packages are going to be installed:
-   bitstream-vera-fonts capnproto gmp-devel graphviz graphviz-plugins-core libcapnp-1_2_0 libcapnp-devel libcdt5 libcgraph6 libev-devel libev4 libffi-devel libgmpxx4 libgts-0_7-5 libgvc6 libgvpr2 libpathplan4 libxdot4 sqlite3-devel
- 
- 19 new packages to install.
- 
- Package download size:     5.1 MiB
- 
- Package install size change:
-               |      15.5 MiB  required by packages that will be installed
-     15.5 MiB  |  -      0 B    released by packages that will be removed
- 
- Backend:  classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Preloading Packages [.
- Preloading: libgvpr2-12.2.1-160000.1.1.x86_64.rpm [Error: "Could not resolve host: opensuse.mirrors.proxad.net", trying next mirror.]
- .
- Preloading: libgvpr2-12.2.1-160000.1.1.x86_64.rpm [done]
- .
- Preloading: libgvc6-12.2.1-160000.1.1.x86_64.rpm [done]
- ..
- Preloading: sqlite3-devel-3.50.4-160000.1.2.x86_64.rpm [done]
- .
- Preloading: graphviz-12.2.1-160000.1.1.x86_64.rpm [done]
- .
- Preloading: gmp-devel-6.3.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: capnproto-1.2.0-160000.1.2.x86_64.rpm [done]
- .
- 
- Preloading: libcgraph6-12.2.1-160000.1.1.x86_64.rpm [done]
- .
- Preloading: libcapnp-devel-1.2.0-160000.1.2.x86_64.rpm [done]
- .
- Preloading: bitstream-vera-fonts-1.10-160000.2.2.noarch.rpm [done]
- .
- Preloading: libxdot4-12.2.1-160000.1.1.x86_64.rpm [done]
- ..
- Preloading: libgmpxx4-6.3.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libev-devel-4.33-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libffi-devel-3.4.6-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libgts-0_7-5-0.7.6_p20121130-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libev4-4.33-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libcdt5-12.2.1-160000.1.1.x86_64.rpm [done]
- .
- Preloading: libpathplan4-12.2.1-160000.1.1.x86_64.rpm [done]
- ..
- .
- Preloading: libcapnp-1_2_0-1.2.0-160000.1.2.x86_64.rpm [done]
- .
- 
- Preloading: graphviz-plugins-core-12.2.1-160000.1.1.x86_64.rpm [Error: "The requested URL returned error: 404", trying next mirror.]
- ..
- Preloading: graphviz-plugins-core-12.2.1-160000.1.1.x86_64.rpm [done]
- .done]
- Retrieving: bitstream-vera-fonts-1.10-160000.2.2.noarch (repo-oss (16.0)) (1/19), 244.9 KiB    
- Retrieving: libcapnp-1_2_0-1.2.0-160000.1.2.x86_64 (repo-oss (16.0)) (2/19),   1.2 MiB    
- Retrieving: libcdt5-12.2.1-160000.1.1.x86_64 (repo-oss (16.0)) (3/19),  76.6 KiB    
- Retrieving: libev4-4.33-160000.2.2.x86_64 (repo-oss (16.0)) (4/19),  50.0 KiB    
- Retrieving: libffi-devel-3.4.6-160000.2.2.x86_64 (repo-oss (16.0)) (5/19),  30.8 KiB    
- Retrieving: libgmpxx4-6.3.0-160000.2.2.x86_64 (repo-oss (16.0)) (6/19),  32.3 KiB    
- Retrieving: libgts-0_7-5-0.7.6_p20121130-160000.3.2.x86_64 (repo-oss (16.0)) (7/19), 157.8 KiB    
- Retrieving: libpathplan4-12.2.1-160000.1.1.x86_64 (repo-oss (16.0)) (8/19),  81.6 KiB    
- Retrieving: libxdot4-12.2.1-160000.1.1.x86_64 (repo-oss (16.0)) (9/19),  75.9 KiB    
- Retrieving: sqlite3-devel-3.50.4-160000.1.2.x86_64 (repo-oss (16.0)) (10/19), 299.6 KiB    
- Retrieving: libcapnp-devel-1.2.0-160000.1.2.x86_64 (repo-oss (16.0)) (11/19), 372.1 KiB    
- Retrieving: capnproto-1.2.0-160000.1.2.x86_64 (repo-oss (16.0)) (12/19), 234.9 KiB    
- Retrieving: libcgraph6-12.2.1-160000.1.1.x86_64 (repo-oss (16.0)) (13/19), 112.2 KiB    
- Retrieving: libev-devel-4.33-160000.2.2.x86_64 (repo-oss (16.0)) (14/19), 191.4 KiB    
- Retrieving: gmp-devel-6.3.0-160000.2.2.x86_64 (repo-oss (16.0)) (15/19), 320.7 KiB    
- Retrieving: libgvpr2-12.2.1-160000.1.1.x86_64 (repo-oss (16.0)) (16/19), 183.0 KiB    
- Retrieving: libgvc6-12.2.1-160000.1.1.x86_64 (repo-oss (16.0)) (17/19), 325.3 KiB    
- Retrieving: graphviz-12.2.1-160000.1.1.x86_64 (repo-oss (16.0)) (18/19), 726.3 KiB    
- Retrieving: graphviz-plugins-core-12.2.1-160000.1.1.x86_64 (repo-oss (16.0)) (19/19), 480.1 KiB    
- 
- Checking for file conflicts: [...
- .done]
- ( 1/19) Installing: bitstream-vera-fonts-1.10-160000.2.2.noarch [..
- done]
- ( 2/19) Installing: libcapnp-1_2_0-1.2.0-160000.1.2.x86_64 [...done]
- ( 3/19) Installing: libcdt5-12.2.1-160000.1.1.x86_64 [.
- .done]
- ( 4/19) Installing: libev4-4.33-160000.2.2.x86_64 [...done]
- ( 5/19) Installing: libffi-devel-3.4.6-160000.2.2.x86_64 [.
- .done]
- ( 6/19) Installing: libgmpxx4-6.3.0-160000.2.2.x86_64 [..done]
- ( 7/19) Installing: libgts-0_7-5-0.7.6_p20121130-160000.3.2.x86_64 [..
- done]
- ( 8/19) Installing: libpathplan4-12.2.1-160000.1.1.x86_64 [..done]
- ( 9/19) Installing: libxdot4-12.2.1-160000.1.1.x86_64 [..done]
- (10/19) Installing: sqlite3-devel-3.50.4-160000.1.2.x86_64 [..done]
- (11/19) Installing: libcapnp-devel-1.2.0-160000.1.2.x86_64 [..done]
- (12/19) Installing: capnproto-1.2.0-160000.1.2.x86_64 [..done]
- (13/19) Installing: libcgraph6-12.2.1-160000.1.1.x86_64 [..done]
- (14/19) Installing: libev-devel-4.33-160000.2.2.x86_64 [..done]
- (15/19) Installing: gmp-devel-6.3.0-160000.2.2.x86_64 [..done]
- (16/19) Installing: libgvpr2-12.2.1-160000.1.1.x86_64 [.
- .done]
- (17/19) Installing: libgvc6-12.2.1-160000.1.1.x86_64 [..done]
- (18/19) Installing: graphviz-12.2.1-160000.1.1.x86_64 [.
- ..done]
- (19/19) Installing: graphviz-plugins-core-12.2.1-160000.1.1.x86_64 [..done]
- Running post-transaction scripts [..
- ...done]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved ansi.0.7.0  (cached)
-> retrieved asetmap.0.8.1  (cached)
-> retrieved asn1-combinators.0.2.6  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved atd.2.16.0, atdgen-runtime.2.16.0  (cached)
-> retrieved atdgen.2.15.0  (cached)
-> retrieved base.v0.16.4  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved biniou.1.2.2  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved bstr.0.0.4  (cached)
-> retrieved ca-certs.0.2.3  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved capnp.3.6.0  (cached)
-> retrieved capnp-rpc.1.2.3, capnp-rpc-lwt.1.2.3, capnp-rpc-net.1.2.3, capnp-rpc-unix.1.2.3  (cached)
-> retrieved cf.0.5.0, cf-lwt.0.5.0  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved cohttp.6.0.0, cohttp-lwt.6.0.0, cohttp-lwt-unix.6.0.0, http.6.0.0  (cached)
-> retrieved conduit.6.2.3, conduit-lwt.6.2.3, conduit-lwt-unix.6.2.3  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> retrieved conf-libev.4-13  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved crunch.4.0.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-capnproto.2
-> retrieved cstruct.6.2.0, cstruct-lwt.6.2.0  (cached)
-> installed conf-git.1.1
-> installed conf-gmp.5
-> installed conf-graphviz.0.1
-> installed conf-pkg-config.4
-> retrieved csv.2.4  (cached)
-> retrieved ctypes.0.24.0, ctypes-foreign.0.24.0  (cached)
-> installed conf-libev.4-13
-> installed conf-gmp-powm-sec.4
-> installed conf-libffi.2.0.0
-> installed conf-sqlite3.1
-> retrieved current.0.7.4, current_docker.0.7.4, current_examples.0.7.4, current_git.0.7.4, current_github.0.7.4, current_gitlab.0.7.4, current_rpc.0.7.4, current_ssh.0.7.4, current_web.0.7.4  (cached)
-> retrieved current_incr.0.6.1  (cached)
-> retrieved dockerfile.8.3.4  (cached)
-> retrieved domain-name.0.5.0  (cached)
-> retrieved dune.3.22.0, dune-configurator.3.22.0  (cached)
-> retrieved dune-compiledb.0.6.0  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved easy-format.1.3.4  (cached)
-> retrieved eqaf.0.9  (cached)
-> retrieved extunix.0.4.3  (cached)
-> retrieved ezjsonm.1.3.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved fsevents.0.3.0, fsevents-lwt.0.3.0  (cached)
-> retrieved github.4.5.0, github-data.4.5.0, github-unix.4.5.0  (cached)
-> installed cmdliner.1.3.0
-> retrieved gitlab.0.1.8, gitlab-unix.0.1.8  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved hex.1.5.0  (cached)
-> retrieved hkdf.1.0.4  (cached)
-> retrieved ISO8601.0.2.6  (cached)
-> retrieved inotify.2.6  (cached)
-> retrieved integers.0.7.0  (cached)
-> retrieved ipaddr.5.6.2, ipaddr-sexp.5.6.2, macaddr.5.6.2  (cached)
-> retrieved irmin-watcher.0.5.0  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved ke.0.6  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lwt.6.1.1  (cached)
-> retrieved lwt-dllist.1.1.0  (cached)
-> retrieved magic-mime.1.3.1  (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> retrieved mirage-clock.4.2.0  (cached)
-> retrieved mirage-crypto.0.11.3, mirage-crypto-ec.0.11.3, mirage-crypto-pk.0.11.3, mirage-crypto-rng.0.11.3, mirage-crypto-rng-lwt.0.11.3  (cached)
-> retrieved mirage-flow.3.0.0  (cached)
-> retrieved mirage-kv.6.1.1  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved multipart_form.0.8.0, multipart_form-lwt.0.8.0  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved optint.0.3.0  (cached)
-> retrieved parsexp.v0.16.0  (cached)
-> retrieved pbkdf.1.2.0  (cached)
-> retrieved pecu.0.7  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.0.3  (cached)
-> retrieved ppx_deriving_yojson.3.9.1  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved prettym.0.0.4  (cached)
-> retrieved prometheus.1.3, prometheus-app.1.3  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved res.5.0.2  (cached)
-> retrieved result.1.5  (cached)
-> retrieved routes.2.0.0  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved session.0.5.0, session-cohttp.0.5.0, session-cohttp-lwt.0.5.0  (cached)
-> retrieved sexplib.v0.16.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved sqlite3.5.4.0  (cached)
-> retrieved stdint.0.7.2  (cached)
-> retrieved stdio.v0.16.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved tls.0.17.3, tls-lwt.0.17.3, tls-mirage.0.17.3  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved tyxml.4.6.0  (cached)
-> retrieved unstrctrd.0.4  (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved x509.0.16.5  (cached)
-> retrieved yojson.2.2.2  (cached)
-> retrieved zarith.1.14  (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed asetmap.0.8.1
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed mtime.2.1.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed dune.3.22.0
-> installed base64.3.5.2
-> installed bstr.0.0.4
-> installed camlp-streams.5.0.1
-> installed crunch.4.0.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed cstruct.6.2.0
-> installed csv.2.4
-> installed current_incr.0.6.1
-> installed domain-name.0.5.0
-> installed duration.0.2.1
-> installed easy-format.1.3.4
-> installed gmap.0.3.0
-> installed http.6.0.0
-> installed ISO8601.0.2.6
-> installed ke.0.6
-> installed lwt-dllist.1.1.0
-> installed macaddr.5.6.2
-> installed magic-mime.1.3.1
-> installed menhirCST.20260209
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed mirage-clock.4.2.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed optint.0.3.0
-> installed pecu.0.7
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed res.5.0.2
-> installed result.1.5
-> installed sexplib0.v0.16.0
-> installed stdint.0.7.2
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed yojson.2.2.2
-> installed ocplib-endian.1.2
-> installed asn1-combinators.0.2.6
-> installed eqaf.0.9
-> installed hex.1.5.0
-> installed biniou.1.2.2
-> installed prettym.0.0.4
-> installed ipaddr.5.6.2
-> installed routes.2.0.0
-> installed dune-configurator.3.22.0
-> installed integers.0.7.0
-> installed ezjsonm.1.3.0
-> installed atdgen-runtime.2.16.0
-> installed bigstringaf.0.10.0
-> installed parsexp.v0.16.0
-> installed angstrom.0.16.1
-> installed unstrctrd.0.4
-> installed sexplib.v0.16.0
-> installed tyxml.4.6.0
-> installed mirage-crypto.0.11.3
-> installed dune-compiledb.0.6.0
-> installed hkdf.1.0.4
-> installed pbkdf.1.2.0
-> installed uri.4.4.0
-> installed ansi.0.7.0
-> installed lwt.6.1.1
-> installed cstruct-lwt.6.2.0
-> installed mirage-flow.3.0.0
-> installed mirage-kv.6.1.1
-> installed inotify.2.6
-> installed prometheus.1.3
-> installed sqlite3.5.4.0
-> installed logs.0.10.0
-> installed base.v0.16.4
-> installed mirage-crypto-rng.0.11.3
-> installed menhir.20260209
-> installed multipart_form.0.8.0
-> installed stdio.v0.16.0
-> installed mirage-crypto-rng-lwt.0.11.3
-> installed session.0.5.0
-> installed capnp-rpc.1.2.3
-> installed multipart_form-lwt.0.8.0
-> installed mirage-crypto-pk.0.11.3
-> installed ctypes.0.24.0
-> installed atd.2.16.0
-> installed bos.0.2.1
-> installed atdgen.2.15.0
-> installed ctypes-foreign.0.24.0
-> installed cf.0.5.0
-> installed fsevents.0.3.0
-> installed cf-lwt.0.5.0
-> installed fsevents-lwt.0.3.0
-> installed capnp.3.6.0
-> installed irmin-watcher.0.5.0
-> installed mirage-crypto-ec.0.11.3
-> installed x509.0.16.5
-> installed ppxlib.0.35.0
-> installed capnp-rpc-lwt.1.2.3
-> installed ca-certs.0.2.3
-> installed tls.0.17.3
-> installed tls-lwt.0.17.3
-> installed tls-mirage.0.17.3
-> installed github-data.4.5.0
-> installed capnp-rpc-net.1.2.3
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_deriving.6.0.3
-> installed ipaddr-sexp.5.6.2
-> installed uri-sexp.4.4.0
-> installed dockerfile.8.3.4
-> installed ppx_deriving_yojson.3.9.1
-> installed current.0.7.4
-> installed conduit.6.2.3
-> installed current_ssh.0.7.4
-> installed cohttp.6.0.0
-> installed session-cohttp.0.5.0
-> installed conduit-lwt.6.2.3
-> installed current_git.0.7.4
-> installed cohttp-lwt.6.0.0
-> installed session-cohttp-lwt.0.5.0
-> installed conduit-lwt-unix.6.2.3
-> installed current_docker.0.7.4
-> installed github.4.5.0
-> installed extunix.0.4.3
-> installed capnp-rpc-unix.1.2.3
-> installed cohttp-lwt-unix.6.0.0
-> installed prometheus-app.1.3
-> installed github-unix.4.5.0
-> installed current_web.0.7.4
-> installed current_rpc.0.7.4
-> installed current_github.0.7.4
-> installed gitlab.0.1.8
-> installed gitlab-unix.0.1.8
-> installed current_gitlab.0.7.4
-> installed current_examples.0.7.4
Done.

<><> hkdf.1.0.4 installed successfully ><><><><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 15:48.22 ---> saved as "347cf677d96b55afe847e699cff4247176e8f6135d319ae64b8284436fd39c75"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test current_examples.0.7.4) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile current_examples 0.7.4 (pinned)
=== install 2 packages
  - install   mdx              2.5.1          [required by current_examples]
  - install   ocaml-version    4.0.4          [required by mdx]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved current_examples.0.7.4  (https://github.com/ocurrent/ocurrent/releases/download/v0.7.4/ocurrent-0.7.4.tbz)
-> retrieved mdx.2.5.1  (https://opam.ocaml.org/cache)
-> retrieved ocaml-version.4.0.4  (https://opam.ocaml.org/cache)
-> removed   current_examples.0.7.4
-> installed ocaml-version.4.0.4
-> installed mdx.2.5.1
-> installed current_examples.0.7.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 15:48.35 ---> saved as "ba35fe4e21992954ab945d8a423fac26ffbdeb5be9ffcf60a95b0eda08522827"

/home/opam: (run (shell  "opam reinstall --with-test --verbose current_examples.0.7.4;\
                        \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 \"\\\"opensuse-16.0\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'current_examples.0.7.4' && 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 current_examples 0.7.4 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [current_examples.0.7.4: extract]
-> retrieved current_examples.0.7.4  (cached)
Processing  2/4: [current_examples: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "current_examples" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/current_examples.0.7.4)
-> compiled  current_examples.0.7.4
-> removed   current_examples.0.7.4
-> installed current_examples.0.7.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 15:48.45 ---> saved as "b83b7f4c86e56e39b8f9a52f005cf9ba6b67b629539f425c7aee65e900b626b2"
Job succeeded
2026-03-26 15:48.51: Job succeeded