- github
- ocaml
- opam-repository
- 75eef3
- compilers,4.13,yocaml_unix.1.0.0,lower-bounds
(not at the head of any monitored branch or PR)
2025-02-28 11:21.20: New job: build yocaml_unix.1.0.0, lower-bounds, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/27506/head (75eef35b619bf9c3f461991842637fa9cca93c84)
on debian-12-ocaml-4.13/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/27506/head" && git reset --hard 75eef35b
git fetch origin master
git merge --no-edit c27f09fa9e7c90f754413780e15d13ba8c13d377
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.13@sha256:56926515625f1746580d5ba673ca991ee5951fd4786f933d09c2bbebfd3cb1e2
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 yocaml_unix.1.0.0 1.0.0
RUN opam reinstall yocaml_unix.1.0.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'yocaml_unix.1.0.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
ENV OPAMCRITERIA="+removed,+count[version-lag,solution]"
ENV OPAMFIXUPCRITERIA="+removed,+count[version-lag,solution]"
ENV OPAMUPGRADECRITERIA="+removed,+count[version-lag,solution]"
RUN opam reinstall yocaml_unix.1.0.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'yocaml_unix.1.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 .
2025-02-28 11:21.20: Using cache hint "ocaml/opam:debian-12-ocaml-4.13@sha256:56926515625f1746580d5ba673ca991ee5951fd4786f933d09c2bbebfd3cb1e2-yocaml_unix.1.0.0-75eef35b619bf9c3f461991842637fa9cca93c84"
2025-02-28 11:21.20: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.13@sha256:56926515625f1746580d5ba673ca991ee5951fd4786f933d09c2bbebfd3cb1e2)
(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 yocaml_unix.1.0.0 1.0.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall yocaml_unix.1.0.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'yocaml_unix.1.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"))
(env OPAMCRITERIA +removed,+count[version-lag,solution])
(env OPAMFIXUPCRITERIA +removed,+count[version-lag,solution])
(env OPAMUPGRADECRITERIA +removed,+count[version-lag,solution])
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall yocaml_unix.1.0.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'yocaml_unix.1.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"))
)
2025-02-28 11:21.20: Waiting for resource in pool OCluster
2025-02-28 11:21.26: Waiting for worker…
2025-02-28 11:21.34: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
Updating files: 98% (22186/22532)
Updating files: 99% (22307/22532)
Updating files: 100% (22532/22532)
Updating files: 100% (22532/22532), done.
HEAD is now at c27f09fa9e Merge pull request #27515 from xavierleroy/Xft
Merge made by the 'ort' strategy.
packages/preface/preface.1.1.0/opam | 46 ++++++++++++++++++++++
packages/yocaml/yocaml.1.0.0/opam | 2 +-
packages/yocaml_cmark/yocaml_cmark.1.0.0/opam | 2 +-
packages/yocaml_git/yocaml_git.1.0.0/opam | 2 +-
packages/yocaml_jingoo/yocaml_jingoo.1.0.0/opam | 2 +-
.../yocaml_markdown/yocaml_markdown.1.0.0/opam | 2 +-
.../yocaml_mustache/yocaml_mustache.1.0.0/opam | 2 +-
packages/yocaml_unix/yocaml_unix.1.0.0/opam | 2 +-
packages/yocaml_yaml/yocaml_yaml.1.0.0/opam | 2 +-
9 files changed, 54 insertions(+), 8 deletions(-)
create mode 100644 packages/preface/preface.1.1.0/opam
(from ocaml/opam:debian-12-ocaml-4.13@sha256:56926515625f1746580d5ba673ca991ee5951fd4786f933d09c2bbebfd3cb1e2)
2025-02-28 11:23.50 ---> using "114aebc0df831c183f0bc6e0591519784483c27acfaa72fbb21f484156fede5c" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-02-28 11:23.50 ---> using "ccaad0890d803f0092fb2e4b73e4c615d8f7062df8a888b2391e57ed0ff6ea4b" 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
[NOTE] The 'jobs' option was reset, its value was 39 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=39 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] synchronised from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from file:///home/opam/opam-repository
2025-02-28 11:23.50 ---> using "85506ca78b731a36b52d1afd29337719a22ad0fe45259267d039e1af41136f2d" 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.4.0~alpha1~dev (34b7b4ec4af0ebd3c8fc4aee8088471be2ad48c7)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=12
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (local), 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.13
# invariant ["ocaml-base-compiler" {= "4.13.1"}]
# compiler-packages ocaml-base-compiler.4.13.1, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.13/lib/ocaml/stublibs:/home/opam/.opam/4.13/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.13.1
2025-02-28 11:23.50 ---> using "2726d32f9587236972ae31520ffb8dc5a3dbd558313fa37ae714a847e6a4c184" 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/"))
2025-02-28 11:23.50 ---> using "f934436ccdfe9afe94e25f96755662067fe4a0a6a5c8cadcebc11047471dd010" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-02-28 11:23.58 ---> saved as "8aebea9807f8ea1f2a696ccabbeb0fb4549de82956ea42ab7298354b7aa8b084"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-02-28 11:24.41 ---> saved as "a22b69a28eeea2d7968e0fe9e97a453f65652f2edcaede669fbf9ab186ae7a9a"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [246 kB]
- Fetched 349 kB in 0s (945 kB/s)
- Reading package lists...
2025-02-28 11:24.43 ---> saved as "4a3ef2c0246197ef969472a5815e04c63f4e5b7c9520c6219b403b0555b0f9e2"
/home/opam: (run (shell "opam pin add -k version -yn yocaml_unix.1.0.0 1.0.0"))
yocaml_unix is now pinned to version 1.0.0
2025-02-28 11:24.44 ---> saved as "94c64f6c975274704df367f1630d471dd394c8ac6fd1f587ae8c0abd008ef516"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall yocaml_unix.1.0.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'yocaml_unix.1.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"))
yocaml_unix.1.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 69 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.15.1 [required by ppx_sexp_conv]
- install base-bytes base [required by ocplib-endian]
- install base64 3.5.1 [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.0 [required by conduit-lwt-unix]
- install cmdliner 1.3.0 [required by cohttp-lwt-unix]
- install cohttp 6.0.0 [required by cohttp-lwt-unix]
- install cohttp-lwt 6.0.0 [required by cohttp-lwt-unix]
- install cohttp-lwt-unix 6.0.0 [required by yocaml_unix]
- install conduit 8.0.0 [required by conduit-lwt]
- install conduit-lwt 8.0.0 [required by yocaml_unix]
- install conduit-lwt-unix 8.0.0 [required by cohttp-lwt-unix]
- install conf-gmp 4 [required by conf-gmp-powm-sec, zarith]
- install conf-gmp-powm-sec 3 [required by cryptokit]
- install conf-pkg-config 4 [required by conf-zlib]
- install conf-zlib 1 [required by cryptokit]
- install cppo 1.8.0 [required by lwt]
- install cryptokit 1.20 [required by yocaml_unix]
- install csexp 1.5.2 [required by dune-configurator]
- install digestif 1.2.0 [required by ca-certs]
- install domain-name 0.4.1 [required by ipaddr, x509]
- install dune 3.17.2 [required by yocaml_unix]
- install dune-configurator 3.17.2 [required by cryptokit]
- install duration 0.2.1 [required by mirage-crypto-rng]
- install either 1.0.0 [required by preface]
- install eqaf 0.10 [required by digestif, mirage-crypto]
- install fmt 0.9.0 [required by cohttp-lwt-unix]
- install fpath 0.7.3 [required by ca-certs]
- install gmap 0.3.0 [required by x509]
- install http 6.0.0 [required by cohttp-lwt-unix]
- install ipaddr 5.6.0 [required by conduit-lwt-unix]
- install ipaddr-sexp 5.6.0 [required by conduit-lwt-unix]
- install kdf 1.0.0 [required by x509]
- install logs 0.7.0 [required by yocaml_unix]
- install lwt 5.9.0 [required by yocaml_unix]
- install macaddr 5.6.0 [required by ipaddr]
- install magic-mime 1.3.1 [required by cohttp-lwt-unix]
- install mirage-crypto 1.1.0 [required by ca-certs]
- install mirage-crypto-ec 1.1.0 [required by x509]
- install mirage-crypto-pk 1.1.0 [required by x509]
- install mirage-crypto-rng 1.1.0 [required by x509]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocamlbuild 0.16.1 [required by logs]
- install ocamlfind 1.9.8 [required by logs]
- install ocplib-endian 1.2 [required by lwt]
- install ohex 0.2.0 [required by ca-certs]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppx_sexp_conv v0.15.1 [required by cohttp-lwt-unix]
- install ppxlib 0.35.0 [required by ppx_sexp_conv]
- install preface 1.0.0 [required by yocaml_unix]
- install ptime 1.2.0 [required by ca-certs]
- install re 1.12.0 [required by cohttp]
- install rresult 0.7.0 [required by bos]
- install seq base [required by re]
- install sexplib0 v0.15.1 [required by cohttp-lwt, cohttp, conduit-lwt]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install stringext 1.6.0 [required by cohttp]
- install topkg 1.0.7 [required by logs]
- install uri 4.4.0 [required by cohttp-lwt, cohttp, conduit-lwt-unix]
- install uri-sexp 4.4.0 [required by cohttp]
- install x509 1.0.5 [required by ca-certs]
- install yocaml 1.0.0 [required by yocaml_unix]
- install yocaml_unix 1.0.0 (pinned)
- install zarith 1.14 [required by cryptokit]
The following system packages will first need to be installed:
libgmp-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" "libgmp-dev" "pkg-config" "zlib1g-dev"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libgmpxx4ldbl: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 ... 18745 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../6-zlib1g-dev_1%3a1.2.13.dfsg-1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u9) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved asn1-combinators.0.3.2 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved base.v0.15.1 (cached)
-> retrieved base64.3.5.1 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved ca-certs.1.0.0 (cached)
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved cohttp.6.0.0, cohttp-lwt.6.0.0, cohttp-lwt-unix.6.0.0, http.6.0.0 (cached)
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0 (cached)
-> retrieved conf-gmp.4 (cached)
-> retrieved conf-gmp-powm-sec.3 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved cryptokit.1.20 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-pkg-config.4
-> installed conf-gmp.4
-> installed conf-zlib.1
-> installed conf-gmp-powm-sec.3
-> retrieved digestif.1.2.0 (cached)
-> retrieved domain-name.0.4.1 (cached)
-> retrieved dune.3.17.2, dune-configurator.3.17.2 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved either.1.0.0 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved fmt.0.9.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved gmap.0.3.0 (cached)
-> retrieved ipaddr.5.6.0, ipaddr-sexp.5.6.0, macaddr.5.6.0 (cached)
-> retrieved kdf.1.0.0 (cached)
-> retrieved logs.0.7.0 (cached)
-> installed cmdliner.1.3.0
-> retrieved lwt.5.9.0 (cached)
-> retrieved magic-mime.1.3.1 (cached)
-> retrieved mirage-crypto.1.1.0, mirage-crypto-ec.1.1.0, mirage-crypto-pk.1.1.0, mirage-crypto-rng.1.1.0 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved ohex.0.2.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_sexp_conv.v0.15.1 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved preface.1.0.0 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved re.1.12.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.15.1 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved topkg.1.0.7 (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0 (cached)
-> retrieved x509.1.0.5 (cached)
-> retrieved yocaml.1.0.0, yocaml_unix.1.0.0 (cached)
-> retrieved zarith.1.14 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.0.7
-> installed rresult.0.7.0
-> installed fmt.0.9.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed dune.3.17.2
-> installed duration.0.2.1
-> installed gmap.0.3.0
-> installed csexp.1.5.2
-> installed asn1-combinators.0.3.2
-> installed base64.3.5.1
-> installed cppo.1.8.0
-> installed domain-name.0.4.1
-> installed either.1.0.0
-> installed eqaf.0.10
-> installed http.6.0.0
-> installed macaddr.5.6.0
-> installed magic-mime.1.3.1
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed ohex.0.2.0
-> installed ppx_derivers.1.2.1
-> installed re.1.12.0
-> installed sexplib0.v0.15.1
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed ocplib-endian.1.2
-> installed ipaddr.5.6.0
-> installed digestif.1.2.0
-> installed preface.1.0.0
-> installed dune-configurator.3.17.2
-> installed bigstringaf.0.10.0
-> installed yocaml.1.0.0
-> installed angstrom.0.16.1
-> installed mirage-crypto.1.1.0
-> installed cryptokit.1.20
-> installed kdf.1.0.0
-> installed uri.4.4.0
-> installed lwt.5.9.0
-> installed logs.0.7.0
-> installed mirage-crypto-rng.1.1.0
-> installed base.v0.15.1
-> installed mirage-crypto-pk.1.1.0
-> installed bos.0.2.1
-> installed mirage-crypto-ec.1.1.0
-> installed ppxlib.0.35.0
-> installed x509.1.0.5
-> installed ca-certs.1.0.0
-> installed ppx_sexp_conv.v0.15.1
-> installed ipaddr-sexp.5.6.0
-> installed uri-sexp.4.4.0
-> installed conduit.8.0.0
-> installed cohttp.6.0.0
-> installed conduit-lwt.8.0.0
-> installed cohttp-lwt.6.0.0
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt-unix.6.0.0
-> installed yocaml_unix.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-28 11:25.45 ---> saved as "7f90e1b44adf0c2a10006655bbd325c2e79e44d6ddeba8c73f10f247e254512e"
/home/opam: (env OPAMCRITERIA +removed,+count[version-lag,solution])
/home/opam: (env OPAMFIXUPCRITERIA +removed,+count[version-lag,solution])
/home/opam: (env OPAMUPGRADECRITERIA +removed,+count[version-lag,solution])
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall yocaml_unix.1.0.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'yocaml_unix.1.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"))
The following actions will be performed:
=== remove 9 packages
- remove angstrom 0.16.1 [conflicts with dune]
- remove bigstringaf 0.10.0 [conflicts with dune]
- remove csexp 1.5.2 [conflicts with dune]
- remove digestif 1.2.0 [conflicts with dune]
- remove http 6.0.0 [conflicts with dune]
- remove kdf 1.0.0 [conflicts with dune]
- remove mirage-crypto-ec 1.1.0 [conflicts with dune]
- remove ocaml-syntax-shims 1.0.0 [conflicts with dune]
- remove ohex 0.2.0 [conflicts with dune]
=== downgrade 50 packages
- downgrade asn1-combinators 0.3.2 to 0.2.4 [uses ptime]
- downgrade base v0.15.1 to v0.14.1 [uses dune]
- downgrade base64 3.5.1 to 3.1.0 [upstream or system changes]
- downgrade bos 0.2.1 to 0.1.0 [uses fmt]
- downgrade ca-certs 1.0.0 to 0.1.2 [uses bos]
- downgrade cmdliner 1.3.0 to 1.0.3 [required by cohttp-lwt-unix]
- downgrade cohttp 6.0.0 to 4.0.0 [upstream or system changes]
- downgrade cohttp-lwt 6.0.0 to 4.0.0 [required by cohttp-lwt-unix]
- downgrade cohttp-lwt-unix 6.0.0 to 4.0.0 [required by yocaml_unix]
- downgrade conduit 8.0.0 to 4.0.0 [uses dune]
- downgrade conduit-lwt 8.0.0 to 4.0.0 [required by yocaml_unix]
- downgrade conduit-lwt-unix 8.0.0 to 4.0.0 [required by cohttp-lwt-unix]
- downgrade conf-gmp 4 to 1 [required by conf-gmp-powm-sec]
- downgrade conf-gmp-powm-sec 3 to 1 [required by mirage-crypto-pk]
- downgrade conf-pkg-config 4 to 1.0 [required by mirage-crypto]
- downgrade cppo 1.8.0 to 1.6.1 [upstream or system changes]
- downgrade cryptokit 1.20 to 1.16.1 [required by yocaml_unix]
- downgrade domain-name 0.4.1 to 0.3.0 [uses fmt]
- downgrade dune 3.17.2 to 2.8.5 [required by yocaml_unix]
- downgrade dune-configurator 3.17.2 to 2.3.0 [uses dune]
- downgrade duration 0.2.1 to 0.1.0 [uses ocamlbuild]
- downgrade eqaf 0.10 to 0.8 [uses dune]
- downgrade fmt 0.9.0 to 0.8.7 [required by cohttp-lwt-unix]
- downgrade ipaddr 5.6.0 to 4.0.0 [uses dune]
- downgrade ipaddr-sexp 5.6.0 to 4.0.0 [uses dune]
- downgrade lwt 5.9.0 to 5.4.0 [required by yocaml_unix]
- downgrade macaddr 5.6.0 to 4.0.0 [uses dune]
- downgrade magic-mime 1.3.1 to 1.0.0 [required by cohttp-lwt-unix]
- downgrade mirage-crypto 1.1.0 to 0.10.4 [uses dune]
- downgrade mirage-crypto-pk 1.1.0 to 0.10.4 [uses dune]
- downgrade mirage-crypto-rng 1.1.0 to 0.10.4 [uses duration]
- downgrade ocaml-compiler-libs v0.12.4 to v0.11.0 [required by ppxlib]
- downgrade ocamlbuild 0.16.1 to 0.14.0 [required by fmt]
- downgrade ocamlfind 1.9.8 to 1.9.1 [required by fmt]
- downgrade ocplib-endian 1.2 to 1.0 [uses ocamlbuild]
- downgrade ppx_derivers 1.2.1 to 1.0 [required by ppxlib]
- downgrade ppx_sexp_conv v0.15.1 to v0.14.3 [required by cohttp-lwt-unix]
- downgrade ppxlib 0.35.0 to 0.22.2 [uses dune]
- downgrade ptime 1.2.0 to 0.8.1 [uses ocamlbuild]
- downgrade re 1.12.0 to 1.9.0 [uses dune]
- downgrade rresult 0.7.0 to 0.4.0 [uses ocamlbuild]
- downgrade seq base to 0.2.2 [required by fmt]
- downgrade sexplib0 v0.15.1 to v0.14.0 [uses dune]
- downgrade stdlib-shims 0.3.0 to 0.1.0 [required by fmt]
- downgrade stringext 1.6.0 to 1.4.0 [uses ocamlbuild]
- downgrade topkg 1.0.7 to 1.0.3 [required by fmt]
- downgrade uri 4.4.0 to 3.0.0 [uses dune]
- downgrade uri-sexp 4.4.0 to 3.0.0 [uses dune]
- downgrade x509 1.0.5 to 0.11.0 [uses fmt]
- downgrade zarith 1.14 to 1.4 [uses ocamlfind]
=== recompile 7 packages
- recompile base-bytes base [uses ocamlfind]
- recompile either 1.0.0 [uses dune]
- recompile gmap 0.3.0 [uses dune]
- recompile logs 0.7.0 [uses cmdliner]
- recompile preface 1.0.0 [uses dune]
- recompile yocaml 1.0.0 [uses dune]
- recompile yocaml_unix 1.0.0 (pinned)
=== install 17 packages
- install bigarray-compat 1.0.0 [required by cstruct]
- install conf-perl 1 [required by zarith]
- install cstruct 6.0.0 [required by eqaf]
- install dune-private-libs 2.3.0 [required by dune-configurator]
- install jbuilder 1.0+beta20.1 (deprecated) [required by ocaml-compiler-libs]
- install jsonm 1.0.1 [required by cohttp]
- install mirage-no-solo5 1 (deprecated) [required by mirage-crypto-pk]
- install mirage-no-xen 1 (deprecated) [required by mirage-crypto-pk]
- install mmap 1.1.0 [required by lwt]
- install mtime 1.0.0 [required by mirage-crypto-rng]
- install num 1.0 [required by sexplib]
- install ocaml-migrate-parsetree 2.2.0 (deprecated) [required by ppxlib]
- install parsexp v0.14.1 [required by sexplib]
- install result 1.5 [required by ptime]
- install sexplib v0.14.0 [required by conduit]
- install uchar 0.0.2 [required by jsonm]
- install uutf 1.0.1 [required by jsonm]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved asn1-combinators.0.2.4 (cached)
-> retrieved base.v0.14.1 (cached)
-> retrieved base64.3.1.0 (cached)
-> retrieved bigarray-compat.1.0.0 (cached)
-> retrieved bos.0.1.0 (cached)
-> retrieved ca-certs.0.1.2 (cached)
-> retrieved cmdliner.1.0.3 (cached)
-> retrieved cohttp.4.0.0, cohttp-lwt.4.0.0, cohttp-lwt-unix.4.0.0 (cached)
-> retrieved conduit.4.0.0, conduit-lwt.4.0.0, conduit-lwt-unix.4.0.0 (cached)
-> retrieved conf-gmp.1 (cached)
-> retrieved conf-gmp-powm-sec.1 (cached)
-> retrieved cppo.1.6.1 (cached)
-> retrieved cryptokit.1.16.1 (cached)
-> installed conf-perl.1
-> retrieved cstruct.6.0.0 (cached)
-> retrieved domain-name.0.3.0 (cached)
-> retrieved dune.2.8.5 (cached)
-> retrieved dune-configurator.2.3.0, dune-private-libs.2.3.0 (cached)
-> retrieved duration.0.1.0 (cached)
-> retrieved either.1.0.0 (cached)
-> retrieved eqaf.0.8 (cached)
-> retrieved fmt.0.8.7 (cached)
-> retrieved gmap.0.3.0 (cached)
-> retrieved ipaddr.4.0.0, ipaddr-sexp.4.0.0, macaddr.4.0.0 (cached)
-> retrieved jbuilder.1.0+beta20.1 (cached)
-> retrieved jsonm.1.0.1 (cached)
-> retrieved logs.0.7.0 (cached)
-> retrieved lwt.5.4.0 (cached)
-> retrieved magic-mime.1.0.0 (cached)
-> retrieved mirage-crypto.0.10.4, mirage-crypto-pk.0.10.4, mirage-crypto-rng.0.10.4 (cached)
-> installed mirage-no-solo5.1
-> installed mirage-no-xen.1
-> retrieved mmap.1.1.0 (cached)
-> retrieved mtime.1.0.0 (cached)
-> retrieved num.1.0 (cached)
-> retrieved ocaml-compiler-libs.v0.11.0 (cached)
-> retrieved ocaml-migrate-parsetree.2.2.0 (cached)
-> retrieved ocamlbuild.0.14.0 (cached)
-> retrieved ocamlfind.1.9.1 (cached)
-> retrieved ocplib-endian.1.0 (cached)
-> retrieved parsexp.v0.14.1 (cached)
-> retrieved ppx_derivers.1.0 (cached)
-> retrieved ppx_sexp_conv.v0.14.3 (cached)
-> retrieved ppxlib.0.22.2 (cached)
-> retrieved preface.1.0.0 (cached)
-> retrieved ptime.0.8.1 (cached)
-> retrieved re.1.9.0 (cached)
-> retrieved result.1.5 (cached)
-> retrieved rresult.0.4.0 (cached)
-> retrieved seq.0.2.2 (cached)
-> retrieved sexplib.v0.14.0 (cached)
-> retrieved sexplib0.v0.14.0 (cached)
-> retrieved stdlib-shims.0.1.0 (cached)
-> retrieved stringext.1.4.0 (cached)
-> retrieved topkg.1.0.3 (cached)
-> retrieved uchar.0.0.2 (cached)
-> retrieved uri.3.0.0, uri-sexp.3.0.0 (cached)
-> retrieved uutf.1.0.1 (cached)
-> retrieved x509.0.11.0 (cached)
-> retrieved yocaml.1.0.0, yocaml_unix.1.0.0 (cached)
-> retrieved zarith.1.4 (cached)
-> installed jbuilder.1.0+beta20.1
-> removed yocaml_unix.1.0.0
-> removed cohttp-lwt-unix.6.0.0
-> removed cohttp-lwt.6.0.0
-> removed cohttp.6.0.0
-> removed conduit-lwt-unix.8.0.0
-> removed ca-certs.1.0.0
-> removed bos.0.2.1
-> removed conduit-lwt.8.0.0
-> removed conduit.8.0.0
-> removed cryptokit.1.20
-> removed http.6.0.0
-> removed ipaddr-sexp.5.6.0
-> removed magic-mime.1.3.1
-> removed re.1.12.0
-> removed rresult.0.7.0
-> removed seq.base
-> removed uri-sexp.4.4.0
-> removed ppx_sexp_conv.v0.15.1
-> removed base.v0.15.1
-> removed ppxlib.0.35.0
-> removed ocaml-compiler-libs.v0.12.4
-> removed ppx_derivers.1.2.1
-> removed sexplib0.v0.15.1
-> removed stdlib-shims.0.3.0
-> removed uri.4.4.0
-> removed angstrom.0.16.1
-> removed bigstringaf.0.10.0
-> removed ocaml-syntax-shims.1.0.0
-> removed stringext.1.6.0
-> removed x509.1.0.5
-> removed asn1-combinators.0.3.2
-> removed base64.3.5.1
-> removed gmap.0.3.0
-> removed ipaddr.5.6.0
-> removed domain-name.0.4.1
-> removed kdf.1.0.0
-> removed macaddr.5.6.0
-> removed mirage-crypto-ec.1.1.0
-> removed mirage-crypto-pk.1.1.0
-> removed conf-gmp-powm-sec.3
-> removed mirage-crypto-rng.1.1.0
-> removed digestif.1.2.0
-> removed duration.0.2.1
-> removed logs.0.7.0
-> removed fmt.0.9.0
-> removed cmdliner.1.3.0
-> removed lwt.5.9.0
-> removed mirage-crypto.1.1.0
-> removed dune-configurator.3.17.2
-> removed csexp.1.5.2
-> removed eqaf.0.10
-> removed ocplib-endian.1.2
-> removed base-bytes.base
-> removed cppo.1.8.0
-> removed ohex.0.2.0
-> removed ptime.1.2.0
-> removed topkg.1.0.7
-> removed ocamlbuild.0.16.1
-> removed yocaml.1.0.0
-> removed preface.1.0.0
-> removed either.1.0.0
-> removed dune.3.17.2
-> removed zarith.1.14
-> removed conf-gmp.4
-> removed conf-pkg-config.4
-> removed ocamlfind.1.9.8
-> installed cmdliner.1.0.3
-> installed conf-gmp.1
-> installed conf-pkg-config.1.0
-> installed dune.2.8.5
-> installed ocaml-compiler-libs.v0.11.0
-> installed ocamlbuild.0.14.0
-> installed ocamlfind.1.9.1
-> installed base-bytes.base
-> installed bigarray-compat.1.0.0
-> installed conf-gmp-powm-sec.1
-> installed ppx_derivers.1.0
-> installed either.1.0.0
-> installed gmap.0.3.0
-> installed macaddr.4.0.0
-> installed mmap.1.1.0
-> installed result.1.5
-> installed seq.0.2.2
-> installed stdlib-shims.0.1.0
-> installed uchar.0.0.2
-> installed sexplib0.v0.14.0
-> installed cstruct.6.0.0
-> installed base64.3.1.0
-> installed cppo.1.6.1
-> installed ocaml-migrate-parsetree.2.2.0
-> installed re.1.9.0
-> installed eqaf.0.8
-> installed num.1.0
-> installed preface.1.0.0
-> installed zarith.1.4
-> installed dune-private-libs.2.3.0
-> installed magic-mime.1.0.0
-> installed dune-configurator.2.3.0
-> installed ocplib-endian.1.0
-> installed cryptokit.1.16.1
-> installed stringext.1.4.0
-> installed mirage-crypto.0.10.4
-> installed topkg.1.0.3
-> installed yocaml.1.0.0
-> installed duration.0.1.0
-> installed rresult.0.4.0
-> installed uutf.1.0.1
-> installed mtime.1.0.0
-> installed fmt.0.8.7
-> installed lwt.5.4.0
-> installed ptime.0.8.1
-> installed domain-name.0.3.0
-> installed uri.3.0.0
-> installed jsonm.1.0.1
-> installed ipaddr.4.0.0
-> installed asn1-combinators.0.2.4
-> installed logs.0.7.0
-> installed base.v0.14.1
-> installed mirage-crypto-rng.0.10.4
-> installed ppxlib.0.22.2
-> installed mirage-crypto-pk.0.10.4
-> installed parsexp.v0.14.1
-> installed bos.0.1.0
-> installed sexplib.v0.14.0
-> installed x509.0.11.0
-> installed ca-certs.0.1.2
-> installed ppx_sexp_conv.v0.14.3
-> installed ipaddr-sexp.4.0.0
-> installed uri-sexp.3.0.0
-> installed conduit.4.0.0
-> installed cohttp.4.0.0
-> installed conduit-lwt.4.0.0
-> installed cohttp-lwt.4.0.0
-> installed conduit-lwt-unix.4.0.0
-> installed cohttp-lwt-unix.4.0.0
-> installed yocaml_unix.1.0.0
Done.
<><> ocaml-migrate-parsetree.2.2.0 installed successfully <><><><><><><><><><><>
=> Note: This package is deprecated.
<><> mirage-no-xen.1 installed successfully <><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
<><> mirage-no-solo5.1 installed successfully <><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
<><> jbuilder.1.0+beta20.1 installed successfully <><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2025-02-28 11:26.36 ---> saved as "d53f2c2f0ca8ed95c1a7dafc6864256b192bb7ffc8ea6b01e0b5d8191714b806"
Job succeeded
2025-02-28 11:26.45: Job succeeded