Build:
  1. 2
  2. 1
  3. 0
2026-03-01 13:03.16: New job: test ortools_solvers.9.15.0-1, using opam 2.3
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29483/head (a21934106c0bc737a75de4610138999015b08d45)
                              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/29483/head" && git reset --hard a2193410
git fetch origin master
git merge --no-edit f7006d12f100d8607b8992657abc99c05f574781
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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_solvers.9.15.0-1 9.15.0-1
RUN opam reinstall ortools_solvers.9.15.0-1; \
    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" != 'ortools_solvers.9.15.0-1' && 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_solvers.9.15.0-1) || true
RUN opam reinstall --with-test --verbose ortools_solvers.9.15.0-1; \
    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" != 'ortools_solvers.9.15.0-1' && 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-01 13:03.16: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c-ortools_solvers.9.15.0-1-a21934106c0bc737a75de4610138999015b08d45"
2026-03-01 13:03.16: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.3 /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_solvers.9.15.0-1 9.15.0-1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ortools_solvers.9.15.0-1;\
             \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\" != 'ortools_solvers.9.15.0-1' && 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_solvers.9.15.0-1) || true"))
 (run (shell  "opam reinstall --with-test --verbose ortools_solvers.9.15.0-1;\
             \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\" != 'ortools_solvers.9.15.0-1' && 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-01 13:03.16: Waiting for resource in pool OCluster
2026-03-01 13:03.42: Waiting for worker…
2026-03-01 13:31.26: Got resource from pool OCluster
Building on eumache
All commits already cached
Updating files:  63% (11614/18346)
Updating files:  64% (11742/18346)
Updating files:  65% (11925/18346)
Updating files:  66% (12109/18346)
Updating files:  67% (12292/18346)
Updating files:  68% (12476/18346)
Updating files:  69% (12659/18346)
Updating files:  70% (12843/18346)
Updating files:  71% (13026/18346)
Updating files:  72% (13210/18346)
Updating files:  73% (13393/18346)
Updating files:  74% (13577/18346)
Updating files:  75% (13760/18346)
Updating files:  76% (13943/18346)
Updating files:  77% (14127/18346)
Updating files:  78% (14310/18346)
Updating files:  79% (14494/18346)
Updating files:  80% (14677/18346)
Updating files:  81% (14861/18346)
Updating files:  82% (15044/18346)
Updating files:  83% (15228/18346)
Updating files:  84% (15411/18346)
Updating files:  85% (15595/18346)
Updating files:  86% (15778/18346)
Updating files:  87% (15962/18346)
Updating files:  88% (16145/18346)
Updating files:  89% (16328/18346)
Updating files:  90% (16512/18346)
Updating files:  91% (16695/18346)
Updating files:  92% (16879/18346)
Updating files:  93% (17062/18346)
Updating files:  94% (17246/18346)
Updating files:  95% (17429/18346)
Updating files:  96% (17613/18346)
Updating files:  97% (17796/18346)
Updating files:  98% (17980/18346)
Updating files:  99% (18163/18346)
Updating files: 100% (18346/18346)
Updating files: 100% (18346/18346), done.
HEAD is now at f7006d12f1 Merge pull request #29312 from tmattio/release-mosaic-0.1.0
Updating f7006d12f1..a21934106c
Fast-forward
 packages/ortools/ortools.9.15.0-1/opam             | 54 ++++++++++++
 .../ortools_solvers/ortools_solvers.9.15.0-1/opam  | 97 ++++++++++++++++++++++
 2 files changed, 151 insertions(+)
 create mode 100644 packages/ortools/ortools.9.15.0-1/opam
 create mode 100644 packages/ortools_solvers/ortools_solvers.9.15.0-1/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c' locally
docker.io/ocaml/opam@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c: Pulling from ocaml/opam
ef235bf1a09a: Already exists
58b06b604a42: Already exists
b55f23c32d5a: Already exists
aa415425edb7: Already exists
c4f39ed7469c: Already exists
ca248a2fdd5e: Already exists
74109c509b2f: Already exists
18c2fa2271cb: Already exists
37d4d41661a2: Already exists
0b2f35f78814: Already exists
e65f29522a9a: Already exists
603a51b67573: Already exists
89b2faa02f16: Already exists
e5f11471afd4: Already exists
d7b0e5daa224: Already exists
7bec4d50f3b2: Already exists
d3a70ed71f1c: Already exists
90de03d9b27a: Already exists
a28f685cf2db: Already exists
5bb5e02041c7: Already exists
74f9af816199: Already exists
74c2f6cb4138: Already exists
4f4fb700ef54: Already exists
5ce9bdcb2952: Already exists
bf18c14e9b34: Already exists
bb4b67501479: Already exists
89e7ed0468f5: Already exists
640077527026: Already exists
363b481ff012: Already exists
437bd8bc3ce9: Already exists
2bcf3429833a: Already exists
3e5fe21454e9: Already exists
f3afb11ae499: Already exists
c3a5b88f5e5f: Already exists
124a1dc355b1: Already exists
0a9982d37abd: Already exists
9b8b724665ed: Already exists
f81507befe71: Already exists
7984e4546bf9: Already exists
3579b890ab6e: Already exists
e83772930ba8: Already exists
ae210f88246e: Already exists
e035ef68bd1a: Already exists
10a755270a5b: Already exists
ba9bc7232694: Already exists
d6bc4e91a30f: Already exists
a3c4c8a1f4e2: Already exists
845ad49c4ca0: Already exists
Digest: sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
Status: Downloaded newer image for ocaml/opam@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
2026-03-01 13:31.30 ---> using "3c18c9e472a4f76bc128dc0a5a1e21158ba3dbd0d6773ace6ec33f0cfe6fac9b" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2026-03-01 13:31.30 ---> using "17fb61ec04240c7b97766f08c6c6b15ae3c280b8851a200e196852d22a6fb5ff" 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 development 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-01 13:31.43 ---> saved as "b65478e1e692d6e3f37d20cf50faedc937e2a6ab3bb83dd5a56872c926f28edc"

/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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# 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                 71
# 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-01 13:31.45 ---> saved as "d2738cd2dd960936c72373ef43e5c3f8577215a3f647beba062e69b3c46a6b0a"

/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-01 13:31.58 ---> saved as "2cc59bf26f62e174379e23c440a43adb851045deca5b61583d8a3ef486785ff1"

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-01 13:32.10 ---> saved as "917e48d423ff64f2c16e94764ce9fd8448d5e25c2613525ed9c84d02fcf01700"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-01 13:32.46 ---> saved as "963d0616cdd8a4fc67911e6c573bdbefec929a7f44b95e8e837beb8eb0594c63"

/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 [113 kB]
- Fetched 203 kB in 0s (658 kB/s)
- Reading package lists...
- 
2026-03-01 13:32.49 ---> saved as "2ad5fa3db38a0aacab5a4ff5298da765a08ebcc1d240f5b0cc64e9c67bfbb708"

/home/opam: (run (shell "opam pin add -k version -yn ortools_solvers.9.15.0-1 9.15.0-1"))
ortools_solvers is now pinned to version 9.15.0-1
2026-03-01 13:32.51 ---> saved as "06fca8b2096990c02b8618576d768163467fed054fe5f39bc35387eb55b04b7d"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ortools_solvers.9.15.0-1;\
                        \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\" != 'ortools_solvers.9.15.0-1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ortools_solvers.9.15.0-1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 11 packages
  - install conf-bzip2      1                 [required by ortools_solvers]
  - install conf-cmake      1                 [required by ortools_solvers]
  - install conf-pkg-config 4                 [required by conf-bzip2, conf-zlib]
  - install conf-zlib       1                 [required by ortools_solvers]
  - install csexp           1.5.2             [required by ortools_solvers]
  - install dune            3.21.1            [required by ortools_solvers]
  - install ortools         9.15.0-1          [required by ortools_solvers]
  - install ortools_solvers 9.15.0-1 (pinned)
  - install pbrt            4.0               [required by ortools]
  - install sexplib0        v0.17.0           [required by ortools_solvers]
  - install stdlib-shims    0.3.0             [required by pbrt]

The following system packages will first need to be installed:
    cmake libbz2-dev pkg-config zlib1g-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" "cmake" "libbz2-dev" "pkg-config" "zlib1g-dev"
- Selecting previously unselected package bzip2-doc.
- (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 ... 20654 files and directories currently installed.)
- Preparing to unpack .../00-bzip2-doc_1.0.8-6_all.deb ...
- Unpacking bzip2-doc (1.0.8-6) ...
- Selecting previously unselected package cmake-data.
- Preparing to unpack .../01-cmake-data_3.31.6-2_all.deb ...
- Unpacking cmake-data (3.31.6-2) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../02-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 .../03-libarchive13t64_3.7.4-4_amd64.deb ...
- Unpacking libarchive13t64:amd64 (3.7.4-4) ...
- Selecting previously unselected package libjsoncpp26:amd64.
- Preparing to unpack .../04-libjsoncpp26_1.9.6-3_amd64.deb ...
- Unpacking libjsoncpp26:amd64 (1.9.6-3) ...
- Selecting previously unselected package librhash1:amd64.
- Preparing to unpack .../05-librhash1_1.4.5-1_amd64.deb ...
- Unpacking librhash1:amd64 (1.4.5-1) ...
- Selecting previously unselected package libuv1t64:amd64.
- Preparing to unpack .../06-libuv1t64_1.50.0-2_amd64.deb ...
- Unpacking libuv1t64:amd64 (1.50.0-2) ...
- Selecting previously unselected package cmake.
- Preparing to unpack .../07-cmake_3.31.6-2_amd64.deb ...
- Unpacking cmake (3.31.6-2) ...
- Selecting previously unselected package libbz2-dev:amd64.
- Preparing to unpack .../08-libbz2-dev_1.0.8-6_amd64.deb ...
- Unpacking libbz2-dev:amd64 (1.0.8-6) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../09-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../10-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../11-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../12-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../13-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) ...
- Setting up bzip2-doc (1.0.8-6) ...
- Setting up libuv1t64:amd64 (1.50.0-2) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libjsoncpp26:amd64 (1.9.6-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- 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 libbz2-dev:amd64 (1.0.8-6) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libarchive13t64:amd64 (3.7.4-4) ...
- Setting up cmake (3.31.6-2) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-cmake.1  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-cmake.1
-> installed conf-pkg-config.4
-> installed conf-bzip2.1
-> installed conf-zlib.1
-> retrieved dune.3.21.1  (cached)
-> retrieved ortools.9.15.0-1, ortools_solvers.9.15.0-1  (cached)
-> retrieved pbrt.4.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed dune.3.21.1
-> installed csexp.1.5.2
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed pbrt.4.0
-> installed ortools.9.15.0-1
-> installed ortools_solvers.9.15.0-1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-01 14:15.35 ---> saved as "89e0709f4368740da0e1744d76948aeb20f0e2090cd0c3f9258fd7ffde176e0d"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test ortools_solvers.9.15.0-1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile ortools_solvers 9.15.0-1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   ortools_solvers.9.15.0-1
-> installed ortools_solvers.9.15.0-1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-01 15:09.23 ---> saved as "5d01bdf7e9a949dd92dd703fe4719ad973dd7a8c4045ba31cd183119fa32028b"

/home/opam: (run (shell  "opam reinstall --with-test --verbose ortools_solvers.9.15.0-1;\
                        \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\" != 'ortools_solvers.9.15.0-1' && 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_solvers 9.15.0-1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [ortools_solvers: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ortools_solvers" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/ortools_solvers.9.15.0-1)
- (cd _build/default/ortools_solvers/libortools-build && /usr/bin/cmake -DCMAKE_INSTALL_LIBDIR=lib -DBUILD_Eigen3=ON -DBUILD_absl=ON -DBUILD_Protobuf=ON -DBUILD_re2=ON -DBUILD_SAMPLES=OFF -DBUILD_EXAMPLES=OFF -DBUILD_FLATZINC=OFF -DBUILD_TESTING=OFF -DBUILD_MATH_OPT=ON -DUSE_COINOR=OFF -DUSE_CPLEX=OFF -DUSE_GLPK=OFF -DUSE_HIGHS=OFF -DUSE_PDLP=OFF -DUSE_SCIP=OFF -DUSE_XPRESS=OFF -DUSE_GLOP=ON -DUSE_GUROBI=ON -S ../libortools -B ./build)
- -- Distribution (/etc/os-release): debian 13
- -- CMAKE_CXX_STANDARD=20
- -- The CXX compiler identification is GNU 14.2.0
- -- The C compiler identification is GNU 14.2.0
- -- Detecting CXX compiler ABI info
- -- Detecting CXX compiler ABI info - done
- -- Check for working CXX compiler: /usr/bin/c++ - skipped
- -- Detecting CXX compile features
- -- Detecting CXX compile features - done
- -- Detecting C compiler ABI info
- -- Detecting C compiler ABI info - done
- -- Check for working C compiler: /usr/bin/cc - skipped
- -- Detecting C compile features
- -- Detecting C compile features - done
- -- ortools version: 9.15.9999 release: TRUE
- -- Build type: Release
- -- Build C++ library: ON
- -- Build Python: OFF
- -- Build Java: OFF
- -- Build .Net: OFF
- -- Build Flatzinc: OFF
- -- Build MathOpt: ON
- -- Build samples: OFF
- -- Build C++ samples: OFF
- -- Build Python samples: OFF
- -- Build Java samples: OFF
- -- Build .Net samples: OFF
- -- Build examples: OFF
- -- Build C++ examples: OFF
- -- Build Python examples: OFF
- -- Build Java examples: OFF
- -- Build .Net examples: OFF
- -- Build documentation: OFF
- -- Install doc: OFF
- -- Build all dependencies: OFF
- -- Build ZLIB: OFF
- -- Build BZip2: OFF
- -- Build abseil-cpp: ON
- -- Build protobuf: ON
- -- Build eigen3: ON
- -- Build re2: ON
- -- Build googletest: OFF
- -- Build protobuf_matchers: OFF
- -- Build benchmark: OFF
- -- BOP support: ON
- -- COIN-OR support: OFF
- -- GLOP support: ON
- -- GLPK support: OFF
- -- Build GLPK: OFF
- -- Gurobi support: ON
- -- HiGHS support: OFF
- -- Build HiGHS: OFF
- -- PDLP support: OFF
- -- Build PDLP: OFF
- -- SCIP support: OFF
- -- Build Boost (Soplex requirement): OFF
- -- Build Soplex (SCIP requirement): OFF
- -- Build SCIP: OFF
- -- CPLEX support: OFF
- -- Xpress support: OFF
- -- C++: Build doc: OFF
- -- Performing Test CMAKE_HAVE_LIBC_PTHREAD
- -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
- -- Found Threads: TRUE
- -- Found ZLIB: /usr/lib/x86_64-linux-gnu/libz.so (found version "1.3.1")
- -- Found BZip2: /usr/lib/x86_64-linux-gnu/libbz2.so (found version "1.0.8")
- -- Looking for BZ2_bzCompressInit
- -- Looking for BZ2_bzCompressInit - found
- -- Fetching Abseil-cpp
- --   Populating absl
- -- Configuring done (0.1s)
- -- Generating done (0.0s)
- -- Build files have been written to: /home/opam/.opam/5.4/.opam-switch/build/ortools_solvers.9.15.0-1/_build/default/ortools_solvers/libortools-build/build/_deps/absl-subbuild
- [ 11%] Creating directories for 'absl-populate'
- [ 22%] No download step for 'absl-populate'
- [ 33%] No update_disconnected step for 'absl-populate'
- [ 44%] No patch_disconnected step for 'absl-populate'
- [ 55%] No configure step for 'absl-populate'
- [ 66%] No build step for 'absl-populate'
- [ 77%] No install step for 'absl-populate'
- [ 88%] No test step for 'absl-populate'
- [100%] Completed 'absl-populate'
- [100%] Built target absl-populate
- --   Performing Test ABSL_INTERNAL_AT_LEAST_CXX17
- --   Performing Test ABSL_INTERNAL_AT_LEAST_CXX17 - Success
- --   Performing Test ABSL_INTERNAL_AT_LEAST_CXX20
- --   Performing Test ABSL_INTERNAL_AT_LEAST_CXX20 - Success
- -- Fetching Abseil-cpp - fetched
- -- Fetching Protobuf
- --   Populating protobuf
- -- Configuring done (0.1s)
- -- Generating done (0.0s)
- -- Build files have been written to: /home/opam/.opam/5.4/.opam-switch/build/ortools_solvers.9.15.0-1/_build/default/ortools_solvers/libortools-build/build/_deps/protobuf-subbuild
- [ 11%] Creating directories for 'protobuf-populate'
- [ 22%] No download step for 'protobuf-populate'
- [ 33%] No update_disconnected step for 'protobuf-populate'
- [ 44%] No patch_disconnected step for 'protobuf-populate'
- [ 55%] No configure step for 'protobuf-populate'
- [ 66%] No build step for 'protobuf-populate'
- [ 77%] No install step for 'protobuf-populate'
- [ 88%] No test step for 'protobuf-populate'
- [100%] Completed 'protobuf-populate'
- [100%] Built target protobuf-populate
- --   protobuf version: 33.4.0
- --   Performing Test protobuf_HAVE_LD_VERSION_SCRIPT
- --   Performing Test protobuf_HAVE_LD_VERSION_SCRIPT - Success
- --   Performing Test protobuf_HAVE_BUILTIN_ATOMICS
- --   Performing Test protobuf_HAVE_BUILTIN_ATOMICS - Success
- -- Fetching Protobuf - fetched
- -- Fetching re2
- --   Populating re2
- -- Configuring done (0.1s)
- -- Generating done (0.0s)
- -- Build files have been written to: /home/opam/.opam/5.4/.opam-switch/build/ortools_solvers.9.15.0-1/_build/default/ortools_solvers/libortools-build/build/_deps/re2-subbuild
- [ 11%] Creating directories for 're2-populate'
- [ 22%] No download step for 're2-populate'
- [ 33%] No update_disconnected step for 're2-populate'
- [ 44%] No patch_disconnected step for 're2-populate'
- [ 55%] No configure step for 're2-populate'
- [ 66%] No build step for 're2-populate'
- [ 77%] No install step for 're2-populate'
- [ 88%] No test step for 're2-populate'
- [100%] Completed 're2-populate'
- [100%] Built target re2-populate
- -- Fetching re2 - fetched
- -- Fetching Eigen3
- --   Populating eigen3
- -- Configuring done (0.1s)
- -- Generating done (0.0s)
- -- Build files have been written to: /home/opam/.opam/5.4/.opam-switch/build/ortools_solvers.9.15.0-1/_build/default/ortools_solvers/libortools-build/build/_deps/eigen3-subbuild
- [ 11%] Creating directories for 'eigen3-populate'
- [ 22%] No download step for 'eigen3-populate'
- [ 33%] No update_disconnected step for 'eigen3-populate'
- [ 44%] No patch_disconnected step for 'eigen3-populate'
- [ 55%] No configure step for 'eigen3-populate'
- [ 66%] No build step for 'eigen3-populate'
- [ 77%] No install step for 'eigen3-populate'
- [ 88%] No test step for 'eigen3-populate'
- [100%] Completed 'eigen3-populate'
- [100%] Built target eigen3-populate
- --   Performing Test EIGEN_COMPILER_SUPPORT_CPP11
- --   Performing Test EIGEN_COMPILER_SUPPORT_CPP11 - Success
- --   Performing Test COMPILER_SUPPORT_std=cpp03
- --   Performing Test COMPILER_SUPPORT_std=cpp03 - Success
- --   Performing Test standard_math_library_linked_to_automatically
- --   Performing Test standard_math_library_linked_to_automatically - Success
- --   Standard libraries to link to explicitly: none
- --   Performing Test COMPILER_SUPPORT_WERROR
- --   Performing Test COMPILER_SUPPORT_WERROR - Success
- --   Performing Test COMPILER_SUPPORT_pedantic
- --   Performing Test COMPILER_SUPPORT_pedantic - Success
- --   Performing Test COMPILER_SUPPORT_Wall
- --   Performing Test COMPILER_SUPPORT_Wall - Success
- --   Performing Test COMPILER_SUPPORT_Wextra
- --   Performing Test COMPILER_SUPPORT_Wextra - Success
- --   Performing Test COMPILER_SUPPORT_Wundef
- --   Performing Test COMPILER_SUPPORT_Wundef - Success
- --   Performing Test COMPILER_SUPPORT_Wcastalign
- --   Performing Test COMPILER_SUPPORT_Wcastalign - Success
- --   Performing Test COMPILER_SUPPORT_Wcharsubscripts
- --   Performing Test COMPILER_SUPPORT_Wcharsubscripts - Success
- --   Performing Test COMPILER_SUPPORT_Wnonvirtualdtor
- --   Performing Test COMPILER_SUPPORT_Wnonvirtualdtor - Success
- --   Performing Test COMPILER_SUPPORT_Wunusedlocaltypedefs
- --   Performing Test COMPILER_SUPPORT_Wunusedlocaltypedefs - Success
- --   Performing Test COMPILER_SUPPORT_Wpointerarith
- --   Performing Test COMPILER_SUPPORT_Wpointerarith - Success
- --   Performing Test COMPILER_SUPPORT_Wwritestrings
- --   Performing Test COMPILER_SUPPORT_Wwritestrings - Success
- --   Performing Test COMPILER_SUPPORT_Wformatsecurity
- --   Performing Test COMPILER_SUPPORT_Wformatsecurity - Success
- --   Performing Test COMPILER_SUPPORT_Wshorten64to32
- --   Performing Test COMPILER_SUPPORT_Wshorten64to32 - Failed
- --   Performing Test COMPILER_SUPPORT_Wlogicalop
- --   Performing Test COMPILER_SUPPORT_Wlogicalop - Success
- --   Performing Test COMPILER_SUPPORT_Wenumconversion
- --   Performing Test COMPILER_SUPPORT_Wenumconversion - Success
- --   Performing Test COMPILER_SUPPORT_Wcpp11extensions
- --   Performing Test COMPILER_SUPPORT_Wcpp11extensions - Success
- --   Performing Test COMPILER_SUPPORT_Wdoublepromotion
- --   Performing Test COMPILER_SUPPORT_Wdoublepromotion - Success
- --   Performing Test COMPILER_SUPPORT_Wshadow
- --   Performing Test COMPILER_SUPPORT_Wshadow - Success
- --   Performing Test COMPILER_SUPPORT_Wnopsabi
- --   Performing Test COMPILER_SUPPORT_Wnopsabi - Success
- --   Performing Test COMPILER_SUPPORT_Wnovariadicmacros
- --   Performing Test COMPILER_SUPPORT_Wnovariadicmacros - Success
- --   Performing Test COMPILER_SUPPORT_Wnolonglong
- --   Performing Test COMPILER_SUPPORT_Wnolonglong - Success
- --   Performing Test COMPILER_SUPPORT_fnochecknew
- --   Performing Test COMPILER_SUPPORT_fnochecknew - Success
- --   Performing Test COMPILER_SUPPORT_fnocommon
- --   Performing Test COMPILER_SUPPORT_fnocommon - Success
- --   Performing Test COMPILER_SUPPORT_fstrictaliasing
- --   Performing Test COMPILER_SUPPORT_fstrictaliasing - Success
- --   Performing Test COMPILER_SUPPORT_wd981
- --   Performing Test COMPILER_SUPPORT_wd981 - Failed
- --   Performing Test COMPILER_SUPPORT_wd2304
- --   Performing Test COMPILER_SUPPORT_wd2304 - Failed
- --   Performing Test COMPILER_SUPPORT_STRICTANSI
- --   Performing Test COMPILER_SUPPORT_STRICTANSI - Failed
- --   Performing Test COMPILER_SUPPORT_Qunusedarguments
- --   Performing Test COMPILER_SUPPORT_Qunusedarguments - Failed
- --   Performing Test COMPILER_SUPPORT_ansi
- --   Performing Test COMPILER_SUPPORT_ansi - Success
- --   Performing Test COMPILER_SUPPORT_OPENMP
- --   Performing Test COMPILER_SUPPORT_OPENMP - Success
- --   Found unsuitable Qt version "" from NOTFOUND
- --   Qt4 not found, so disabling the mandelbrot and opengl demos
- --   A version of Pastix has been found but pastix_nompi.h does not exist in the include directory. Because Eigen tests require a version without MPI, we disable the Pastix backend.
- --   
- --   Configured Eigen 3.4.0
- --   
- --   Available targets (use: make TARGET):
- --   ---------+--------------------------------------------------------------
- --   Target   |   Description
- --   ---------+--------------------------------------------------------------
- --   install  | Install Eigen. Headers will be installed to:
- --            |     <CMAKE_INSTALL_PREFIX>/<INCLUDE_INSTALL_DIR>
- --            |   Using the following values:
- --            |     CMAKE_INSTALL_PREFIX: /usr/local
- --            |     INCLUDE_INSTALL_DIR:  include/eigen3
- --            |   Change the install location of Eigen headers using:
- --            |     cmake . -DCMAKE_INSTALL_PREFIX=yourprefix
- --            |   Or:
- --            |     cmake . -DINCLUDE_INSTALL_DIR=yourdir
- --   doc      | Generate the API documentation, requires Doxygen & LaTeX
- --   blas     | Build BLAS library (not the same thing as Eigen)
- --   uninstall| Remove files installed by the install target
- --   ---------+--------------------------------------------------------------
- --   
- -- Fetching Eigen3 - fetched
- -- Could NOT find Python3 (missing: Python3_EXECUTABLE Interpreter) 
- -- Performing Test COMPILER_HAS_HIDDEN_VISIBILITY
- -- Performing Test COMPILER_HAS_HIDDEN_VISIBILITY - Success
- -- Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY
- -- Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY - Success
- -- Performing Test COMPILER_HAS_DEPRECATED_ATTR
- -- Performing Test COMPILER_HAS_DEPRECATED_ATTR - Success
- -- Generating library list
- -- Library Output Directory: /home/opam/.opam/5.4/.opam-switch/build/ortools_solvers.9.15.0-1/_build/default/ortools_solvers/libortools-build/build/lib
- -- Configuring done (21.0s)
- -- Generating done (2.8s)
- -- Build files have been written to: /home/opam/.opam/5.4/.opam-switch/build/ortools_solvers.9.15.0-1/_build/default/ortools_solvers/libortools-build/build
- CMake Warning at cmake/ccache.cmake:66 (message):
-   CCache disabled
- Call Stack (most recent call first):
-   CMakeLists.txt:178 (include)
- 
- 
2026-03-01 15:31.26: Cancelling: Timeout (120.0 minutes)
Job cancelled
2026-03-01 15:31.41: Timeout (120.0 minutes)