Build:
- 0
2026-03-26 16:22.35: New job: test current_slack.0.7.4, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29608/head (a20c691bc0f83e0da59a59bae94423908fa24fa3)
on ubuntu-24.04-ocaml-5.4/riscv64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29608/head" && git reset --hard a20c691b
git fetch origin master
git merge --no-edit 46f289cd3749314bbebddeede62fc05f9858f680
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:9534e16a075fa4c76ec55a6786e09700cf96d0e0fef84fe362e9bb62bd6fcddd
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_slack.0.7.4 0.7.4
RUN opam reinstall current_slack.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 "\"ubuntu-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'current_slack.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_slack.0.7.4) || true
RUN opam reinstall --with-test --verbose current_slack.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 "\"ubuntu-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'current_slack.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 16:22.35: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:9534e16a075fa4c76ec55a6786e09700cf96d0e0fef84fe362e9bb62bd6fcddd-current_slack.0.7.4-a20c691bc0f83e0da59a59bae94423908fa24fa3"
2026-03-26 16:22.35: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:9534e16a075fa4c76ec55a6786e09700cf96d0e0fef84fe362e9bb62bd6fcddd)
(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_slack.0.7.4 0.7.4"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall current_slack.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 \"\\\"ubuntu-24.04\\\"\"; 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_slack.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_slack.0.7.4) || true"))
(run (shell "opam reinstall --with-test --verbose current_slack.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 \"\\\"ubuntu-24.04\\\"\"; 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_slack.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 16:22.35: Waiting for resource in pool OCluster
2026-03-26 16:22.38: Waiting for worker…
2026-03-26 18:02.55: Got resource from pool OCluster
Building on riscv-bm-01.sw.ci.dev
All commits already cached
Updating files: 14% (2711/18552)
Updating files: 15% (2783/18552)
Updating files: 16% (2969/18552)
Updating files: 17% (3154/18552)
Updating files: 18% (3340/18552)
Updating files: 19% (3525/18552)
Updating files: 20% (3711/18552)
Updating files: 21% (3896/18552)
Updating files: 22% (4082/18552)
Updating files: 23% (4267/18552)
Updating files: 24% (4453/18552)
Updating files: 25% (4638/18552)
Updating files: 26% (4824/18552)
Updating files: 27% (5010/18552)
Updating files: 28% (5195/18552)
Updating files: 28% (5249/18552)
Updating files: 29% (5381/18552)
Updating files: 30% (5566/18552)
Updating files: 31% (5752/18552)
Updating files: 32% (5937/18552)
Updating files: 33% (6123/18552)
Updating files: 34% (6308/18552)
Updating files: 35% (6494/18552)
Updating files: 36% (6679/18552)
Updating files: 37% (6865/18552)
Updating files: 38% (7050/18552)
Updating files: 39% (7236/18552)
Updating files: 40% (7421/18552)
Updating files: 41% (7607/18552)
Updating files: 41% (7789/18552)
Updating files: 42% (7792/18552)
Updating files: 43% (7978/18552)
Updating files: 44% (8163/18552)
Updating files: 45% (8349/18552)
Updating files: 46% (8534/18552)
Updating files: 47% (8720/18552)
Updating files: 48% (8905/18552)
Updating files: 49% (9091/18552)
Updating files: 50% (9276/18552)
Updating files: 51% (9462/18552)
Updating files: 52% (9648/18552)
Updating files: 53% (9833/18552)
Updating files: 54% (10019/18552)
Updating files: 54% (10069/18552)
Updating files: 55% (10204/18552)
Updating files: 56% (10390/18552)
Updating files: 57% (10575/18552)
Updating files: 58% (10761/18552)
Updating files: 59% (10946/18552)
Updating files: 60% (11132/18552)
Updating files: 61% (11317/18552)
Updating files: 62% (11503/18552)
Updating files: 63% (11688/18552)
Updating files: 64% (11874/18552)
Updating files: 65% (12059/18552)
Updating files: 66% (12245/18552)
Updating files: 66% (12395/18552)
Updating files: 67% (12430/18552)
Updating files: 68% (12616/18552)
Updating files: 69% (12801/18552)
Updating files: 70% (12987/18552)
Updating files: 71% (13172/18552)
Updating files: 72% (13358/18552)
Updating files: 73% (13543/18552)
Updating files: 74% (13729/18552)
Updating files: 75% (13914/18552)
Updating files: 76% (14100/18552)
Updating files: 77% (14286/18552)
Updating files: 78% (14471/18552)
Updating files: 79% (14657/18552)
Updating files: 79% (14776/18552)
Updating files: 80% (14842/18552)
Updating files: 81% (15028/18552)
Updating files: 82% (15213/18552)
Updating files: 83% (15399/18552)
Updating files: 84% (15584/18552)
Updating files: 85% (15770/18552)
Updating files: 86% (15955/18552)
Updating files: 87% (16141/18552)
Updating files: 88% (16326/18552)
Updating files: 89% (16512/18552)
Updating files: 90% (16697/18552)
Updating files: 91% (16883/18552)
Updating files: 92% (17068/18552)
Updating files: 92% (17160/18552)
Updating files: 93% (17254/18552)
Updating files: 94% (17439/18552)
Updating files: 95% (17625/18552)
Updating files: 96% (17810/18552)
Updating files: 97% (17996/18552)
Updating files: 98% (18181/18552)
Updating files: 99% (18367/18552)
Updating files: 100% (18552/18552)
Updating files: 100% (18552/18552), done.
HEAD is now at 46f289cd37 Merge pull request #29563 from NathanReb/release-ppxlib-0.38.0
Updating 46f289cd37..a20c691bc0
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 | 86 +++++++++++++++++
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, 830 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:ubuntu-24.04-ocaml-5.4@sha256:9534e16a075fa4c76ec55a6786e09700cf96d0e0fef84fe362e9bb62bd6fcddd)
Unable to find image 'ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:9534e16a075fa4c76ec55a6786e09700cf96d0e0fef84fe362e9bb62bd6fcddd' locally
docker.io/ocaml/opam@sha256:9534e16a075fa4c76ec55a6786e09700cf96d0e0fef84fe362e9bb62bd6fcddd: Pulling from ocaml/opam
f2683d5e2cbe: Already exists
02751ff4abc9: Already exists
e713ceb278b3: Already exists
756895a86a0b: Already exists
1a06c92bb812: Already exists
3c8248524df4: Already exists
69e0b9988875: Already exists
86e3068c9b9c: Already exists
8c27b312abe2: Already exists
daf2913223bd: Already exists
8c34bc9ec7ad: Already exists
cf593a3cf665: Already exists
34b57fe326ab: Already exists
ba2fd5c779ba: Already exists
a485987ec570: Already exists
9d309df9529a: Already exists
0536f64225da: Already exists
0536f64225da: Already exists
ce9e29f4d188: Already exists
a93d42988756: Already exists
28157b6d8c2f: Already exists
41973de8e3d5: Already exists
4f4fb700ef54: Already exists
0f37346a9ccb: Already exists
408fa26e5246: Already exists
abd5ecb90bdb: Already exists
b9b2a4deef0d: Already exists
a765421f304f: Already exists
049386d3400e: Already exists
c72b37197e1f: Already exists
da3f3feedbc9: Already exists
b523f5dfe651: Already exists
4f9bec3428d5: Already exists
8a016a7b87b7: Already exists
1fbad9fb68da: Already exists
c0d58e4028cd: Already exists
b68e79efa0bb: Already exists
61e0e1f2ea0e: Already exists
fc2b004f5c89: Already exists
07beef5e9f02: Already exists
b726b31b9dc0: Already exists
f875160eb081: Pulling fs layer
64e43db424a1: Pulling fs layer
5cdd1e79b0ed: Pulling fs layer
c32904dd669e: Pulling fs layer
d04706dfde68: Pulling fs layer
4aef9af22c96: Pulling fs layer
0a2be72ae690: Pulling fs layer
d04706dfde68: Waiting
4aef9af22c96: Waiting
0a2be72ae690: Waiting
c32904dd669e: Waiting
64e43db424a1: Verifying Checksum
64e43db424a1: Download complete
f875160eb081: Verifying Checksum
f875160eb081: Download complete
5cdd1e79b0ed: Verifying Checksum
5cdd1e79b0ed: Download complete
d04706dfde68: Verifying Checksum
d04706dfde68: Download complete
f875160eb081: Pull complete
64e43db424a1: Pull complete
4aef9af22c96: Verifying Checksum
4aef9af22c96: Download complete
5cdd1e79b0ed: Pull complete
0a2be72ae690: Verifying Checksum
0a2be72ae690: Download complete
c32904dd669e: Verifying Checksum
c32904dd669e: Download complete
c32904dd669e: Pull complete
d04706dfde68: Pull complete
4aef9af22c96: Pull complete
0a2be72ae690: Pull complete
Digest: sha256:9534e16a075fa4c76ec55a6786e09700cf96d0e0fef84fe362e9bb62bd6fcddd
Status: Downloaded newer image for ocaml/opam@sha256:9534e16a075fa4c76ec55a6786e09700cf96d0e0fef84fe362e9bb62bd6fcddd
2026-03-26 18:03.07 ---> using "3838290aeb2e77a14b79098bdc4a7e2e5089e4c737e7a54145a0c3c14aeec1a4" 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 18:03.07 ---> using "29ae9153229731288fec61e145d8d1c3044e0c006df483917895146891c7cb70" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This 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 18:03.07 ---> using "ce51ccaac95a009bce01ad917125f72011d650a5c75896120abf19d4e3fc790b" 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=riscv64 os=linux os-distribution=ubuntu os-version=24.04
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 3
# 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 18:03.07 ---> using "21827d99a93eeed913fa586e2ce56352fb3bde4cb0e7f8a5773bdf30314693c9" 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 18:03.07 ---> using "597b13c91eae7076a0615c82c46432f5c31883c72375ef32bffba343860fa713" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-26 18:03.12 ---> using "5eb164d2ecd743ea6b3b4d5e08f95bd7c9e28ae2605d224a43ffaffea09bb265" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-26 18:03.12 ---> using "b77ab9eea645de29fea67d77bdee97f9f228ea2969788b82865780b908254119" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://ports.ubuntu.com/ubuntu-ports noble InRelease
- Get:2 http://ports.ubuntu.com/ubuntu-ports noble-updates InRelease [126 kB]
- Get:3 http://ports.ubuntu.com/ubuntu-ports noble-backports InRelease [126 kB]
- Get:4 http://ports.ubuntu.com/ubuntu-ports noble-security InRelease [126 kB]
- Get:5 http://ports.ubuntu.com/ubuntu-ports noble-updates/restricted riscv64 Packages [11.0 kB]
- Get:6 http://ports.ubuntu.com/ubuntu-ports noble-updates/main riscv64 Packages [952 kB]
- Get:7 http://ports.ubuntu.com/ubuntu-ports noble-updates/universe riscv64 Packages [1604 kB]
- Get:8 http://ports.ubuntu.com/ubuntu-ports noble-backports/universe riscv64 Packages [29.5 kB]
- Get:9 http://ports.ubuntu.com/ubuntu-ports noble-backports/main riscv64 Packages [49.4 kB]
- Get:10 http://ports.ubuntu.com/ubuntu-ports noble-backports/multiverse riscv64 Packages [695 B]
- Get:11 http://ports.ubuntu.com/ubuntu-ports noble-security/main riscv64 Packages [627 kB]
- Get:12 http://ports.ubuntu.com/ubuntu-ports noble-security/restricted riscv64 Packages [8714 B]
- Get:13 http://ports.ubuntu.com/ubuntu-ports noble-security/universe riscv64 Packages [1118 kB]
- Fetched 4778 kB in 2s (2127 kB/s)
- Reading package lists...
-
2026-03-26 18:03.12 ---> using "6195c3c88c582997c320ae58b82f27f22abfafb6d74a8599d99f3c34fa5c428b" from cache
/home/opam: (run (shell "opam pin add -k version -yn current_slack.0.7.4 0.7.4"))
current_slack is now pinned to version 0.7.4
2026-03-26 18:03.12 ---> using "336f031c8434b11bb0c3d09c37107d1446c587de0ef20e1e2f868607393c5211" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall current_slack.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 \"\\\"ubuntu-24.04\\\"\"; 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_slack.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_slack.0.7.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 87 packages
- install angstrom 0.16.1 [required by uri]
- install asetmap 0.8.1 [required by prometheus]
- install asn1-combinators 0.3.2 [required by x509]
- install astring 0.8.5 [required by current]
- install base v0.17.3 [required by ppx_sexp_conv]
- install base-bytes base [required by ocplib-endian]
- install base64 3.5.2 [required by cohttp]
- install bigstringaf 0.10.0 [required by angstrom]
- install bos 0.2.1 [required by current]
- install ca-certs 1.0.1 [required by conduit-lwt-unix]
- install cmdliner 2.1.0 [required by cohttp-lwt-unix, current]
- install cohttp 6.2.1 [required by cohttp-lwt-unix]
- install cohttp-lwt 6.2.1 [required by cohttp-lwt-unix]
- install cohttp-lwt-unix 6.2.1 [required by current_slack]
- 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 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 [required by current_slack]
- install current_incr 0.6.1 [required by current]
- install current_slack 0.7.4 (pinned)
- install digestif 1.3.0 [required by ca-certs]
- install domain-name 0.5.0 [required by ipaddr]
- install dune 3.22.0 [required by current_slack]
- 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 eqaf 0.10 [required by digestif, mirage-crypto]
- install ezjsonm 1.3.0 [required by dune-compiledb]
- install fmt 0.11.0 [required by current_slack]
- install fpath 0.7.3 [required by current]
- 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-unix]
- install ipaddr 5.6.2 [required by cohttp-lwt, cohttp, conduit-lwt-unix]
- 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, tls]
- install logs 0.10.0 [required by current_slack]
- install lwt 6.1.1 [required by current_slack]
- 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 mirage-crypto 2.1.0 [required by ca-certs]
- install mirage-crypto-ec 2.1.0 [required by x509, tls]
- install mirage-crypto-pk 2.1.0 [required by x509, tls]
- install mirage-crypto-rng 2.1.0 [required by tls-lwt]
- install num 1.6 [required by sexplib]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocaml_intrinsics_kernel v0.17.1 [required by base]
- install ocamlbuild 0.16.1 [required by logs, asetmap]
- install ocamlfind 1.9.8 [required by ppx_deriving]
- install ocplib-endian 1.2 [required by lwt]
- install ohex 0.2.0 [required by ca-certs]
- 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 ppx_sexp_conv v0.17.1 [required by cohttp-lwt-unix]
- install ppxlib 0.38.0 [required by ppx_deriving]
- install ppxlib_jane v0.17.4 [required by ppx_sexp_conv]
- install prometheus 1.3 [required by current]
- install ptime 1.2.0 [required by ca-certs, tls-lwt]
- 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 cohttp-lwt, cohttp, conduit-lwt]
- install sqlite3 5.4.0 [required by current]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install stringext 1.6.0 [required by cohttp]
- install tls 2.0.4 [required by tls-lwt]
- install tls-lwt 2.0.4 [required by current_slack]
- install topkg 1.1.1 [required by logs, asetmap]
- install uri 4.4.0 [required by current_slack]
- install uri-sexp 4.4.0 [required by cohttp]
- install uutf 1.0.4 [required by ezjsonm]
- install x509 1.0.6 [required by ca-certs]
- install yojson 3.0.0 [required by current_slack]
- install zarith 1.14 [required by mirage-crypto-pk]
The following system packages will first need to be installed:
libev-dev libgmp-dev libsqlite3-dev pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get 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 "apt-get" "install" "-qq" "-yy" "libev-dev" "libgmp-dev" "libsqlite3-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libev4t64:riscv64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 16279 files and directories currently installed.)
- Preparing to unpack .../0-libev4t64_1%3a4.33-2.1build1_riscv64.deb ...
- Unpacking libev4t64:riscv64 (1:4.33-2.1build1) ...
- Selecting previously unselected package libgmpxx4ldbl:riscv64.
- Preparing to unpack .../1-libgmpxx4ldbl_2%3a6.3.0+dfsg-2ubuntu6.1_riscv64.deb ...
- Unpacking libgmpxx4ldbl:riscv64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- Selecting previously unselected package libgmp-dev:riscv64.
- Preparing to unpack .../2-libgmp-dev_2%3a6.3.0+dfsg-2ubuntu6.1_riscv64.deb ...
- Unpacking libgmp-dev:riscv64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- Selecting previously unselected package libpkgconf3:riscv64.
- Preparing to unpack .../3-libpkgconf3_1.8.1-2build1_riscv64.deb ...
- Unpacking libpkgconf3:riscv64 (1.8.1-2build1) ...
- Selecting previously unselected package libsqlite3-dev:riscv64.
- Preparing to unpack .../4-libsqlite3-dev_3.45.1-1ubuntu2.5_riscv64.deb ...
- Unpacking libsqlite3-dev:riscv64 (3.45.1-1ubuntu2.5) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../5-pkgconf-bin_1.8.1-2build1_riscv64.deb ...
- Unpacking pkgconf-bin (1.8.1-2build1) ...
- Selecting previously unselected package pkgconf:riscv64.
- Preparing to unpack .../6-pkgconf_1.8.1-2build1_riscv64.deb ...
- Unpacking pkgconf:riscv64 (1.8.1-2build1) ...
- Selecting previously unselected package pkg-config:riscv64.
- Preparing to unpack .../7-pkg-config_1.8.1-2build1_riscv64.deb ...
- Unpacking pkg-config:riscv64 (1.8.1-2build1) ...
- Selecting previously unselected package libev-dev:riscv64.
- Preparing to unpack .../8-libev-dev_1%3a4.33-2.1build1_riscv64.deb ...
- Unpacking libev-dev:riscv64 (1:4.33-2.1build1) ...
- Setting up libev4t64:riscv64 (1:4.33-2.1build1) ...
- Setting up libpkgconf3:riscv64 (1.8.1-2build1) ...
- Setting up libgmpxx4ldbl:riscv64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- Setting up libsqlite3-dev:riscv64 (3.45.1-1ubuntu2.5) ...
- Setting up pkgconf-bin (1.8.1-2build1) ...
- Setting up libev-dev:riscv64 (1:4.33-2.1build1) ...
- Setting up libgmp-dev:riscv64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- Setting up pkgconf:riscv64 (1.8.1-2build1) ...
- Setting up pkg-config:riscv64 (1.8.1-2build1) ...
- Processing triggers for libc-bin (2.39-0ubuntu8.7) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved asetmap.0.8.1 (cached)
-> retrieved asn1-combinators.0.3.2 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved base.v0.17.3 (cached)
-> retrieved base64.3.5.2 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved ca-certs.1.0.1 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved cohttp.6.2.1, cohttp-lwt.6.2.1, cohttp-lwt-unix.6.2.1, http.6.2.1 (cached)
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0 (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)
-> installed conf-gmp.5
-> retrieved csexp.1.5.2 (cached)
-> installed conf-pkg-config.4
-> installed conf-gmp-powm-sec.4
-> retrieved cstruct.6.2.0 (cached)
-> installed conf-sqlite3.1
-> retrieved current.0.7.4, current_slack.0.7.4 (cached)
-> retrieved current_incr.0.6.1 (cached)
-> installed conf-libev.4-13
-> retrieved digestif.1.3.0 (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 eqaf.0.10 (cached)
-> retrieved ezjsonm.1.3.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved gmap.0.3.0 (cached)
-> retrieved hex.1.5.0 (cached)
-> retrieved ipaddr.5.6.2, ipaddr-sexp.5.6.2, macaddr.5.6.2 (cached)
-> installed cmdliner.2.1.0
-> retrieved jsonm.1.0.2 (cached)
-> retrieved kdf.1.0.0 (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 mirage-crypto.2.1.0, mirage-crypto-ec.2.1.0, mirage-crypto-pk.2.1.0, mirage-crypto-rng.2.1.0 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved ohex.0.2.0 (cached)
-> retrieved parsexp.v0.17.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.1.1 (cached)
-> retrieved ppx_sexp_conv.v0.17.1 (cached)
-> retrieved ppxlib.0.38.0 (cached)
-> retrieved ppxlib_jane.v0.17.4 (cached)
-> retrieved prometheus.1.3 (cached)
-> retrieved ptime.1.2.0 (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 stringext.1.6.0 (cached)
-> retrieved tls.2.0.4, tls-lwt.2.0.4 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved x509.1.0.6 (cached)
-> retrieved yojson.3.0.0 (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 astring.0.8.5
-> installed fmt.0.11.0
-> installed fpath.0.7.3
-> installed rresult.0.7.0
-> installed ptime.1.2.0
-> installed uutf.1.0.4
-> installed jsonm.1.0.2
-> installed dune.3.22.0
-> installed base64.3.5.2
-> installed csexp.1.5.2
-> installed asn1-combinators.0.3.2
-> installed cstruct.6.2.0
-> installed current_incr.0.6.1
-> installed cppo.1.8.0
-> installed domain-name.0.5.0
-> installed duration.0.2.1
-> installed gmap.0.3.0
-> installed eqaf.0.10
-> installed hex.1.5.0
-> installed http.6.2.1
-> installed lwt-dllist.1.1.0
-> installed dune-configurator.3.22.0
-> installed macaddr.5.6.2
-> installed bigstringaf.0.10.0
-> installed magic-mime.1.3.1
-> installed ipaddr.5.6.2
-> installed digestif.1.3.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed mirage-crypto.2.1.0
-> installed ocplib-endian.1.2
-> installed ohex.0.2.0
-> installed kdf.1.0.0
-> installed angstrom.0.16.1
-> installed ppx_derivers.1.2.1
-> installed result.1.5
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed re.1.14.0
-> installed ezjsonm.1.3.0
-> installed parsexp.v0.17.0
-> installed lwt.6.1.1
-> installed sexplib.v0.17.0
-> installed logs.0.10.0
-> installed dune-compiledb.0.6.0
-> installed bos.0.2.1
-> installed base.v0.17.3
-> installed prometheus.1.3
-> installed mirage-crypto-rng.2.1.0
-> installed stringext.1.6.0
-> installed sqlite3.5.4.0
-> installed mirage-crypto-pk.2.1.0
-> installed uri.4.4.0
-> installed yojson.3.0.0
-> installed mirage-crypto-ec.2.1.0
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed tls.2.0.4
-> installed tls-lwt.2.0.4
-> installed ppxlib.0.38.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_deriving.6.1.1
-> installed ipaddr-sexp.5.6.2
-> installed uri-sexp.4.4.0
-> installed current.0.7.4
-> 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 current_slack.0.7.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 18:03.12 ---> using "41184b9d42a145ad6139c663c7b33c7a38e50fa516534f32c91f36eca2566cd7" from cache
/home/opam: (run (network host)
(shell "(opam reinstall --with-test current_slack.0.7.4) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile current_slack 0.7.4 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved current_slack.0.7.4 (https://github.com/ocurrent/ocurrent/releases/download/v0.7.4/ocurrent-0.7.4.tbz)
-> removed current_slack.0.7.4
-> installed current_slack.0.7.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 18:03.39 ---> saved as "2274b1dc6106281aa1590c31d6800ebb112afd0a0eb79e9a5646250f943c55fa"
/home/opam: (run (shell "opam reinstall --with-test --verbose current_slack.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 \"\\\"ubuntu-24.04\\\"\"; 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_slack.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_slack 0.7.4 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [current_slack.0.7.4: extract]
-> retrieved current_slack.0.7.4 (cached)
Processing 2/4: [current_slack: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "current_slack" "-j" "3" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/current_slack.0.7.4)
-> compiled current_slack.0.7.4
-> removed current_slack.0.7.4
-> installed current_slack.0.7.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 18:04.03 ---> saved as "a48c593832ffddae87e635cb51827d82b9f428ee033577741e8c7fc10edfeb0a"
Job succeeded
2026-03-26 18:04.35: Job succeeded