- github
- ocaml
- opam-repository
- 4c7f1e
- extras,opam-2.0-ocaml-4.14,libbinaryen.126.0.0,tests
(not at the head of any monitored branch or PR)
2026-03-28 23:54.08: New job: test libbinaryen.126.0.0, using opam 2.0
from https://github.com/ocaml/opam-repository.git#refs/pull/29612/head (4c7f1e7d32763a5e30b6cdb4bab020cae874883c)
on debian-13-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29612/head" && git reset --hard 4c7f1e7d
git fetch origin master
git merge --no-edit 603a60b422594a5504cf7434b7765fd5b39e978e
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam
RUN opam init --reinit -ni
RUN 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 depext -u || true
RUN opam pin add -k version -yn libbinaryen.126.0.0 126.0.0
RUN opam depext libbinaryen.126.0.0 && opam reinstall libbinaryen.126.0.0; \
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" != 'libbinaryen.126.0.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam depext --with-test libbinaryen.126.0.0 && opam reinstall --with-test libbinaryen.126.0.0) || true
RUN opam depext --with-test libbinaryen.126.0.0 && opam reinstall --with-test --verbose libbinaryen.126.0.0; \
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" != 'libbinaryen.126.0.0' && 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-28 23:54.08: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-libbinaryen.126.0.0-4c7f1e7d32763a5e30b6cdb4bab020cae874883c"
2026-03-28 23:54.08: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "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 depext -u || true"))
(run (shell "opam pin add -k version -yn libbinaryen.126.0.0 126.0.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam depext libbinaryen.126.0.0 && opam reinstall libbinaryen.126.0.0;\
\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\" != 'libbinaryen.126.0.0' && 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 depext --with-test libbinaryen.126.0.0 && opam reinstall --with-test libbinaryen.126.0.0) || true"))
(run (shell "opam depext --with-test libbinaryen.126.0.0 && opam reinstall --with-test --verbose libbinaryen.126.0.0;\
\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\" != 'libbinaryen.126.0.0' && 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-28 23:54.08: Waiting for resource in pool OCluster
2026-03-28 23:54.09: Waiting for worker…
2026-03-28 23:54.10: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
HEAD is now at 603a60b422 Merge pull request #29604 from Octachron/release-utop-2.17.0
Updating 603a60b422..4c7f1e7d32
Fast-forward
packages/libbinaryen/libbinaryen.126.0.0/opam | 29 +++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
create mode 100644 packages/libbinaryen/libbinaryen.126.0.0/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
2026-03-28 23:54.52 ---> saved as "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
2026-03-28 23:54.52 ---> saved as "c343c3c6295981533755a1ca2c0ec379cf8991cedf65b273884f45bb69211880"
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
[NOTE] Will configure 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.
[WARNING] Recommended dependencies -- most packages rely on these:
- m4
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
default (at git+file:///home/opam/opam-repository):
[INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)
2026-03-28 23:55.56 ---> saved as "ec37f4969fa389f1d93f40c8a369ba074d0b0e28a83cb92c21189ed51e5fc57b"
/home/opam: (run (shell "opam config report"))
# opam config report
# opam-version 2.0.10 (adc1e1829a2bef5b240746df80341b508290fe3b)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-mccs+glpk
# install-criteria -removed,-count[version-lag,request],-count[version-lag,changed],-changed
# upgrade-criteria -removed,-count[version-lag,solution],-new
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
2026-03-28 23:55.57 ---> saved as "1a5ecbfbfc9582e170b5ac395c88085a6267e6a7a0cc61c500ff92d9b7bd5356"
/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-28 23:56.07 ---> saved as "4b2335df7d21d8b42e5d811648a3c2c1a5799baf41f9d4d77f2f8561cd56c177"
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-28 23:56.18 ---> saved as "6e1a3269d697e269c322a07918e2912eece703607bb3c41af4a63078466c3fde"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
default (at file:///home/opam/opam-repository):
[INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)
2026-03-28 23:56.29 ---> saved as "bbd7edfab86b12abb7be34724038c2e63c0aceff7cfefcae2a5656d21443f90f"
/home/opam: (run (network host)
(shell "opam depext -u || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
The following command needs to be run through "sudo":
apt-get update
Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
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 trixie/main amd64 Packages [9671 kB]
Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
Fetched 10.0 MB in 3s (3123 kB/s)
Reading package lists...
# OS package update successful
2026-03-28 23:56.34 ---> saved as "c26e961cb74fa28ce0d48ed49672ea80b68e7b9164b44c2362082126029f2467"
/home/opam: (run (shell "opam pin add -k version -yn libbinaryen.126.0.0 126.0.0"))
libbinaryen is now pinned to version 126.0.0
2026-03-28 23:56.35 ---> saved as "6fb5f84030b0e3c3995dbb1c84014b63da62473c7a4df08e83c92142e14e460e"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam depext libbinaryen.126.0.0 && opam reinstall libbinaryen.126.0.0;\
\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\" != 'libbinaryen.126.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# The following system packages are needed:
cmake
The following command needs to be run through "sudo":
apt-get install -qq -yy cmake
Selecting previously unselected package cmake-data.
(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-cmake-data_3.31.6-2_all.deb ...
Unpacking cmake-data (3.31.6-2) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../1-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
Selecting previously unselected package libarchive13t64:amd64.
Preparing to unpack .../2-libarchive13t64_3.7.4-4_amd64.deb ...
Unpacking libarchive13t64:amd64 (3.7.4-4) ...
Selecting previously unselected package libjsoncpp26:amd64.
Preparing to unpack .../3-libjsoncpp26_1.9.6-3_amd64.deb ...
Unpacking libjsoncpp26:amd64 (1.9.6-3) ...
Selecting previously unselected package librhash1:amd64.
Preparing to unpack .../4-librhash1_1.4.5-1_amd64.deb ...
Unpacking librhash1:amd64 (1.4.5-1) ...
Selecting previously unselected package libuv1t64:amd64.
Preparing to unpack .../5-libuv1t64_1.50.0-2_amd64.deb ...
Unpacking libuv1t64:amd64 (1.50.0-2) ...
Selecting previously unselected package cmake.
Preparing to unpack .../6-cmake_3.31.6-2_amd64.deb ...
Unpacking cmake (3.31.6-2) ...
Setting up libuv1t64:amd64 (1.50.0-2) ...
Setting up libjsoncpp26:amd64 (1.9.6-3) ...
Setting up cmake-data (3.31.6-2) ...
Setting up librhash1:amd64 (1.4.5-1) ...
Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
Setting up libarchive13t64:amd64 (3.7.4-4) ...
Setting up cmake (3.31.6-2) ...
Processing triggers for libc-bin (2.41-12+deb13u1) ...
# OS packages installation successful
libbinaryen.126.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
- install dune 3.22.0 [required by libbinaryen]
- install conf-cmake 1 [required by libbinaryen]
- install csexp 1.5.2 [required by dune-configurator]
- install dune-configurator 3.22.0 [required by libbinaryen]
- install libbinaryen 126.0.0*
===== 5 to install =====
<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[csexp.1.5.2] found in cache
[dune.3.22.0] found in cache
[dune-configurator.3.22.0] found in cache
[libbinaryen.126.0.0] downloaded from https://github.com/grain-lang/libbinaryen/releases/download/v126.0.0/libbinaryen-v126.0.0.tar.gz
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-cmake.1
-> installed dune.3.22.0
-> installed csexp.1.5.2
-> installed dune-configurator.3.22.0
-> installed libbinaryen.126.0.0
Done.
# Run eval $(opam env) to update the current shell environment
2026-03-29 00:15.22 ---> saved as "6365b32da2c4f711907dc661f03f894a050477dcd5af49f83836469daa33e25f"
/home/opam: (run (network host)
(shell "(opam depext --with-test libbinaryen.126.0.0 && opam reinstall --with-test libbinaryen.126.0.0) || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
[ERROR] Sorry, resolution of the request timed out.
Try to specify a simpler request, use a different solver, or increase the allowed time by setting OPAMSOLVERTIMEOUT to a bigger value (currently, it is set to 60.0 seconds).
Command failed: opam list --readonly --with-test --external '--resolve=libbinaryen.126.0.0' --color=never returned 60
2026-03-29 00:16.27 ---> saved as "3f3bc9a59532962b52c9f3e41b5146c198795c4a1c0a7e6fef95d5c5e863d839"
/home/opam: (run (shell "opam depext --with-test libbinaryen.126.0.0 && opam reinstall --with-test --verbose libbinaryen.126.0.0;\
\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\" != 'libbinaryen.126.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
[ERROR] Sorry, resolution of the request timed out.
Try to specify a simpler request, use a different solver, or increase the allowed time by setting OPAMSOLVERTIMEOUT to a bigger value (currently, it is set to 60.0 seconds).
Command failed: opam list --readonly --with-test --external '--resolve=libbinaryen.126.0.0' --color=never returned 60
"/usr/bin/env" "bash" "-c" "opam depext --with-test libbinaryen.126.0.0 && opam reinstall --with-test --verbose libbinaryen.126.0.0;
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" != 'libbinaryen.126.0.0' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 60
2026-03-29 00:17.37: Job failed: Failed: Build failed
2026-03-29 00:17.37: Log analysis:
2026-03-29 00:17.37: >>>
[ERROR] Sorry, resolution of the request timed out.
(score = 20)
2026-03-29 00:17.37: >>>
[ERROR] Sorry, resolution of the request timed out.
(score = 20)
2026-03-29 00:17.37: Sorry, resolution of the request timed out.