Build:
- 0
2026-03-26 15:23.49: New job: test current_slack.0.7.4, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29606/head (4e07f997e5a403e3e284236003dd2dff6b1992f9)
on debian-13-ocaml-4.14-fp/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:debian-13-ocaml-4.14-fp@sha256:b560b0300327cc92d001c37db9dc2b78faef7649073dce21fa5db636b0fe5210
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 "\"debian-13\""; 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 "\"debian-13\""; 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 15:23.49: Using cache hint "ocaml/opam:debian-13-ocaml-4.14-fp@sha256:b560b0300327cc92d001c37db9dc2b78faef7649073dce21fa5db636b0fe5210-current_slack.0.7.4-4e07f997e5a403e3e284236003dd2dff6b1992f9"
2026-03-26 15:23.49: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14-fp@sha256:b560b0300327cc92d001c37db9dc2b78faef7649073dce21fa5db636b0fe5210)
(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 \"\\\"debian-13\\\"\"; 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 \"\\\"debian-13\\\"\"; 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 15:23.49: Waiting for resource in pool OCluster
2026-03-26 15:40.56: Waiting for worker…
2026-03-26 15:41.58: 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:debian-13-ocaml-4.14-fp@sha256:b560b0300327cc92d001c37db9dc2b78faef7649073dce21fa5db636b0fe5210)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14-fp@sha256:b560b0300327cc92d001c37db9dc2b78faef7649073dce21fa5db636b0fe5210' locally
docker.io/ocaml/opam@sha256:b560b0300327cc92d001c37db9dc2b78faef7649073dce21fa5db636b0fe5210: Pulling from ocaml/opam
8f6ad858d0a4: Already exists
d9bd7d0c816a: Already exists
6b2843ebf827: Already exists
6d75cf61fe7e: Already exists
844ee914844a: Already exists
b50d278a39e8: Already exists
b3d4d89274ab: Already exists
5e3d42e954bc: Already exists
3f03c70e01f9: Already exists
ce7ed822fa6b: Already exists
d6e81f6bf025: Already exists
f65eba9e9530: Already exists
a5ec2634ccf5: Already exists
b35343d7f3ee: Already exists
5472000bc50c: Already exists
e53b6139fe8d: Already exists
058dd5fe5543: Already exists
058dd5fe5543: Already exists
485dada8cbcf: Already exists
5824ee084099: Already exists
7863a1070b6d: Already exists
14c192c5e79f: Already exists
4f4fb700ef54: Already exists
ef54bef3e7a9: Already exists
d685a0736e80: Already exists
396fa838f554: Already exists
a4e259599ac2: Already exists
757786f7a6fd: Already exists
a7de311f5e44: Already exists
6b2af4f375b9: Already exists
e125ae3c5851: Already exists
b28e5e4ea40d: Already exists
d7048d111678: Already exists
4498811310af: Already exists
c7d22ef2cf9d: Already exists
41e14aca0746: Already exists
f3813fb4c8b4: Already exists
400f25794c10: Already exists
0d3bc343d311: Already exists
08ffa89bd5c5: Already exists
ba1546f96e8e: Already exists
10830fb92d9f: Pulling fs layer
9eac6148153d: Pulling fs layer
10830fb92d9f: Waiting
72ca12dfa9f8: Pulling fs layer
9eac6148153d: Waiting
499fd611b6d7: Pulling fs layer
72ca12dfa9f8: Waiting
499fd611b6d7: Waiting
9eac6148153d: Verifying Checksum
9eac6148153d: Download complete
72ca12dfa9f8: Verifying Checksum
72ca12dfa9f8: Download complete
499fd611b6d7: Download complete
10830fb92d9f: Verifying Checksum
10830fb92d9f: Download complete
10830fb92d9f: Pull complete
9eac6148153d: Pull complete
72ca12dfa9f8: Pull complete
499fd611b6d7: Pull complete
Digest: sha256:b560b0300327cc92d001c37db9dc2b78faef7649073dce21fa5db636b0fe5210
Status: Downloaded newer image for ocaml/opam@sha256:b560b0300327cc92d001c37db9dc2b78faef7649073dce21fa5db636b0fe5210
2026-03-26 15:42.02 ---> using "57b503333b2e9d4238bcf5a9136daa2c4d78d096dc27ad32db03ebdbf11c478d" 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:42.02 ---> using "34cc788b6652a08e66616979a941a2a3dd6093b0b8d3ef5a883bf99140b5e113" 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
[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:42.02 ---> using "60db9830bdc5a4777e605b2940f46b43ab30d406d5e33528e6944845d755d757" 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=debian os-version=13
# 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-options-only-fp"]
# compiler-packages ocaml-option-fp.1, ocaml-options-only-fp.1, ocaml-variants.4.14.2+options
# 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+options+fp
2026-03-26 15:42.02 ---> using "94fc4b16f8aa3f4ddccb841239a675eeaac36bf5e47a06170f7738146422e14b" 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:42.02 ---> using "58ea70bc3a31cc6417bb266fd53a2e84fb9353cbf46d240bba0f8ad80f5023ba" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-26 15:42.09 ---> saved as "b3e56f227ec4934469e5ecea698be6f6d827801a6bbf9e02e52b0a0e63c4a001"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-26 15:42.28 ---> saved as "3b3207fe3dd3707872ec1b97af158d257ee3aa0f92326e312dbf428be138f273"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
- Fetched 205 kB in 0s (1721 kB/s)
- Reading package lists...
2026-03-26 15:42.29 ---> saved as "9f98b8f0460a66317a4ed84ff95200cc53636cad47e9b823f454f585b842feb5"
/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 15:42.30 ---> saved as "b96a8d094227d6e5f368ac2303fbcc22d61c0af8f806c22653129504702ef9db"
/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 \"\\\"debian-13\\\"\"; 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 85 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.16.4 [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.12.4 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- 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.16.0 [required by sexplib]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.0.3 [required by current]
- install ppx_sexp_conv v0.16.0 [required by cohttp-lwt-unix]
- install ppxlib 0.35.0 [required by ppx_deriving]
- 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.16.0 [required by dune-compiledb]
- install sexplib0 v0.16.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"
- Selecting previously unselected package libev4t64:amd64.
- (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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../0-libev4t64_1%3a4.33-2.1+b1_amd64.deb ...
- Unpacking libev4t64:amd64 (1:4.33-2.1+b1) ...
- Selecting previously unselected package libev-dev:amd64.
- Preparing to unpack .../1-libev-dev_1%3a4.33-2.1+b1_amd64.deb ...
- Unpacking libev-dev:amd64 (1:4.33-2.1+b1) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../2-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../3-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../4-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package libsqlite3-dev:amd64.
- Preparing to unpack .../5-libsqlite3-dev_3.46.1-7+deb13u1_amd64.deb ...
- Unpacking libsqlite3-dev:amd64 (3.46.1-7+deb13u1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../6-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../7-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../8-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libev4t64:amd64 (1:4.33-2.1+b1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libsqlite3-dev:amd64 (3.46.1-7+deb13u1) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libev-dev:amd64 (1:4.33-2.1+b1) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...
<><> 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.16.4 (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)
-> retrieved csexp.1.5.2 (cached)
-> retrieved cstruct.6.2.0 (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved current.0.7.4, current_slack.0.7.4 (cached)
-> installed conf-gmp-powm-sec.4
-> installed conf-sqlite3.1
-> 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)
-> retrieved jsonm.1.0.2 (cached)
-> retrieved kdf.1.0.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt.6.1.1 (cached)
-> installed cmdliner.2.1.0
-> 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.12.4 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved ohex.0.2.0 (cached)
-> retrieved parsexp.v0.16.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.0.3 (cached)
-> retrieved ppx_sexp_conv.v0.16.0 (cached)
-> retrieved ppxlib.0.35.0 (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.16.0 (cached)
-> retrieved sexplib0.v0.16.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 rresult.0.7.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed dune.3.22.0
-> installed base64.3.5.2
-> installed csexp.1.5.2
-> installed asn1-combinators.0.3.2
-> installed cppo.1.8.0
-> installed cstruct.6.2.0
-> installed current_incr.0.6.1
-> installed domain-name.0.5.0
-> installed duration.0.2.1
-> installed eqaf.0.10
-> installed gmap.0.3.0
-> installed http.6.2.1
-> installed lwt-dllist.1.1.0
-> installed macaddr.5.6.2
-> installed magic-mime.1.3.1
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed ohex.0.2.0
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed result.1.5
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed yojson.3.0.0
-> installed ocplib-endian.1.2
-> installed hex.1.5.0
-> installed ipaddr.5.6.2
-> installed ezjsonm.1.3.0
-> installed digestif.1.3.0
-> installed dune-configurator.3.22.0
-> installed parsexp.v0.16.0
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed sexplib.v0.16.0
-> installed mirage-crypto.2.1.0
-> installed dune-compiledb.0.6.0
-> installed kdf.1.0.0
-> installed uri.4.4.0
-> installed lwt.6.1.1
-> installed prometheus.1.3
-> installed sqlite3.5.4.0
-> installed logs.0.10.0
-> installed mirage-crypto-rng.2.1.0
-> installed base.v0.16.4
-> installed mirage-crypto-pk.2.1.0
-> installed bos.0.2.1
-> installed mirage-crypto-ec.2.1.0
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed ppxlib.0.35.0
-> installed tls.2.0.4
-> installed tls-lwt.2.0.4
-> 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 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 15:43.35 ---> saved as "9fd8b8e1a88cd1e51d617a865808bd7ddb7db0f30574e31d46a83d39220a1d13"
/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 15:43.39 ---> saved as "c999d52f4d56d4e084b5a491586f835735e6679e92ab539e6a3e83cc7c953c02"
/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 \"\\\"debian-13\\\"\"; 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" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.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 15:43.43 ---> saved as "37c76f84dc757b3adb9aecbb63798496bdc57d35aa5b2dbe63c5ffa6719bd2ab"
Job succeeded
2026-03-26 15:43.50: Job succeeded