Build:
- 0
2026-03-26 15:23.47: New job: test current.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.0.7.4 0.7.4
RUN opam reinstall current.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.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.0.7.4) || true
RUN opam reinstall --with-test --verbose current.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.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.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.0.7.4 0.7.4"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall current.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.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.0.7.4) || true"))
(run (shell "opam reinstall --with-test --verbose current.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.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.34: Waiting for worker…
2026-03-26 15:35.43: Got resource from pool OCluster
Building on odawa.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)
2026-03-26 15:47.50 ---> using "fbfb63538acc5b68860c96756370d8c1982007d8bb244ea63a2197ef9c0a6f52" from cache
/: (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:47.50 ---> using "b30cf8bd0962ae1ed8e7d340d046321e9b83c04bc0218290ed6f38a7a1bdf84c" 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.
Continue? [Y/n] y
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.
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-26 15:47.50 ---> using "561f4df4efe360b3f40c7062b6909b3971b9bc45bebab76b0295c43ba78e8e07" 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.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:47.50 ---> using "e5532827813c9bde597050a6789b20cc763f89d717147e75b6d18b379fea81e6" 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/"))
2026-03-26 15:47.50 ---> using "12504326bdd9e310c321fa025fe556c29a98eaae987fbda5f22d1777c9cb1d58" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-26 15:47.50 ---> using "a2a88faec40a9b8a2fb2fa6a061d3c11a47ca5257bcda5789c2e56d49f37ba2f" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-26 15:47.50 ---> using "631bfac67c6b7ecb86783a557fa6b7c37f1dae8d60c08a9413ebc28370e1d570" from cache
/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:47.50 ---> using "8ecd53c79e49a3bf26950f6da61a5f2963ebfac6bad141f45e1644144d3c8c31" from cache
/home/opam: (run (shell "opam pin add -k version -yn current.0.7.4 0.7.4"))
current is now pinned to version 0.7.4
2026-03-26 15:47.50 ---> using "81107263b2da89ff23d8b553564dda98f55f40e5f8ad0134f368c4b7ed2810a4" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall current.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.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.0.7.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 35 packages
- install asetmap 0.8.1 [required by prometheus]
- install astring 0.8.5 [required by current]
- install base-bytes base [required by ocplib-endian]
- install bos 0.2.1 [required by current]
- install cmdliner 2.1.0 [required by current]
- install conf-libev 4-13 [required by current]
- install conf-pkg-config 4 [required by conf-sqlite3]
- install conf-sqlite3 1 [required by sqlite3]
- install cppo 1.8.0 [required by ppx_deriving]
- install csexp 1.5.2 [required by dune-configurator]
- install current 0.7.4 (pinned)
- install current_incr 0.6.1 [required by current]
- install dune 3.22.0 [required by current]
- install dune-configurator 3.22.0 [required by sqlite3]
- install duration 0.2.1 [required by current]
- install fmt 0.11.0 [required by current]
- install fpath 0.7.3 [required by current]
- install logs 0.10.0 [required by current]
- install lwt 6.1.1 [required by current]
- install lwt-dllist 1.1.0 [required by current]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocamlbuild 0.16.1 [required by astring, bos]
- install ocamlfind 1.9.8 [required by bos, astring, ppx_deriving]
- install ocplib-endian 1.2 [required by lwt]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.1.1 [required by current]
- install ppxlib 0.38.0 [required by ppx_deriving]
- install prometheus 1.3 [required by current]
- install re 1.14.0 [required by current]
- install result 1.5 [required by current]
- install rresult 0.7.0 [required by bos]
- install sexplib0 v0.17.0 [required by ppxlib]
- install sqlite3 5.3.1 [required by current]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install topkg 1.1.1 [required by astring, bos]
The following system packages will first need to be installed:
libev-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" "libev-devel" "sqlite3-devel"
- Refreshing service 'openSUSE'.
- Loading repository data...
- Reading installed packages...
- Resolving package dependencies...
-
- The following 3 NEW packages are going to be installed:
- libev-devel libev4 sqlite3-devel
-
- 3 new packages to install.
-
- Package download size: 541.0 KiB
-
- Package install size change:
- | 1.1 MiB required by packages that will be installed
- 1.1 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: libev4-4.33-160000.2.2.x86_64.rpm [done]
- .
- ..
- Preloading: libev-devel-4.33-160000.2.2.x86_64.rpm [done]
- .
-
- Preloading: sqlite3-devel-3.50.4-160000.1.2.x86_64.rpm [Error: "The requested URL returned error: 404", trying next mirror.]
- ..
-
- Preloading: sqlite3-devel-3.50.4-160000.1.2.x86_64.rpm [done]
- .done]
- Retrieving: libev4-4.33-160000.2.2.x86_64 (repo-oss (16.0)) (1/3), 50.0 KiB
- Retrieving: sqlite3-devel-3.50.4-160000.1.2.x86_64 (repo-oss (16.0)) (2/3), 299.6 KiB
- Retrieving: libev-devel-4.33-160000.2.2.x86_64 (repo-oss (16.0)) (3/3), 191.4 KiB
-
- Checking for file conflicts: [..done]
- (1/3) Installing: libev4-4.33-160000.2.2.x86_64 [..done]
- (2/3) Installing: sqlite3-devel-3.50.4-160000.1.2.x86_64 [..done]
- (3/3) Installing: libev-devel-4.33-160000.2.2.x86_64 [..done]
- Running post-transaction scripts [...done]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved asetmap.0.8.1 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved conf-libev.4-13 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-pkg-config.4
-> retrieved current.0.7.4 (cached)
-> installed conf-sqlite3.1
-> retrieved current_incr.0.6.1 (cached)
-> installed conf-libev.4-13
-> retrieved dune.3.22.0, dune-configurator.3.22.0 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt.6.1.1 (cached)
-> retrieved lwt-dllist.1.1.0 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> installed cmdliner.2.1.0
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.1.1 (cached)
-> retrieved ppxlib.0.38.0 (cached)
-> retrieved prometheus.1.3 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved result.1.5 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved sqlite3.5.3.1 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed asetmap.0.8.1
-> installed rresult.0.7.0
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed dune.3.22.0
-> installed ppx_derivers.1.2.1
-> installed lwt-dllist.1.1.0
-> installed duration.0.2.1
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed current_incr.0.6.1
-> installed ocaml-compiler-libs.v0.12.4
-> installed re.1.14.0
-> installed result.1.5
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.22.0
-> installed sqlite3.5.3.1
-> installed lwt.6.1.1
-> installed prometheus.1.3
-> installed logs.0.10.0
-> installed bos.0.2.1
-> installed ppxlib.0.38.0
-> installed ppx_deriving.6.1.1
-> installed current.0.7.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 15:48.11 ---> saved as "2914722b268649b329a6805e62e13968794918f6bfd059e958611bdd47bdd494"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test current.0.7.4) || true"))
The following actions will be performed:
=== downgrade 3 packages
- downgrade ppx_deriving 6.1.1 to 6.0.3 [required by current]
- downgrade ppxlib 0.38.0 to 0.35.0 [required by ppx_deriving]
- downgrade sexplib0 v0.17.0 to v0.16.0 [required by dune-compiledb, ppxlib, cohttp-lwt]
=== recompile 1 package
- recompile current 0.7.4 (pinned)
=== upgrade 1 package
- upgrade sqlite3 5.3.1 to 5.4.0 [required by current]
=== install 49 packages
- install alcotest 1.9.1 [required by current]
- install alcotest-lwt 1.9.1 [required by current]
- install angstrom 0.16.1 [required by uri]
- install asn1-combinators 0.3.2 [required by x509]
- install base v0.16.4 [required by ppx_sexp_conv]
- install base64 3.5.2 [required by cohttp]
- install bigstringaf 0.10.0 [required by angstrom]
- install ca-certs 1.0.1 [required by conduit-lwt-unix]
- install cohttp 6.2.1 [required by cohttp-lwt, cohttp-lwt-unix]
- install cohttp-lwt 6.2.1 [required by prometheus-app]
- install cohttp-lwt-unix 6.2.1 [required by prometheus-app]
- install conduit 8.0.0 [required by conduit-lwt]
- install conduit-lwt 8.0.0 [required by cohttp-lwt-unix]
- install conduit-lwt-unix 8.0.0 [required by cohttp-lwt-unix]
- install conf-gmp 5 [required by conf-gmp-powm-sec, zarith]
- install conf-gmp-powm-sec 4 [required by mirage-crypto-pk]
- install cstruct 6.2.0 [required by hex]
- install digestif 1.3.0 [required by ca-certs]
- install domain-name 0.5.0 [required by ipaddr]
- install dune-compiledb 0.6.0 [required by sqlite3]
- install eqaf 0.10 [required by digestif, mirage-crypto]
- install ezjsonm 1.3.0 [required by dune-compiledb]
- install gmap 0.3.0 [required by x509]
- install hex 1.5.0 [required by ezjsonm]
- install http 6.2.1 [required by cohttp-lwt, cohttp-lwt-unix]
- install ipaddr 5.6.2 [required by cohttp-lwt]
- install ipaddr-sexp 5.6.2 [required by conduit-lwt-unix]
- install jsonm 1.0.2 [required by ezjsonm]
- install kdf 1.0.0 [required by x509]
- install macaddr 5.6.2 [required by ipaddr]
- install magic-mime 1.3.1 [required by cohttp-lwt-unix]
- install mirage-crypto 2.1.0 [required by ca-certs]
- install mirage-crypto-ec 2.1.0 [required by x509]
- install mirage-crypto-pk 2.1.0 [required by x509]
- install mirage-crypto-rng 2.1.0 [required by x509]
- install num 1.6 [required by sexplib]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ohex 0.2.0 [required by ca-certs]
- install parsexp v0.16.0 [required by sexplib]
- install ppx_sexp_conv v0.16.0 [required by cohttp-lwt, cohttp-lwt-unix]
- install prometheus-app 1.3 [required by current]
- install ptime 1.2.0 [required by ca-certs]
- install sexplib v0.16.0 [required by dune-compiledb]
- install stringext 1.6.0 [required by cohttp]
- install uri 4.4.0 [required by cohttp-lwt]
- install uri-sexp 4.4.0 [required by cohttp]
- install uutf 1.0.4 [required by alcotest]
- install x509 1.0.6 [required by ca-certs]
- install zarith 1.14 [required by mirage-crypto-pk]
The following system packages will first need to be installed:
gmp-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" "gmp-devel"
- Refreshing service 'openSUSE'.
- Loading repository data...
- Reading installed packages...
- Resolving package dependencies...
-
- The following 2 NEW packages are going to be installed:
- gmp-devel libgmpxx4
-
- 2 new packages to install.
-
- Package download size: 353.0 KiB
-
- Package install size change:
- | 1.1 MiB required by packages that will be installed
- 1.1 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: libgmpxx4-6.3.0-160000.2.2.x86_64.rpm [done]
- .
-
- Preloading: gmp-devel-6.3.0-160000.2.2.x86_64.rpm [Error: "The requested URL returned error: 404", trying next mirror.]
- .
- .
-
- Preloading: gmp-devel-6.3.0-160000.2.2.x86_64.rpm [done]
- .done]
- Retrieving: libgmpxx4-6.3.0-160000.2.2.x86_64 (repo-oss (16.0)) (1/2), 32.3 KiB
- Retrieving: gmp-devel-6.3.0-160000.2.2.x86_64 (repo-oss (16.0)) (2/2), 320.7 KiB
-
- Checking for file conflicts: [..done]
- (1/2) Installing: libgmpxx4-6.3.0-160000.2.2.x86_64 [..done]
- (2/2) Installing: gmp-devel-6.3.0-160000.2.2.x86_64 [..done]
- Running post-transaction scripts [...done]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1, alcotest-lwt.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved angstrom.0.16.1 (https://opam.ocaml.org/cache)
-> retrieved asn1-combinators.0.3.2 (https://opam.ocaml.org/cache)
-> retrieved base.v0.16.4 (https://opam.ocaml.org/cache)
-> retrieved base64.3.5.2 (https://opam.ocaml.org/cache)
-> retrieved bigstringaf.0.10.0 (https://opam.ocaml.org/cache)
-> installed base64.3.5.2
-> retrieved ca-certs.1.0.1 (https://opam.ocaml.org/cache)
-> retrieved cohttp.6.2.1, cohttp-lwt.6.2.1, cohttp-lwt-unix.6.2.1, http.6.2.1 (https://opam.ocaml.org/cache)
-> installed bigstringaf.0.10.0
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0 (https://opam.ocaml.org/cache)
-> retrieved conf-gmp.5 (https://opam.ocaml.org/cache)
-> installed http.6.2.1
-> installed conf-gmp.5
-> retrieved conf-gmp-powm-sec.4 (https://opam.ocaml.org/cache)
-> installed conf-gmp-powm-sec.4
-> retrieved cstruct.6.2.0 (https://opam.ocaml.org/cache)
-> retrieved current.0.7.4 (https://github.com/ocurrent/ocurrent/releases/download/v0.7.4/ocurrent-0.7.4.tbz)
-> installed cstruct.6.2.0
-> retrieved digestif.1.3.0 (https://opam.ocaml.org/cache)
-> retrieved domain-name.0.5.0 (https://opam.ocaml.org/cache)
-> installed domain-name.0.5.0
-> retrieved dune-compiledb.0.6.0 (https://opam.ocaml.org/cache)
-> retrieved eqaf.0.10 (https://opam.ocaml.org/cache)
-> retrieved ezjsonm.1.3.0 (https://opam.ocaml.org/cache)
-> retrieved gmap.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved hex.1.5.0 (https://opam.ocaml.org/cache)
-> installed gmap.0.3.0
-> installed eqaf.0.10
-> retrieved ipaddr.5.6.2, ipaddr-sexp.5.6.2, macaddr.5.6.2 (https://opam.ocaml.org/cache)
-> installed hex.1.5.0
-> retrieved jsonm.1.0.2 (https://opam.ocaml.org/cache)
-> retrieved kdf.1.0.0 (https://opam.ocaml.org/cache)
-> installed macaddr.5.6.2
-> retrieved magic-mime.1.3.1 (https://opam.ocaml.org/cache)
-> installed digestif.1.3.0
-> installed ipaddr.5.6.2
-> installed magic-mime.1.3.1
-> retrieved mirage-crypto.2.1.0, mirage-crypto-ec.2.1.0, mirage-crypto-pk.2.1.0, mirage-crypto-rng.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved num.1.6 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved ohex.0.2.0 (https://opam.ocaml.org/cache)
-> retrieved parsexp.v0.16.0 (https://opam.ocaml.org/cache)
-> installed ohex.0.2.0
-> retrieved ppx_deriving.6.0.3 (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved ppx_sexp_conv.v0.16.0 (https://opam.ocaml.org/cache)
-> installed angstrom.0.16.1
-> retrieved ppxlib.0.35.0 (https://opam.ocaml.org/cache)
-> installed num.1.6
-> installed mirage-crypto.2.1.0
-> retrieved prometheus-app.1.3 (https://opam.ocaml.org/cache)
-> retrieved ptime.1.2.0 (https://opam.ocaml.org/cache)
-> installed kdf.1.0.0
-> retrieved sexplib.v0.16.0 (https://opam.ocaml.org/cache)
-> installed mirage-crypto-rng.2.1.0
-> retrieved sexplib0.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved sqlite3.5.4.0 (https://opam.ocaml.org/cache)
-> retrieved stringext.1.6.0 (https://opam.ocaml.org/cache)
-> installed stringext.1.6.0
-> retrieved uri.4.4.0, uri-sexp.4.4.0 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed ptime.1.2.0
-> retrieved x509.1.0.6 (https://opam.ocaml.org/cache)
-> retrieved zarith.1.14 (https://opam.ocaml.org/cache)
-> installed asn1-combinators.0.3.2
-> removed current.0.7.4
-> removed ppx_deriving.6.1.1
-> removed ppxlib.0.38.0
-> removed sexplib0.v0.17.0
-> removed sqlite3.5.3.1
-> installed sexplib0.v0.16.0
-> installed uutf.1.0.4
-> installed uri.4.4.0
-> installed alcotest.1.9.1
-> installed parsexp.v0.16.0
-> installed jsonm.1.0.2
-> installed alcotest-lwt.1.9.1
-> installed ezjsonm.1.3.0
-> installed mirage-crypto-ec.2.1.0
-> installed sexplib.v0.16.0
-> installed dune-compiledb.0.6.0
-> installed zarith.1.14
-> installed base.v0.16.4
-> installed sqlite3.5.4.0
-> installed mirage-crypto-pk.2.1.0
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed ppxlib.0.35.0
-> 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 conduit.8.0.0
-> installed cohttp.6.2.1
-> installed conduit-lwt.8.0.0
-> installed cohttp-lwt.6.2.1
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt-unix.6.2.1
-> installed prometheus-app.1.3
-> installed current.0.7.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 15:48.59 ---> saved as "a62775525106c6f724fc9de33fa87ab5f17a07cba46127e69fdc9178d2af1e37"
/home/opam: (run (shell "opam reinstall --with-test --verbose current.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.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 0.7.4 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [current.0.7.4: extract]
-> retrieved current.0.7.4 (cached)
Processing 2/4: [current: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "current" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/current.0.7.4)
- (cd _build/default/test && ./test.exe)
- Testing `test'.
- This run has ID `3OODQMQN'.
-
- [OK] pipelines 0 v1.
- [OK] pipelines 1 v1-cancel.
- [OK] pipelines 2 v2.
- [OK] pipelines 3 v3.
- [OK] pipelines 4 v4.
- [OK] pipelines 5 v5.
- [OK] pipelines 6 v5-nil.
- [OK] pipelines 7 option-some.
- [OK] pipelines 8 option-none.
- [OK] pipelines 9 state.
- [OK] pipelines 10 pair.
- [OK] pipelines 11 latch.
- [OK] pipelines 12 context.
- [OK] terms 0 all_labelled.
- [OK] terms 1 metadata.
- [OK] terms 2 observe.
- [OK] cache 0 basic.
- [OK] cache 1 expires.
- [OK] cache 2 autocancel.
- [OK] cache 3 output.
- [OK] cache 4 output_autocancel.
- [OK] cache 5 output_retry.
- [OK] cache 6 output_retry_new.
- [OK] cache 7 latched.
- [OK] cache 8 latched_autocancel.
- [OK] cache 9 clear_error.
- [OK] monitor 0 basic.
- [OK] job 0 streams.
- [OK] job 1 output.
- [OK] job 2 pp_cmd.
- [OK] job 3 cancel.
- [OK] job 4 pool.
- [OK] job 5 pool_cancel.
- [OK] job 6 pool_priority.
- [OK] log_matcher 0 basic.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/current.0.7.4/_build/default/test/_build/_tests/test'.
- Test Successful in 0.060s. 35 tests run.
-> compiled current.0.7.4
-> removed current.0.7.4
-> installed current.0.7.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 15:49.05 ---> saved as "d6d12314842ece8d9595641b134eac8a3f160da13945fa1ef04dfdd4c154c870"
Job succeeded
2026-03-26 15:49.10: Job succeeded