(for PR #29159)
2026-01-21 12:32.25: New job: test ortools.9.14.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29159/head (54e99e25df564b1568f413be7f61592dcad00735)
on debian-unstable-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/29159/head" && git reset --hard 54e99e25
git fetch origin master
git merge --no-edit 10a02a697b08f6d78a6c4c2cb9a76136afc7776d
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-unstable-ocaml-4.14@sha256:877f401ba4bf492d9b9b852542d7ba21baebf850b4d7bfed2a458934758d9234
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 ortools.9.14.0 9.14.0
RUN opam reinstall ortools.9.14.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-unstable\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ortools.9.14.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 ortools.9.14.0) || true
RUN opam reinstall --with-test --verbose ortools.9.14.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-unstable\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ortools.9.14.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-21 12:32.25: Using cache hint "ocaml/opam:debian-unstable-ocaml-4.14@sha256:877f401ba4bf492d9b9b852542d7ba21baebf850b4d7bfed2a458934758d9234-ortools.9.14.0-54e99e25df564b1568f413be7f61592dcad00735"
2026-01-21 12:32.25: Using OBuilder spec:
((from ocaml/opam:debian-unstable-ocaml-4.14@sha256:877f401ba4bf492d9b9b852542d7ba21baebf850b4d7bfed2a458934758d9234)
(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 ortools.9.14.0 9.14.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ortools.9.14.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-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ortools.9.14.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 ortools.9.14.0) || true"))
(run (shell "opam reinstall --with-test --verbose ortools.9.14.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-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ortools.9.14.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-21 12:32.25: Waiting for resource in pool OCluster
2026-01-21 12:32.27: Waiting for worker…
2026-01-21 12:34.16: Got resource from pool OCluster
Building on eumache
All commits already cached
HEAD is now at 10a02a697b Merge pull request #29249 from panglesd/release-slipshow-v0.8.0
Merge made by the 'ort' strategy.
packages/ortools/ortools.9.14.0/opam | 47 +++++++++++++++
.../ortools_solvers/ortools_solvers.9.14.0/opam | 68 ++++++++++++++++++++++
2 files changed, 115 insertions(+)
create mode 100644 packages/ortools/ortools.9.14.0/opam
create mode 100644 packages/ortools_solvers/ortools_solvers.9.14.0/opam
(from ocaml/opam:debian-unstable-ocaml-4.14@sha256:877f401ba4bf492d9b9b852542d7ba21baebf850b4d7bfed2a458934758d9234)
Unable to find image 'ocaml/opam:debian-unstable-ocaml-4.14@sha256:877f401ba4bf492d9b9b852542d7ba21baebf850b4d7bfed2a458934758d9234' locally
docker.io/ocaml/opam@sha256:877f401ba4bf492d9b9b852542d7ba21baebf850b4d7bfed2a458934758d9234: Pulling from ocaml/opam
8e36c1fbb8f9: Already exists
c20c78184d0b: Already exists
0ab87efdff82: Already exists
c7b76e160f19: Already exists
0f33b0437075: Already exists
44cfe50ed87a: Already exists
3d8bc88e8e4c: Already exists
031ad32a4764: Already exists
295120677902: Already exists
cabfd3ab2227: Already exists
3ec86e62252b: Already exists
f2d973a9ea0c: Already exists
e142f6d653d9: Already exists
bfa8af2cae08: Already exists
2fb4252d438b: Already exists
3dc003ec4a15: Already exists
a1c5fc4b0323: Already exists
a1c5fc4b0323: Already exists
27c2974c0836: Already exists
0adec8edeba9: Already exists
1ee2afe62a1f: Already exists
320d8966c06c: Already exists
4f4fb700ef54: Already exists
6f46e7a21dfb: Already exists
75f876a0c9c9: Already exists
7adc49118e74: Already exists
6fa679934aac: Already exists
3c2cea696b77: Already exists
946ea8df89a5: Already exists
ea4ceee206ec: Already exists
af006056acfa: Already exists
f2f172888897: Already exists
b9eb7fecff88: Already exists
4f6f96a895ac: Already exists
37ea2e18a637: Already exists
1973f0a82dbc: Already exists
89bfe5027abd: Already exists
3618e70065f5: Already exists
f559d3f65047: Already exists
9de533cb491e: Already exists
f28ff1d1a83b: Already exists
8b071c4740c8: Already exists
ac68bd7d48be: Already exists
c7635436197f: Already exists
5c91d9bb3cc5: Already exists
860c034923af: Already exists
Digest: sha256:877f401ba4bf492d9b9b852542d7ba21baebf850b4d7bfed2a458934758d9234
Status: Downloaded newer image for ocaml/opam@sha256:877f401ba4bf492d9b9b852542d7ba21baebf850b4d7bfed2a458934758d9234
2026-01-21 12:34.59 ---> saved as "b462075ce39918979f5d46f895062d08f07edac802eb7daefb45e42c925c98e1"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-21 12:35.00 ---> saved as "581c964e68c07fbeb1f65d54c65a2fefdf27a535243971df4ba8254b219fcf7b"
/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 255 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=255 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
[ocaml-patches-overlay] synchronised from git+https://github.com/ocurrent/opam-repository#patches
2026-01-21 12:36.10 ---> saved as "77050ad4c9fedcd0e4b840e14b66917d7fd59a01e5f2df0c5664cff5ff69a076"
/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=unknown
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 2 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# 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
2026-01-21 12:36.13 ---> saved as "95b194353f2b76e23e866c97fa41c13f8a7e60efd815b1ffe956cfbdb2b002ed"
/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-21 12:36.21 ---> saved as "655981729f8b0b2c5918f390c11cf134c3350c092adcd061f27cdcc6a70bfe21"
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-21 12:36.27 ---> saved as "cd8af870b77faab5af4cfd4a359d223a3b8ff0c8a56115aa8365742dc4199cf8"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-21 12:36.47 ---> saved as "4de78d6dab44e17f88be0d7eca60b9e40b6a7b9f02d8975e9fa9a90602f6b178"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian unstable InRelease [187 kB]
- Get:2 http://deb.debian.org/debian unstable/main amd64 Packages.diff/Index [63.6 kB]
- Get:3 http://deb.debian.org/debian unstable/main amd64 Packages T-2026-01-21-0800.23-F-2026-01-16-2009.15.pdiff [881 kB]
- Get:3 http://deb.debian.org/debian unstable/main amd64 Packages T-2026-01-21-0800.23-F-2026-01-16-2009.15.pdiff [881 kB]
- Fetched 1131 kB in 3s (397 kB/s)
- Reading package lists...
-
2026-01-21 12:36.52 ---> saved as "2b687776c0b130120924cf83fe070ce7535afd259854afc8822cfec42260fb54"
/home/opam: (run (shell "opam pin add -k version -yn ortools.9.14.0 9.14.0"))
ortools is now pinned to version 9.14.0
2026-01-21 12:36.57 ---> saved as "cba5f8649f1a4484cd936c3cdf58cfc29cef9f6d5615762deefcb2be414f882f"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ortools.9.14.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-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ortools.9.14.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ortools.9.14.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== recompile 2 packages
- recompile ocaml 4.14.2 [upstream or system changes]
- recompile opam-depext 1.2.3 [uses ocaml]
=== install 4 packages
- install dune 3.21.0 [required by ortools]
- install ortools 9.14.0 (pinned)
- install pbrt 4.0 [required by ortools]
- install stdlib-shims 0.3.0 [required by pbrt]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.0 (cached)
-> retrieved opam-depext.1.2.3 (cached)
-> retrieved ortools.9.14.0 (cached)
-> removed opam-depext.1.2.3
-> removed ocaml.4.14.2
-> installed ocaml.4.14.2
-> retrieved pbrt.4.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed opam-depext.1.2.3
-> installed dune.3.21.0
-> installed stdlib-shims.0.3.0
-> installed pbrt.4.0
-> installed ortools.9.14.0
Done.
<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-01-21 12:37.36 ---> saved as "cfff6e696fa358a31c735100225bb6a1a2bda3a54677368743846e63fd3b9044"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test ortools.9.14.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile ortools 9.14.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed ortools.9.14.0
-> installed ortools.9.14.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-21 12:37.46 ---> saved as "ee6ddaabc946c678d9490e8dfc0f29c2eb412d8081c41f43d91528bc939002fe"
/home/opam: (run (shell "opam reinstall --with-test --verbose ortools.9.14.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-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ortools.9.14.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 ortools 9.14.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [ortools: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ortools" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ortools.9.14.0)
-> compiled ortools.9.14.0
-> removed ortools.9.14.0
-> installed ortools.9.14.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-21 12:37.54 ---> saved as "15205748a4eec419fa4eacf6640c5a01405ba95baeafdb6d6a97808c1e0ce6a1"
Job succeeded
2026-01-21 12:37.59: Job succeeded