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 fedora-42-ocaml-5.4/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:fedora-42-ocaml-5.4@sha256:df580347b77f86db4337404145c90d2bbdee352b0539b494ab79f12fae3745d8
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 "\"fedora-42\""; 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 "\"fedora-42\""; 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:fedora-42-ocaml-5.4@sha256:df580347b77f86db4337404145c90d2bbdee352b0539b494ab79f12fae3745d8-current.0.7.4-4e07f997e5a403e3e284236003dd2dff6b1992f9"
2026-03-26 15:23.47: Using OBuilder spec:
((from ocaml/opam:fedora-42-ocaml-5.4@sha256:df580347b77f86db4337404145c90d2bbdee352b0539b494ab79f12fae3745d8)
(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 \"\\\"fedora-42\\\"\"; 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 \"\\\"fedora-42\\\"\"; 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:28.39: Waiting for worker…
2026-03-26 15:31.57: 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:fedora-42-ocaml-5.4@sha256:df580347b77f86db4337404145c90d2bbdee352b0539b494ab79f12fae3745d8)
Unable to find image 'ocaml/opam:fedora-42-ocaml-5.4@sha256:df580347b77f86db4337404145c90d2bbdee352b0539b494ab79f12fae3745d8' locally
docker.io/ocaml/opam@sha256:df580347b77f86db4337404145c90d2bbdee352b0539b494ab79f12fae3745d8: Pulling from ocaml/opam
f11155b5d7d3: Pulling fs layer
9a12d26ad953: Pulling fs layer
9756e6b56304: Pulling fs layer
95c9feca7a1f: Pulling fs layer
589925b5334f: Pulling fs layer
7c88af2f1db1: Pulling fs layer
9756e6b56304: Waiting
589925b5334f: Waiting
95c9feca7a1f: Waiting
7c88af2f1db1: Waiting
9a12d26ad953: Verifying Checksum
9a12d26ad953: Download complete
95c9feca7a1f: Verifying Checksum
95c9feca7a1f: Download complete
589925b5334f: Download complete
7c88af2f1db1: Download complete
9756e6b56304: Verifying Checksum
9756e6b56304: Download complete
f11155b5d7d3: Verifying Checksum
f11155b5d7d3: Download complete
f11155b5d7d3: Pull complete
9a12d26ad953: Pull complete
9756e6b56304: Pull complete
95c9feca7a1f: Pull complete
589925b5334f: Pull complete
7c88af2f1db1: Pull complete
Digest: sha256:df580347b77f86db4337404145c90d2bbdee352b0539b494ab79f12fae3745d8
Status: Downloaded newer image for ocaml/opam@sha256:df580347b77f86db4337404145c90d2bbdee352b0539b494ab79f12fae3745d8
2026-03-26 15:34.30 ---> saved as "28b9adf24357aa735eaf16f1999310ed841cc66a0c106add1dba082c343aaab4"
/: (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:34.30 ---> saved as "a39060104d0f905df65985f22e7f6853e83fdc16efee4c33f3b80499eb50ddff"
/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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-26 15:34.55 ---> saved as "41d12a1e801be744598175ebb958605f390004995cf46e086ebf791014ecfc9f"
/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=fedora os-version=42
# 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 5.4
# invariant ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-03-26 15:34.56 ---> saved as "612bd760fbc77b17a98bfe88ad1caf4c0adb1af119a657b0a81d6dabc6414ee1"
/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:35.09 ---> saved as "7edb9ac59d16eb58bfd9328dde2f77f76948110f312391881be567d261346b40"
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-26 15:35.36 ---> saved as "61b3812cab7fa3760dad411fa3e97c025fe75cdd3966ce4e029232a86c255298"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-26 15:35.57 ---> saved as "d49115ea9f9f486e14a70ca906a2d8fc0910224299a958f1bb967b4e684bcb8e"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
- Fedora 42 - x86_64 - Updates 100% | 11.6 KiB/s | 9.9 KiB | 00m01s
- Fedora 42 - x86_64 100% | 115.7 KiB/s | 22.9 KiB | 00m00s
- Repositories loaded.
- Metadata cache created.
2026-03-26 15:36.02 ---> saved as "3bb3e77d4ff1cbc34fac256b9d7129c609e52d489a6efc82f9c5af2664030a69"
/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:36.04 ---> saved as "3777414a8cfae88145480af34b6ba77be2ac43fd285181ad0162a12b787a8c80"
/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 \"\\\"fedora-42\\\"\"; 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 44 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 cstruct 6.2.0 [required by hex]
- 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-compiledb 0.6.0 [required by sqlite3]
- install dune-configurator 3.22.0 [required by sqlite3]
- install duration 0.2.1 [required by current]
- install ezjsonm 1.3.0 [required by dune-compiledb]
- install fmt 0.11.0 [required by current]
- install fpath 0.7.3 [required by current]
- install hex 1.5.0 [required by ezjsonm]
- install jsonm 1.0.2 [required by ezjsonm]
- 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 num 1.6 [required by sexplib]
- install ocaml-compiler-libs v0.17.0 [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 parsexp v0.17.0 [required by sexplib]
- 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 sexplib v0.17.0 [required by dune-compiledb]
- install sexplib0 v0.17.0 [required by ppxlib, dune-compiledb]
- install sqlite3 5.4.0 [required by current]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install topkg 1.1.1 [required by astring, bos]
- install uutf 1.0.4 [required by ezjsonm]
The following system packages will first need to be installed:
libev-devel sqlite-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
2. Display the recommended yum 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/sbin/sudo "yum" "install" "-y" "libev-devel" "sqlite-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package Arch Version Repository Size
- Installing:
- libev-devel x86_64 4.33-13.fc42 fedora 130.5 KiB
- sqlite-devel x86_64 3.47.2-5.fc42 updates 673.4 KiB
- Installing dependencies:
- libev x86_64 4.33-13.fc42 fedora 109.2 KiB
- sqlite x86_64 3.47.2-5.fc42 updates 1.8 MiB
-
- Transaction Summary:
- Installing: 4 packages
-
- Total size of inbound packages is 1 MiB. Need to download 1 MiB.
- After this operation, 3 MiB extra will be used (install 3 MiB, remove 0 B).
- [1/4] libev-0:4.33-13.fc42.x86_64 100% | 1.3 MiB/s | 53.4 KiB | 00m00s
- [2/4] sqlite-devel-0:3.47.2-5.fc42.x86_ 100% | 1.4 MiB/s | 146.3 KiB | 00m00s
- [3/4] libev-devel-0:4.33-13.fc42.x86_64 100% | 800.6 KiB/s | 100.1 KiB | 00m00s
- [4/4] sqlite-0:3.47.2-5.fc42.x86_64 100% | 5.9 MiB/s | 918.0 KiB | 00m00s
- --------------------------------------------------------------------------------
- [4/4] Total 100% | 2.4 MiB/s | 1.2 MiB | 00m00s
- Running transaction
- [1/6] Verify package files 100% | 800.0 B/s | 4.0 B | 00m00s
- [2/6] Prepare transaction 100% | 86.0 B/s | 4.0 B | 00m00s
- [3/6] Installing sqlite-0:3.47.2-5.fc42 100% | 63.4 MiB/s | 1.8 MiB | 00m00s
- [4/6] Installing libev-0:4.33-13.fc42.x 100% | 54.1 MiB/s | 110.7 KiB | 00m00s
- [5/6] Installing libev-devel-0:4.33-13. 100% | 128.1 MiB/s | 131.2 KiB | 00m00s
- [6/6] Installing sqlite-devel-0:3.47.2- 100% | 12.9 MiB/s | 674.1 KiB | 00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "libev-devel" "sqlite-devel"
- libev-devel-4.33-13.fc42.x86_64
- sqlite-devel-3.47.2-5.fc42.x86_64
<><> 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)
-> retrieved cstruct.6.2.0 (cached)
-> installed conf-pkg-config.4
-> retrieved current.0.7.4 (cached)
-> retrieved current_incr.0.6.1 (cached)
-> installed conf-sqlite3.1
-> installed conf-libev.4-13
-> 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 ezjsonm.1.3.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved hex.1.5.0 (cached)
-> retrieved jsonm.1.0.2 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt.6.1.1 (cached)
-> retrieved lwt-dllist.1.1.0 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (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 parsexp.v0.17.0 (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 sexplib.v0.17.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved sqlite3.5.4.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uutf.1.0.4 (cached)
-> installed num.1.6
-> 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 uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed dune.3.22.0
-> installed lwt-dllist.1.1.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed cstruct.6.2.0
-> installed current_incr.0.6.1
-> installed duration.0.2.1
-> installed ocaml-compiler-libs.v0.17.0
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed result.1.5
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed hex.1.5.0
-> installed ocplib-endian.1.2
-> installed ezjsonm.1.3.0
-> installed dune-configurator.3.22.0
-> installed parsexp.v0.17.0
-> installed sexplib.v0.17.0
-> installed dune-compiledb.0.6.0
-> installed lwt.6.1.1
-> installed prometheus.1.3
-> installed sqlite3.5.4.0
-> 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:37.01 ---> saved as "2960f8278facfb954ddba6e0ee69f575e672e13b75d220dcff40380850208a87"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test current.0.7.4) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile current 0.7.4 (pinned)
=== install 42 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.17.3 [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 digestif 1.3.0 [required by ca-certs]
- install domain-name 0.5.0 [required by ipaddr]
- install eqaf 0.10 [required by digestif, mirage-crypto]
- install gmap 0.3.0 [required by x509]
- 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 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 ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocaml_intrinsics_kernel v0.17.1 [required by base]
- install ohex 0.2.0 [required by ca-certs]
- install ppx_sexp_conv v0.17.1 [required by cohttp-lwt, cohttp-lwt-unix]
- install ppxlib_jane v0.17.4 [required by ppx_sexp_conv]
- install prometheus-app 1.3 [required by current]
- install ptime 1.2.0 [required by ca-certs]
- 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 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 yum to install them (may need root/sudo access)
2. Display the recommended yum 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/sbin/sudo "yum" "install" "-y" "gmp-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package Arch Version Repository Size
- Installing:
- gmp-devel x86_64 1:6.3.0-4.fc42 fedora 352.3 KiB
- Installing dependencies:
- gmp-c++ x86_64 1:6.3.0-4.fc42 fedora 27.6 KiB
-
- Transaction Summary:
- Installing: 2 packages
-
- Total size of inbound packages is 193 KiB. Need to download 193 KiB.
- After this operation, 380 KiB extra will be used (install 380 KiB, remove 0 B).
- [1/2] gmp-devel-1:6.3.0-4.fc42.x86_64 100% | 2.6 MiB/s | 174.4 KiB | 00m00s
- [2/2] gmp-c++-1:6.3.0-4.fc42.x86_64 100% | 234.1 KiB/s | 18.5 KiB | 00m00s
- --------------------------------------------------------------------------------
- [2/2] Total 100% | 608.5 KiB/s | 192.9 KiB | 00m00s
- Running transaction
- [1/4] Verify package files 100% | 2.0 KiB/s | 2.0 B | 00m00s
- [2/4] Prepare transaction 100% | 54.0 B/s | 2.0 B | 00m00s
- [3/4] Installing gmp-c++-1:6.3.0-4.fc42 100% | 13.9 MiB/s | 28.5 KiB | 00m00s
- [4/4] Installing gmp-devel-1:6.3.0-4.fc 100% | 7.9 MiB/s | 354.1 KiB | 00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "gmp-devel"
- gmp-devel-6.3.0-4.fc42.x86_64
<><> 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.17.3 (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)
-> 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 base64.3.5.2
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0 (https://opam.ocaml.org/cache)
-> installed bigstringaf.0.10.0
-> retrieved conf-gmp.5 (https://opam.ocaml.org/cache)
-> retrieved conf-gmp-powm-sec.4 (https://opam.ocaml.org/cache)
-> installed conf-gmp.5
-> installed conf-gmp-powm-sec.4
-> installed http.6.2.1
-> retrieved current.0.7.4 (https://github.com/ocurrent/ocurrent/releases/download/v0.7.4/ocurrent-0.7.4.tbz)
-> retrieved digestif.1.3.0 (https://opam.ocaml.org/cache)
-> retrieved domain-name.0.5.0 (https://opam.ocaml.org/cache)
-> retrieved eqaf.0.10 (https://opam.ocaml.org/cache)
-> retrieved gmap.0.3.0 (https://opam.ocaml.org/cache)
-> installed domain-name.0.5.0
-> retrieved ipaddr.5.6.2, ipaddr-sexp.5.6.2, macaddr.5.6.2 (https://opam.ocaml.org/cache)
-> retrieved kdf.1.0.0 (https://opam.ocaml.org/cache)
-> installed gmap.0.3.0
-> retrieved magic-mime.1.3.1 (https://opam.ocaml.org/cache)
-> installed eqaf.0.10
-> installed macaddr.5.6.2
-> 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)
-> installed magic-mime.1.3.1
-> installed ipaddr.5.6.2
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> installed digestif.1.3.0
-> retrieved ocaml_intrinsics_kernel.v0.17.1 (https://opam.ocaml.org/cache)
-> retrieved ohex.0.2.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_sexp_conv.v0.17.1 (https://opam.ocaml.org/cache)
-> retrieved ppxlib_jane.v0.17.4 (https://opam.ocaml.org/cache)
-> installed ohex.0.2.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> retrieved prometheus-app.1.3 (https://opam.ocaml.org/cache)
-> retrieved ptime.1.2.0 (https://opam.ocaml.org/cache)
-> retrieved stringext.1.6.0 (https://opam.ocaml.org/cache)
-> retrieved uri.4.4.0, uri-sexp.4.4.0 (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed stringext.1.6.0
-> retrieved x509.1.0.6 (https://opam.ocaml.org/cache)
-> retrieved zarith.1.14 (https://opam.ocaml.org/cache)
-> installed ppxlib_jane.v0.17.4
-> installed mirage-crypto.2.1.0
-> installed angstrom.0.16.1
-> installed kdf.1.0.0
-> installed alcotest.1.9.1
-> removed current.0.7.4
-> installed ptime.1.2.0
-> installed mirage-crypto-rng.2.1.0
-> installed alcotest-lwt.1.9.1
-> installed asn1-combinators.0.3.2
-> installed uri.4.4.0
-> installed zarith.1.14
-> installed base.v0.17.3
-> installed mirage-crypto-ec.2.1.0
-> installed mirage-crypto-pk.2.1.0
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed ppx_sexp_conv.v0.17.1
-> 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:37.32 ---> saved as "fb8f6e532b956efe4a1a3f7af21cf9f784361151907568d954410bb64991770a"
/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 \"\\\"fedora-42\\\"\"; 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/5.4/.opam-switch/build/current.0.7.4)
- (cd _build/default/test && ./test.exe)
- Testing `test'.
- This run has ID `6SG4KT6W'.
-
- [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/5.4/.opam-switch/build/current.0.7.4/_build/default/test/_build/_tests/test'.
- Test Successful in 0.079s. 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:37.38 ---> saved as "e759be2e53a52191abaa9c0cb2d3edde01a405b6bcc813c16793bf10580afe03"
Job succeeded
2026-03-26 15:37.49: Job succeeded