- github
- ocaml
- opam-repository
- 40f2d8
- compilers,5.4,menhirSdk.20260112,revdeps,lp-glpk.0.5.0
(not at the head of any monitored branch or PR)
2026-01-18 13:53.20: New job: test lp-glpk.0.5.0 with menhirSdk.20260112, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29211/head (40f2d815046034974151fd6cb87d492d7533b91e)
on debian-13-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/29211/head" && git reset --hard 40f2d815
git fetch origin master
git merge --no-edit 5a5103c1c342a572f3174f77c2bf2a3883cd4a69
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:fc4475154a81e45c7a4fe10ae1ce9017b16705b50ae99ec37ca5504484b8ff17
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 menhirSdk.20260112 20260112
RUN opam reinstall menhirSdk.20260112; \
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" != 'menhirSdk.20260112' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall lp-glpk.0.5.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" != 'lp-glpk.0.5.0' && 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 lp-glpk.0.5.0) || true
RUN opam reinstall --with-test --verbose lp-glpk.0.5.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" != 'lp-glpk.0.5.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-01-18 13:53.20: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:fc4475154a81e45c7a4fe10ae1ce9017b16705b50ae99ec37ca5504484b8ff17-menhirSdk.20260112-lp-glpk.0.5.0-40f2d815046034974151fd6cb87d492d7533b91e"
2026-01-18 13:53.20: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:fc4475154a81e45c7a4fe10ae1ce9017b16705b50ae99ec37ca5504484b8ff17)
(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 menhirSdk.20260112 20260112"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall menhirSdk.20260112;\
\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\" != 'menhirSdk.20260112' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lp-glpk.0.5.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\" != 'lp-glpk.0.5.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 reinstall --with-test lp-glpk.0.5.0) || true"))
(run (shell "opam reinstall --with-test --verbose lp-glpk.0.5.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\" != 'lp-glpk.0.5.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-01-18 13:53.20: Waiting for resource in pool OCluster
2026-01-18 20:38.57: Waiting for worker…
2026-01-18 20:42.15: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 5a5103c1c3 Merge pull request #29240 from sanette/opam-publish-ufind.0.2.0
Updating 5a5103c1c3..40f2d81504
Fast-forward
packages/menhir/menhir.20260112/opam | 32 ++++++++++++++++++++++++++++++
packages/menhirCST/menhirCST.20260112/opam | 30 ++++++++++++++++++++++++++++
packages/menhirGLR/menhirGLR.20260112/opam | 30 ++++++++++++++++++++++++++++
packages/menhirLib/menhirLib.20260112/opam | 31 +++++++++++++++++++++++++++++
packages/menhirSdk/menhirSdk.20260112/opam | 31 +++++++++++++++++++++++++++++
5 files changed, 154 insertions(+)
create mode 100644 packages/menhir/menhir.20260112/opam
create mode 100644 packages/menhirCST/menhirCST.20260112/opam
create mode 100644 packages/menhirGLR/menhirGLR.20260112/opam
create mode 100644 packages/menhirLib/menhirLib.20260112/opam
create mode 100644 packages/menhirSdk/menhirSdk.20260112/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:fc4475154a81e45c7a4fe10ae1ce9017b16705b50ae99ec37ca5504484b8ff17)
2026-01-18 20:42.19 ---> using "03f0951594c938350775771f8c8fede6d107f2d2eee244220b7b8b4b1567de6e" 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-01-18 20:42.19 ---> using "c933f036b19f2f0c0887f671ec993a9dc79755040cbb635c24c9b9c241c841cd" 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-01-18 20:42.19 ---> using "7ecc7f75a5bf9dcfd6502f8a59ae1f7ab294c7cb737f8dd9abe743475bc57ced" 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 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-01-18 20:42.19 ---> using "f03eee248d01b26761fba1ca57252b7a2d5a4073d6250967ee99f663b30113e2" 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-01-18 20:42.19 ---> using "bf0379b82096b6ba5dc91e9f0222794ba43ccc18e72cfb20cf13ead08a8436d8" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-18 20:42.20 ---> using "0ed1d9c145a2b48fac22cb53b8008eeef11c4a96f96a19fff9f3d1e885a5b444" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-18 20:42.20 ---> using "eb0a526a32045957167c53e916e11c5286822a1d0aba89b0768d0431c74f44ee" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/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 [9670 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [96.1 kB]
- Fetched 9998 kB in 1s (10.6 MB/s)
- Reading package lists...
-
2026-01-18 20:42.20 ---> using "3f2c8957312ae9fbcbb0378ea7a46110f808b4ad392ee5b1663055f9961af660" from cache
/home/opam: (run (shell "opam pin add -k version -yn menhirSdk.20260112 20260112"))
menhirSdk is now pinned to version 20260112
2026-01-18 20:42.20 ---> using "b52764e78aec311521950c397e0c2d5784385e62b4236e883f4ad510db16e2d1" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall menhirSdk.20260112;\
\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\" != 'menhirSdk.20260112' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
menhirSdk.20260112 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
- install dune 3.21.0 [required by menhirSdk]
- install menhirSdk 20260112 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.0 (cached)
-> retrieved menhirSdk.20260112 (cached)
-> installed dune.3.21.0
-> installed menhirSdk.20260112
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-18 20:42.20 ---> using "9524566d094159121063634f770afe6ef7eadebe14a84a122fba384a02cd4111" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lp-glpk.0.5.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\" != 'lp-glpk.0.5.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lp-glpk.0.5.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 12 packages
- install conf-glpk 1 [required by lp-glpk]
- install csexp 1.5.2 [required by dune-configurator]
- install ctypes 0.24.0 [required by lp-glpk]
- install dune-configurator 3.21.0 [required by ctypes]
- install integers 0.7.0 [required by ctypes]
- install lp 0.5.0 [required by lp-glpk]
- install lp-glpk 0.5.0
- install menhir 20260112 [required by lp]
- install menhirCST 20260112 [required by menhir]
- install menhirGLR 20260112 [required by menhir]
- install menhirLib 20260112 [required by menhir]
- install stdlib-shims 0.3.0 [required by integers]
The following system packages will first need to be installed:
libglpk-dev
<><> 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" "libglpk-dev"
- Selecting previously unselected package libsuitesparseconfig7: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 ... 20653 files and directories currently installed.)
- Preparing to unpack .../00-libsuitesparseconfig7_1%3a7.10.1+dfsg-1_amd64.deb ...
- Unpacking libsuitesparseconfig7:amd64 (1:7.10.1+dfsg-1) ...
- Selecting previously unselected package libamd3:amd64.
- Preparing to unpack .../01-libamd3_1%3a7.10.1+dfsg-1_amd64.deb ...
- Unpacking libamd3:amd64 (1:7.10.1+dfsg-1) ...
- Selecting previously unselected package libblas3:amd64.
- Preparing to unpack .../02-libblas3_3.12.1-6_amd64.deb ...
- Unpacking libblas3:amd64 (3.12.1-6) ...
- Selecting previously unselected package libblas-dev:amd64.
- Preparing to unpack .../03-libblas-dev_3.12.1-6_amd64.deb ...
- Unpacking libblas-dev:amd64 (3.12.1-6) ...
- Selecting previously unselected package libbtf2:amd64.
- Preparing to unpack .../04-libbtf2_1%3a7.10.1+dfsg-1_amd64.deb ...
- Unpacking libbtf2:amd64 (1:7.10.1+dfsg-1) ...
- Selecting previously unselected package libcamd3:amd64.
- Preparing to unpack .../05-libcamd3_1%3a7.10.1+dfsg-1_amd64.deb ...
- Unpacking libcamd3:amd64 (1:7.10.1+dfsg-1) ...
- Selecting previously unselected package libccolamd3:amd64.
- Preparing to unpack .../06-libccolamd3_1%3a7.10.1+dfsg-1_amd64.deb ...
- Unpacking libccolamd3:amd64 (1:7.10.1+dfsg-1) ...
- Selecting previously unselected package libcolamd3:amd64.
- Preparing to unpack .../07-libcolamd3_1%3a7.10.1+dfsg-1_amd64.deb ...
- Unpacking libcolamd3:amd64 (1:7.10.1+dfsg-1) ...
- Selecting previously unselected package libgfortran5:amd64.
- Preparing to unpack .../08-libgfortran5_14.2.0-19_amd64.deb ...
- Unpacking libgfortran5:amd64 (14.2.0-19) ...
- Selecting previously unselected package liblapack3:amd64.
- Preparing to unpack .../09-liblapack3_3.12.1-6_amd64.deb ...
- Unpacking liblapack3:amd64 (3.12.1-6) ...
- Selecting previously unselected package libcholmod5:amd64.
- Preparing to unpack .../10-libcholmod5_1%3a7.10.1+dfsg-1_amd64.deb ...
- Unpacking libcholmod5:amd64 (1:7.10.1+dfsg-1) ...
- Selecting previously unselected package libcxsparse4:amd64.
- Preparing to unpack .../11-libcxsparse4_1%3a7.10.1+dfsg-1_amd64.deb ...
- Unpacking libcxsparse4:amd64 (1:7.10.1+dfsg-1) ...
- Selecting previously unselected package libltdl7:amd64.
- Preparing to unpack .../12-libltdl7_2.5.4-4_amd64.deb ...
- Unpacking libltdl7:amd64 (2.5.4-4) ...
- Selecting previously unselected package libglpk40:amd64.
- Preparing to unpack .../13-libglpk40_5.0-1+b2_amd64.deb ...
- Unpacking libglpk40:amd64 (5.0-1+b2) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../14-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 .../15-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../16-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Selecting previously unselected package libklu2:amd64.
- Preparing to unpack .../17-libklu2_1%3a7.10.1+dfsg-1_amd64.deb ...
- Unpacking libklu2:amd64 (1:7.10.1+dfsg-1) ...
- Selecting previously unselected package libldl3:amd64.
- Preparing to unpack .../18-libldl3_1%3a7.10.1+dfsg-1_amd64.deb ...
- Unpacking libldl3:amd64 (1:7.10.1+dfsg-1) ...
- Selecting previously unselected package libsuitesparse-mongoose3:amd64.
- Preparing to unpack .../19-libsuitesparse-mongoose3_1%3a7.10.1+dfsg-1_amd64.deb ...
- Unpacking libsuitesparse-mongoose3:amd64 (1:7.10.1+dfsg-1) ...
- Selecting previously unselected package libumfpack6:amd64.
- Preparing to unpack .../20-libumfpack6_1%3a7.10.1+dfsg-1_amd64.deb ...
- Unpacking libumfpack6:amd64 (1:7.10.1+dfsg-1) ...
- Selecting previously unselected package librbio4:amd64.
- Preparing to unpack .../21-librbio4_1%3a7.10.1+dfsg-1_amd64.deb ...
- Unpacking librbio4:amd64 (1:7.10.1+dfsg-1) ...
- Selecting previously unselected package libspqr4:amd64.
- Preparing to unpack .../22-libspqr4_1%3a7.10.1+dfsg-1_amd64.deb ...
- Unpacking libspqr4:amd64 (1:7.10.1+dfsg-1) ...
- Selecting previously unselected package libspex3:amd64.
- Preparing to unpack .../23-libspex3_1%3a7.10.1+dfsg-1_amd64.deb ...
- Unpacking libspex3:amd64 (1:7.10.1+dfsg-1) ...
- Selecting previously unselected package libparu1:amd64.
- Preparing to unpack .../24-libparu1_1%3a7.10.1+dfsg-1_amd64.deb ...
- Unpacking libparu1:amd64 (1:7.10.1+dfsg-1) ...
- Selecting previously unselected package liblapack-dev:amd64.
- Preparing to unpack .../25-liblapack-dev_3.12.1-6_amd64.deb ...
- Unpacking liblapack-dev:amd64 (3.12.1-6) ...
- Selecting previously unselected package libsuitesparse-dev:amd64.
- Preparing to unpack .../26-libsuitesparse-dev_1%3a7.10.1+dfsg-1_amd64.deb ...
- Unpacking libsuitesparse-dev:amd64 (1:7.10.1+dfsg-1) ...
- Selecting previously unselected package libglpk-dev:amd64.
- Preparing to unpack .../27-libglpk-dev_5.0-1+b2_amd64.deb ...
- Unpacking libglpk-dev:amd64 (5.0-1+b2) ...
- Selecting previously unselected package libgraphblas7:amd64.
- Preparing to unpack .../28-libgraphblas7_7.4.0+dfsg-2_amd64.deb ...
- Unpacking libgraphblas7:amd64 (7.4.0+dfsg-2) ...
- Selecting previously unselected package libgraphblas-dev:amd64.
- Preparing to unpack .../29-libgraphblas-dev_7.4.0+dfsg-2_amd64.deb ...
- Unpacking libgraphblas-dev:amd64 (7.4.0+dfsg-2) ...
- Setting up libgraphblas7:amd64 (7.4.0+dfsg-2) ...
- Setting up libldl3:amd64 (1:7.10.1+dfsg-1) ...
- Setting up libbtf2:amd64 (1:7.10.1+dfsg-1) ...
- Setting up libgraphblas-dev:amd64 (7.4.0+dfsg-2) ...
- Setting up libblas3:amd64 (3.12.1-6) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libltdl7:amd64 (2.5.4-4) ...
- Setting up libgfortran5:amd64 (14.2.0-19) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libsuitesparseconfig7:amd64 (1:7.10.1+dfsg-1) ...
- Setting up libblas-dev:amd64 (3.12.1-6) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so to provide /usr/lib/x86_64-linux-gnu/libblas.so (libblas.so-x86_64-linux-gnu) in auto mode
- Setting up liblapack3:amd64 (3.12.1-6) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libamd3:amd64 (1:7.10.1+dfsg-1) ...
- Setting up libcolamd3:amd64 (1:7.10.1+dfsg-1) ...
- Setting up libspex3:amd64 (1:7.10.1+dfsg-1) ...
- Setting up libsuitesparse-mongoose3:amd64 (1:7.10.1+dfsg-1) ...
- Setting up libcxsparse4:amd64 (1:7.10.1+dfsg-1) ...
- Setting up libcamd3:amd64 (1:7.10.1+dfsg-1) ...
- Setting up libglpk40:amd64 (5.0-1+b2) ...
- Setting up librbio4:amd64 (1:7.10.1+dfsg-1) ...
- Setting up liblapack-dev:amd64 (3.12.1-6) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so to provide /usr/lib/x86_64-linux-gnu/liblapack.so (liblapack.so-x86_64-linux-gnu) in auto mode
- Setting up libccolamd3:amd64 (1:7.10.1+dfsg-1) ...
- Setting up libcholmod5:amd64 (1:7.10.1+dfsg-1) ...
- Setting up libspqr4:amd64 (1:7.10.1+dfsg-1) ...
- Setting up libklu2:amd64 (1:7.10.1+dfsg-1) ...
- Setting up libumfpack6:amd64 (1:7.10.1+dfsg-1) ...
- Setting up libparu1:amd64 (1:7.10.1+dfsg-1) ...
- Setting up libsuitesparse-dev:amd64 (1:7.10.1+dfsg-1) ...
- Setting up libglpk-dev:amd64 (5.0-1+b2) ...
- Processing triggers for libc-bin (2.41-12) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> retrieved ctypes.0.24.0 (cached)
-> installed conf-glpk.1
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.21.0 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved lp.0.5.0, lp-glpk.0.5.0 (cached)
-> retrieved menhir.20260112, menhirCST.20260112, menhirGLR.20260112, menhirLib.20260112 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed menhirCST.20260112
-> installed stdlib-shims.0.3.0
-> installed dune-configurator.3.21.0
-> installed menhirGLR.20260112
-> installed menhirLib.20260112
-> installed integers.0.7.0
-> installed ctypes.0.24.0
-> installed menhir.20260112
-> installed lp.0.5.0
-> installed lp-glpk.0.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-18 20:42.42 ---> saved as "3c464d7e4ac27f4f5c5c4775190c66eb926f459adc9a218ac88b944585769160"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test lp-glpk.0.5.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile lp-glpk 0.5.0
=== install 16 packages
- install alcotest 1.9.1 [required by lp-glpk]
- install astring 0.8.5 [required by alcotest]
- install cmdliner 2.1.0 [required by alcotest]
- install cppo 1.8.0 [required by ppx_deriving]
- install fmt 0.11.0 [required by alcotest]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocamlbuild 0.16.1 [required by fmt, astring, uutf]
- install ocamlfind 1.9.8 [required by ppx_deriving]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.1.1 [required by lp-glpk]
- install ppxlib 0.37.0 [required by ppx_deriving]
- install re 1.14.0 [required by alcotest]
- install sexplib0 v0.17.0 [required by ppxlib]
- install topkg 1.1.1 [required by fmt, astring, uutf]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved cppo.1.8.0 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved lp-glpk.0.5.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1 (https://opam.ocaml.org/cache)
-> installed cppo.1.8.0
-> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1 (https://opam.ocaml.org/cache)
-> retrieved ppx_deriving.6.1.1 (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-compiler-libs.v0.17.0
-> retrieved ppxlib.0.37.0 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed sexplib0.v0.17.0
-> installed re.1.14.0
-> installed cmdliner.2.1.0
-> installed ocamlfind.1.9.8
-> removed lp-glpk.0.5.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed ppxlib.0.37.0
-> installed ppx_deriving.6.1.1
-> installed lp-glpk.0.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-18 20:43.06 ---> saved as "630924f2f9c67add4c23eb0e823bae6e6ece56076f3b542f01ebc08ef69bf819"
/home/opam: (run (shell "opam reinstall --with-test --verbose lp-glpk.0.5.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\" != 'lp-glpk.0.5.0' && 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 lp-glpk 0.5.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [lp-glpk.0.5.0: extract]
-> retrieved lp-glpk.0.5.0 (cached)
Processing 2/4: [lp-glpk: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "lp-glpk" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/lp-glpk.0.5.0)
Processing 2/4: [lp-glpk: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "lp-glpk" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/lp-glpk.0.5.0)
- (cd _build/default/test/lp-glpk && ./test_glpk.exe --color=always)
- Testing `Glpk'.
- This run has ID `RZSCTBM9'.
-
- [OK] solve lp0 0 solve_lp0.
- [OK] solve milp0 0 solve_milp0.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/lp-glpk.0.5.0/_build/default/test/lp-glpk/_build/_tests/Glpk'.
- Test Successful in 0.001s. 2 tests run.
- (cd _build/default/test/lp-glpk && ./test_glpk_ffi.exe --color=always)
- Testing `Glp'.
- This run has ID `B906I2P5'.
-
- [OK] set_get_pname 0 set_get_pname.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/lp-glpk.0.5.0/_build/default/test/lp-glpk/_build/_tests/Glp'.
- Test Successful in 0.000s. 1 test run.
-> compiled lp-glpk.0.5.0
-> removed lp-glpk.0.5.0
-> installed lp-glpk.0.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-18 20:43.14 ---> saved as "872ed7129dfadb11a99ec5a520b6e997a4b68c9e5ef91ee6e9bbdce3f6a21373"
Job succeeded
2026-01-18 20:43.22: Job succeeded