Build:
- 0
2026-02-26 13:47.03: New job: test ocsigen-start.8.0.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29467/head (0e54e6d44d237b0586214e3c2c5a6c942055bb0c)
on opensuse-15.6-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/29467/head" && git reset --hard 0e54e6d4
git fetch origin master
git merge --no-edit e5f44b75d9fef9e17658ad0da2eb5f9a3445c951
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:effc88b5c29636e2a2c6cb1098771062d091bda2846d151c20cf377b7e7f4041
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 ocsigen-start.8.0.0 8.0.0
RUN opam reinstall ocsigen-start.8.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 "\"opensuse-15.6\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocsigen-start.8.0.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 ocsigen-start.8.0.0) || true
RUN opam reinstall --with-test --verbose ocsigen-start.8.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 "\"opensuse-15.6\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocsigen-start.8.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-02-26 13:47.03: Using cache hint "ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:effc88b5c29636e2a2c6cb1098771062d091bda2846d151c20cf377b7e7f4041-ocsigen-start.8.0.0-0e54e6d44d237b0586214e3c2c5a6c942055bb0c"
2026-02-26 13:47.03: Using OBuilder spec:
((from ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:effc88b5c29636e2a2c6cb1098771062d091bda2846d151c20cf377b7e7f4041)
(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 ocsigen-start.8.0.0 8.0.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocsigen-start.8.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 \"\\\"opensuse-15.6\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocsigen-start.8.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 reinstall --with-test ocsigen-start.8.0.0) || true"))
(run (shell "opam reinstall --with-test --verbose ocsigen-start.8.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 \"\\\"opensuse-15.6\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocsigen-start.8.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-02-26 13:47.03: Waiting for resource in pool OCluster
2026-02-27 02:04.22: Waiting for worker…
2026-02-27 02:06.12: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at e5f44b75d9 Merge pull request #29458 from dinosaure/release-vif-v0.0.1_beta2
Updating e5f44b75d9..0e54e6d44d
Fast-forward
packages/ocsigen-start/ocsigen-start.8.0.0/opam | 47 +++++++++++++++++++++++++
1 file changed, 47 insertions(+)
create mode 100644 packages/ocsigen-start/ocsigen-start.8.0.0/opam
(from ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:effc88b5c29636e2a2c6cb1098771062d091bda2846d151c20cf377b7e7f4041)
Unable to find image 'ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:effc88b5c29636e2a2c6cb1098771062d091bda2846d151c20cf377b7e7f4041' locally
docker.io/ocaml/opam@sha256:effc88b5c29636e2a2c6cb1098771062d091bda2846d151c20cf377b7e7f4041: Pulling from ocaml/opam
88fec4ee27fa: Pulling fs layer
0c29b9b81895: Pulling fs layer
e13a07a82ff2: Pulling fs layer
88fec4ee27fa: Waiting
0c29b9b81895: Waiting
a4f587681cd2: Pulling fs layer
e13a07a82ff2: Waiting
b654fe557977: Pulling fs layer
a4f587681cd2: Waiting
07b50a5ff06e: Pulling fs layer
b654fe557977: Waiting
2524e7100bda: Pulling fs layer
07b50a5ff06e: Waiting
2524e7100bda: Waiting
62a0e072f540: Pulling fs layer
62a0e072f540: Waiting
e4d4efb28b71: Pulling fs layer
4d22927afde6: Pulling fs layer
1910d19eb083: Pulling fs layer
f0e05cd6bfcf: Pulling fs layer
a809beaf2ce5: Pulling fs layer
b7a362ffa81b: Pulling fs layer
e4d4efb28b71: Waiting
460129753514: Pulling fs layer
4d22927afde6: Waiting
d4f714e04836: Pulling fs layer
d70fe23c18cd: Pulling fs layer
1910d19eb083: Waiting
f0e05cd6bfcf: Waiting
0d07d7fef061: Pulling fs layer
a809beaf2ce5: Waiting
b7a362ffa81b: Waiting
5623d083d3b3: Pulling fs layer
4f4fb700ef54: Pulling fs layer
ce6441b074a7: Pulling fs layer
0fd2a08bcd56: Pulling fs layer
460129753514: Waiting
f6068b2a147c: Pulling fs layer
4c1a35052789: Pulling fs layer
d4f714e04836: Waiting
5623d083d3b3: Waiting
d70fe23c18cd: Waiting
4f4fb700ef54: Waiting
0d07d7fef061: Waiting
f6068b2a147c: Waiting
ce6441b074a7: Waiting
0fd2a08bcd56: Waiting
b33abd038481: Pulling fs layer
4c1a35052789: Waiting
350e9373a176: Pulling fs layer
b33abd038481: Waiting
a7fc136663a0: Pulling fs layer
350e9373a176: Waiting
5703438fe18a: Pulling fs layer
8833b155bad4: Pulling fs layer
a7fc136663a0: Waiting
98913bd67483: Pulling fs layer
5703438fe18a: Waiting
8833b155bad4: Waiting
331f50433f29: Pulling fs layer
c935b3ee9c7e: Pulling fs layer
98913bd67483: Waiting
331f50433f29: Waiting
22319c85fe85: Pulling fs layer
b7a9591fcacc: Pulling fs layer
c935b3ee9c7e: Waiting
945c450a4d0f: Pulling fs layer
22319c85fe85: Waiting
24e90ed45fcf: Pulling fs layer
b7a9591fcacc: Waiting
945c450a4d0f: Waiting
8424e867ee77: Pulling fs layer
b85a58b4c2e9: Pulling fs layer
8424e867ee77: Waiting
24e90ed45fcf: Waiting
8e414bdd1303: Pulling fs layer
b85a58b4c2e9: Waiting
b70e2c1c4f97: Pulling fs layer
bc301221eae3: Pulling fs layer
b70e2c1c4f97: Waiting
9efc6627d455: Pulling fs layer
bc301221eae3: Waiting
44ea4bdfa499: Pulling fs layer
9efc6627d455: Waiting
748be3b47daa: Pulling fs layer
44ea4bdfa499: Waiting
ebaa78c1632f: Pulling fs layer
ebaa78c1632f: Waiting
748be3b47daa: Waiting
0c29b9b81895: Verifying Checksum
0c29b9b81895: Download complete
88fec4ee27fa: Verifying Checksum
88fec4ee27fa: Download complete
88fec4ee27fa: Pull complete
0c29b9b81895: Pull complete
e13a07a82ff2: Verifying Checksum
e13a07a82ff2: Download complete
b654fe557977: Download complete
07b50a5ff06e: Verifying Checksum
07b50a5ff06e: Download complete
2524e7100bda: Verifying Checksum
2524e7100bda: Download complete
62a0e072f540: Verifying Checksum
62a0e072f540: Download complete
e4d4efb28b71: Verifying Checksum
e4d4efb28b71: Download complete
e13a07a82ff2: Pull complete
a4f587681cd2: Verifying Checksum
a4f587681cd2: Download complete
4d22927afde6: Verifying Checksum
4d22927afde6: Download complete
1910d19eb083: Verifying Checksum
1910d19eb083: Download complete
f0e05cd6bfcf: Verifying Checksum
f0e05cd6bfcf: Download complete
a809beaf2ce5: Verifying Checksum
a809beaf2ce5: Download complete
b7a362ffa81b: Verifying Checksum
b7a362ffa81b: Download complete
460129753514: Verifying Checksum
460129753514: Download complete
d4f714e04836: Verifying Checksum
d4f714e04836: Download complete
d70fe23c18cd: Download complete
0d07d7fef061: Download complete
5623d083d3b3: Verifying Checksum
5623d083d3b3: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
ce6441b074a7: Download complete
0fd2a08bcd56: Download complete
f6068b2a147c: Verifying Checksum
f6068b2a147c: Download complete
4c1a35052789: Verifying Checksum
4c1a35052789: Download complete
b33abd038481: Verifying Checksum
b33abd038481: Download complete
350e9373a176: Verifying Checksum
350e9373a176: Download complete
a7fc136663a0: Download complete
5703438fe18a: Verifying Checksum
5703438fe18a: Download complete
8833b155bad4: Download complete
331f50433f29: Download complete
c935b3ee9c7e: Verifying Checksum
c935b3ee9c7e: Download complete
98913bd67483: Verifying Checksum
98913bd67483: Download complete
b7a9591fcacc: Verifying Checksum
24e90ed45fcf: Download complete
8424e867ee77: Verifying Checksum
8424e867ee77: Download complete
b85a58b4c2e9: Verifying Checksum
b85a58b4c2e9: Download complete
8e414bdd1303: Verifying Checksum
8e414bdd1303: Download complete
a4f587681cd2: Pull complete
b654fe557977: Pull complete
07b50a5ff06e: Pull complete
b70e2c1c4f97: Verifying Checksum
b70e2c1c4f97: Download complete
945c450a4d0f: Verifying Checksum
945c450a4d0f: Download complete
bc301221eae3: Verifying Checksum
bc301221eae3: Download complete
2524e7100bda: Pull complete
44ea4bdfa499: Verifying Checksum
44ea4bdfa499: Download complete
62a0e072f540: Pull complete
e4d4efb28b71: Pull complete
22319c85fe85: Verifying Checksum
22319c85fe85: Download complete
4d22927afde6: Pull complete
ebaa78c1632f: Verifying Checksum
ebaa78c1632f: Download complete
748be3b47daa: Verifying Checksum
748be3b47daa: Download complete
1910d19eb083: Pull complete
f0e05cd6bfcf: Pull complete
a809beaf2ce5: Pull complete
b7a362ffa81b: Pull complete
460129753514: Pull complete
d4f714e04836: Pull complete
d70fe23c18cd: Pull complete
0d07d7fef061: Pull complete
5623d083d3b3: Pull complete
4f4fb700ef54: Pull complete
ce6441b074a7: Pull complete
0fd2a08bcd56: Pull complete
f6068b2a147c: Pull complete
4c1a35052789: Pull complete
b33abd038481: Pull complete
350e9373a176: Pull complete
a7fc136663a0: Pull complete
5703438fe18a: Pull complete
8833b155bad4: Pull complete
98913bd67483: Pull complete
331f50433f29: Pull complete
c935b3ee9c7e: Pull complete
9efc6627d455: Verifying Checksum
9efc6627d455: Download complete
22319c85fe85: Pull complete
b7a9591fcacc: Pull complete
945c450a4d0f: Pull complete
24e90ed45fcf: Pull complete
8424e867ee77: Pull complete
b85a58b4c2e9: Pull complete
8e414bdd1303: Pull complete
b70e2c1c4f97: Pull complete
bc301221eae3: Pull complete
9efc6627d455: Pull complete
44ea4bdfa499: Pull complete
748be3b47daa: Pull complete
ebaa78c1632f: Pull complete
Digest: sha256:effc88b5c29636e2a2c6cb1098771062d091bda2846d151c20cf377b7e7f4041
Status: Downloaded newer image for ocaml/opam@sha256:effc88b5c29636e2a2c6cb1098771062d091bda2846d151c20cf377b7e7f4041
2026-02-27 02:10.05 ---> saved as "ef7fcc773164a50ac7c6190f2fe405e5d17bf12eddb2fc6cbe71b9e48747f47a"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-02-27 02:10.05 ---> saved as "6a55c9a9fbea899fc4d7918cd8d6beb4d0d5a6770bf81e6a5beda42b927fafab"
/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
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-02-27 02:10.42 ---> saved as "1fd455bb93d01e4d5599636cbd1e144d91c5f52e56e286e01b0bd98902d0797e"
/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=opensuse-leap os-version=15.6
# 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-02-27 02:10.43 ---> saved as "ab31ab8a36b49abec2154431464cece9de84de7febba534d5cc2d5de945d8004"
/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-02-27 02:11.29 ---> saved as "5bbfe69dc664d2fe8403810be49882f75e323578ba2d8f9adefaac0fe590b40b"
/home/opam: (copy (src .) (dst opam-repository/))
2026-02-27 02:12.27 ---> saved as "0e497feaa52cc44a7a6a3da9198ca5b4e378e0fc5e3d46920cbb2a660a843629"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-27 02:12.54 ---> saved as "ca6218bcbe1aa075d9c575e4385cdfa497dcf92531af4eee69d1df5dce9faba5"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Retrieving repository 'Update repository of openSUSE Backports' metadata [..
- Looking for gpg keys in repository Update repository of openSUSE Backports.
- gpgkey=http://download.opensuse.org/update/leap/15.6/backports/repodata/repomd.xml.key
- .
- ......
- ....
- ....
- ....
- ....
- ...
- .........
- .......
- .
- ......
- .......
- ..........
- done]
- Building repository 'Update repository of openSUSE Backports' cache [....done]
- Retrieving repository 'Update repository with updates from SUSE Linux Enterprise 15' metadata [.
- .
- Looking for gpg keys in repository Update repository with updates from SUSE Linux Enterprise 15.
- gpgkey=http://download.opensuse.org/update/leap/15.6/sle/repodata/repomd.xml.key
- ......
- ....
- ....
- ....
- ....
- ....
- ...........
- .........
- .......
- .........
- .......
- ..........
- ..........
- ..........
- .........
- ........
- .........
- ........
- ........
- .........
- ........
- .........
- ........
- ........
- ........
- .........
- .........
- .........
- .......
- ........
- ..........
- ........
- .......
- .....
- .......
- .......
- .....
- ......
- .......
- .........
- ..........
- .........
- ..........
- .........
- ..........
- ..........
- ..........
- ..........
- ..........done]
- Building repository 'Update repository with updates from SUSE Linux Enterprise 15' cache [..
- ..done]
- Repository 'Main Update Repository' is up to date.
- Repository 'Update Repository (Non-Oss)' is up to date.
- Repository 'Non-OSS Repository' is up to date.
- Repository 'Main Repository' is up to date.
- All repositories have been refreshed.
2026-02-27 02:14.15 ---> saved as "b11b53778210fd3050ebe351e40d99aa40b6d3e23c0a713ea092bd07c6d690d1"
/home/opam: (run (shell "opam pin add -k version -yn ocsigen-start.8.0.0 8.0.0"))
ocsigen-start is now pinned to version 8.0.0
2026-02-27 02:14.16 ---> saved as "fc76d8a03ccef59e9d932a8aaf6ec0a3b2d72603b7fef3312379176795a75c87"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocsigen-start.8.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 \"\\\"opensuse-15.6\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocsigen-start.8.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"))
ocsigen-start.8.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 123 packages
- install angstrom 0.16.1 [required by uri]
- install asn1-combinators 0.3.2 [required by x509]
- install astring 0.8.5 [required by conduit]
- install base v0.17.3 [required by ppx_optcomp]
- install base-bytes base [required by eliom]
- install base64 3.5.2 [required by cohttp]
- install bigstringaf 0.10.0 [required by angstrom]
- install bos 0.2.1 [required by ca-certs]
- install ca-certs 1.0.1 [required by conduit-lwt-unix]
- install calendar 3.0.0 [required by ocsigen-toolkit]
- install camlp-streams 5.0.1 [required by pgocaml]
- install camlzip 1.14 [required by ocsigenserver]
- install cmdliner 2.1.0 [required by cohttp-lwt-unix]
- install cohttp 6.2.1 [required by cohttp-lwt-unix]
- install cohttp-lwt 6.2.1 [required by cohttp-lwt-unix]
- install cohttp-lwt-unix 6.2.1 [required by ocsigen-start]
- install conduit 8.0.0 [required by conduit-lwt]
- install conduit-lwt 8.0.0 [required by cohttp-lwt-unix]
- install conduit-lwt-unix 8.0.0 [required by cohttp-lwt-unix]
- install conf-binaryen 1 [required by wasm_of_ocaml-compiler]
- install conf-gmp 5 [required by conf-gmp-powm-sec, zarith]
- install conf-gmp-powm-sec 4 [required by cryptokit]
- install conf-libssl 4 [required by ssl]
- install conf-pkg-config 4 [required by conf-zlib]
- install conf-zlib 1 [required by camlzip, cryptokit]
- install cppo 1.8.0 [required by ppx_deriving]
- install cryptokit 1.21.1 [required by ocsigenserver]
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.2.0 [required by logs-syslog]
- install csv 2.4 [required by pgocaml]
- install digestif 1.3.0 [required by ca-certs]
- install domain-name 0.5.0 [required by ipaddr]
- install dune 3.21.1 [required by resource-pooling, ocsipersist-pgsql-config, ocsigen-i18n, etc.]
- install dune-configurator 3.21.1 [required by cryptokit]
- install duration 0.2.1 [required by mirage-crypto-rng]
- install eliom 12.0.0 [required by ocsigen-start]
- install eqaf 0.10 [required by digestif, mirage-crypto]
- install fmt 0.11.0 [required by cohttp-lwt-unix]
- install fpath 0.7.3 [required by ca-certs]
- install gen 1.1 [required by sedlex]
- install gmap 0.3.0 [required by x509]
- install hex 1.5.0 [required by pgocaml]
- install http 6.2.1 [required by cohttp-lwt-unix]
- install ipaddr 5.6.2 [required by eliom]
- install ipaddr-sexp 5.6.2 [required by conduit-lwt-unix]
- install js_of_ocaml 6.3.2 [required by ocsigen-start]
- install js_of_ocaml-compiler 6.3.2 [required by eliom]
- install js_of_ocaml-lwt 6.3.2 [required by eliom]
- install js_of_ocaml-ocamlbuild 5.0 [required by eliom]
- install js_of_ocaml-ppx 6.3.2 [required by eliom]
- install js_of_ocaml-ppx_deriving_json 6.3.2 [required by eliom]
- install js_of_ocaml-tyxml 6.3.2 [required by eliom]
- install kdf 1.0.0 [required by x509]
- install logs 0.10.0 [required by cohttp-lwt-unix, eliom]
- install logs-syslog 0.5.0 [required by ocsigenserver]
- install lwt 5.9.1 [required by cohttp-lwt-unix, resource-pooling]
- install lwt_log 1.1.2 [required by resource-pooling]
- install lwt_ppx 5.9.3 [required by ocsipersist-lib]
- install lwt_react 1.2.0 [required by ocsigenserver]
- install lwt_ssl 1.2.0 [required by conduit-lwt-unix, ocsigenserver]
- install macaddr 5.6.2 [required by ipaddr]
- install magic-mime 1.3.1 [required by cohttp-lwt-unix]
- install menhir 20260209 [required by wasm_of_ocaml-compiler]
- install menhirCST 20260209 [required by menhir]
- install menhirGLR 20260209 [required by menhir]
- install menhirLib 20260209 [required by wasm_of_ocaml-compiler]
- install menhirSdk 20260209 [required by wasm_of_ocaml-compiler]
- install mirage-crypto 2.0.3 [required by ca-certs]
- install mirage-crypto-ec 2.0.3 [required by x509]
- install mirage-crypto-pk 2.0.3 [required by x509]
- install mirage-crypto-rng 2.0.3 [required by x509]
- install num 1.6 [required by sexplib]
- install ocaml-compiler-libs v0.17.0 [required by js_of_ocaml-compiler]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocaml_intrinsics_kernel v0.17.1 [required by base]
- install ocamlbuild 0.16.1 [required by js_of_ocaml-ocamlbuild]
- install ocamlfind 1.9.8 [required by eliom]
- install ocplib-endian 1.2 [required by lwt]
- install ocsigen-i18n 4.0.0 [required by ocsigen-start]
- install ocsigen-ppx-rpc 1.1 [required by ocsigen-start]
- install ocsigen-start 8.0.0 (pinned)
- install ocsigen-toolkit 4.2.0 [required by ocsigen-start]
- install ocsigenserver 7.0.0 [required by eliom, ocsipersist-pgsql-config]
- install ocsipersist 2.0.0 [required by eliom]
- install ocsipersist-lib 2.0.0 [required by ocsipersist]
- install ocsipersist-pgsql 2.0.0 [required by ocsipersist-pgsql-config]
- install ocsipersist-pgsql-config 2.0.0 [required by ocsigen-start]
- install ohex 0.2.0 [required by ca-certs]
- install parsexp v0.17.0 [required by sexplib]
- install pgocaml 4.4.0 [required by ocsigen-start]
- install pgocaml_ppx 4.4.0 [required by ocsigen-start]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.1.1 [required by eliom]
- install ppx_optcomp v0.17.1 [required by eliom, pgocaml_ppx]
- install ppx_sexp_conv v0.17.1 [required by cohttp-lwt-unix]
- install ppxlib 0.37.0 [required by ocsigen-ppx-rpc, eliom, ocsigen-i18n, pgocaml_ppx]
- install ppxlib_jane v0.17.4 [required by ppx_sexp_conv]
- install ptime 1.2.0 [required by ca-certs, logs-syslog]
- install re 1.14.0 [required by ocsigen-start]
- install react 1.2.2 [required by js_of_ocaml-tyxml, ocsigenserver]
- install reactiveData 0.3.1 [required by eliom]
- install resource-pooling 1.2 [required by ocsigen-start]
- install rresult 0.7.0 [required by pgocaml]
- install safepass 3.1 [required by ocsigen-start]
- install sedlex 3.7 [required by wasm_of_ocaml-compiler]
- install seq base [required by tyxml]
- install sexplib v0.17.0 [required by pgocaml]
- install sexplib0 v0.17.0 [required by cohttp-lwt, cohttp, conduit-lwt]
- install ssl 0.7.0 [required by ocsigenserver]
- install stdio v0.17.0 [required by ppx_optcomp]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install stringext 1.6.0 [required by cohttp]
- install syslog-message 1.2.0 [required by ocsigenserver]
- install topkg 1.1.1 [required by logs, react]
- install tyxml 4.6.0 [required by eliom]
- install uri 4.4.0 [required by cohttp-lwt, cohttp, conduit-lwt-unix]
- install uri-sexp 4.4.0 [required by cohttp]
- install uutf 1.0.4 [required by tyxml]
- install wasm_of_ocaml-compiler 6.3.2 [required by eliom]
- install x509 1.0.6 [required by ca-certs, logs-syslog]
- install xml-light 2.5 [required by eliom, ocsipersist-pgsql-config]
- install yojson 3.0.0 [required by ocsigen-start]
- install zarith 1.14 [required by cryptokit]
The following system packages will first need to be installed:
binaryen gmp-devel libopenssl-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run zypper to install them (may need root/sudo access)
2. Display the recommended zypper 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 "zypper" "--non-interactive" "install" "binaryen" "gmp-devel" "libopenssl-devel"
- Loading repository data...
- Reading installed packages...
[ERROR] System package install failed with exit code 104 at command:
sudo zypper --non-interactive install binaryen gmp-devel libopenssl-devel
- 'binaryen' not found in package names. Trying capabilities.
- No provider of 'binaryen' found.
[ERROR] These packages are still missing: binaryen gmp-devel libopenssl-devel
[NOTE] You can retry with '--assume-depexts' to skip this check, or run 'opam option depext=false' to permanently disable handling of system packages.
"/usr/bin/env" "bash" "-c" "opam reinstall ocsigen-start.8.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 "\"opensuse-15.6\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'ocsigen-start.8.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 10
2026-02-27 02:14.30: Job failed: Failed: Build failed
2026-02-27 02:14.30: Log analysis:
2026-02-27 02:14.30: >>>
[ERROR] System package install failed with exit code 104 at command:
(score = 20)
2026-02-27 02:14.30: >>>
[ERROR] These packages are still missing: binaryen gmp-devel libopenssl-devel
(score = 20)
2026-02-27 02:14.30: System package install failed with exit code 104 at command: