- github
- ocaml
- opam-repository
- 75eef3
- distributions,fedora-40-ocaml-4.14,yocaml_unix.1.0.0,tests
(not at the head of any monitored branch or PR)
2025-02-28 11:21.23: New job: test yocaml_unix.1.0.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/27506/head (75eef35b619bf9c3f461991842637fa9cca93c84)
on fedora-40-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/27506/head" && git reset --hard 75eef35b
git fetch origin master
git merge --no-edit c27f09fa9e7c90f754413780e15d13ba8c13d377
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-40-ocaml-4.14@sha256:91e5ef8d66d8636f0b31106ad7ed9266f41c33240fd74b15b20c8d91ae768b37
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 "\"fedora-40\""; 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
RUN (opam reinstall --with-test yocaml_unix.1.0.0) || true
RUN opam reinstall --with-test --verbose 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 "\"fedora-40\""; 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.23: Using cache hint "ocaml/opam:fedora-40-ocaml-4.14@sha256:91e5ef8d66d8636f0b31106ad7ed9266f41c33240fd74b15b20c8d91ae768b37-yocaml_unix.1.0.0-75eef35b619bf9c3f461991842637fa9cca93c84"
2025-02-28 11:21.23: Using OBuilder spec:
((from ocaml/opam:fedora-40-ocaml-4.14@sha256:91e5ef8d66d8636f0b31106ad7ed9266f41c33240fd74b15b20c8d91ae768b37)
(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 \"\\\"fedora-40\\\"\"; 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"))
(run (network host)
(shell "(opam reinstall --with-test yocaml_unix.1.0.0) || true"))
(run (shell "opam reinstall --with-test --verbose 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 \"\\\"fedora-40\\\"\"; 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.23: Waiting for resource in pool OCluster
2025-02-28 11:25.46: Waiting for worker…
2025-02-28 11:28.31: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
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:fedora-40-ocaml-4.14@sha256:91e5ef8d66d8636f0b31106ad7ed9266f41c33240fd74b15b20c8d91ae768b37)
2025-02-28 11:28.35 ---> using "43faa6633808e55f77fd3c7a9201696c64e4379710d47c6412f6aaad15f52b81" 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:28.35 ---> using "fbf836f6b5d870bb2df9aea9da1e711bc68507a0a4e2b341c20acc57128cd668" 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:28.35 ---> using "1457e9192caf2c0e1b0bfa081615b60df09b78d847d07de8e75e5ec4d9453c48" 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 (7f62f012239c88b3ce08e800578ca1d88e602f8a)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=fedora os-version=40
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (local), 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2025-02-28 11:28.35 ---> using "2ca24d2bb6b7033733c3787712478f4cda1a9662e88ffe62ac4dfccc8caecc44" 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:28.35 ---> using "a5b50ee29ae8b3e9067f65f706449983ab9cca16e63213e2160177630f11c5c3" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-02-28 11:28.36 ---> using "4489ab8b546c180070b27db9771f45a06644c30241753217e2b7d9c5c43bbd82" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-02-28 11:29.19 ---> saved as "b4fcd0a869207a9a743604fb3efd73120d1cd92165ad443410c988cf371f84b0"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- Fedora 40 - x86_64 167 kB/s | 27 kB 00:00
- Fedora 40 openh264 (From Cisco) - x86_64 9.4 kB/s | 989 B 00:00
- Fedora 40 - x86_64 - Updates 175 kB/s | 22 kB 00:00
- Fedora 40 - x86_64 - Updates 4.9 MB/s | 5.2 MB 00:01
- Metadata cache created.
2025-02-28 11:29.30 ---> saved as "8be5d6d250205bf6e9cf6bc00c4eafde5d262eb8b49194142ec5a58cd32e38fb"
/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:29.31 ---> saved as "3f194e651f8c06100911029e3dbced57316b8317fd3e56820f3fad3c21960201"
/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 \"\\\"fedora-40\\\"\"; 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 70 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.16.3 [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-bash 1 [required by base]
- 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 2.0.0 [required by ca-certs]
- install mirage-crypto-ec 2.0.0 [required by x509]
- install mirage-crypto-pk 2.0.0 [required by x509]
- install mirage-crypto-rng 2.0.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.16.0 [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.16.0 [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:
gmp-devel zlib-ng-compat-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
2. Display the recommended yum 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 "yum" "install" "-y" "gmp-devel" "zlib-ng-compat-devel"
- Last metadata expiration check: 0:00:23 ago on Fri Feb 28 11:29:21 2025.
- Dependencies resolved.
- ================================================================================
- Package Arch Version Repository Size
- ================================================================================
- Installing:
- gmp-devel x86_64 1:6.2.1-8.fc40 fedora 173 k
- zlib-ng-compat-devel x86_64 2.1.7-2.fc40 updates 38 k
- Installing dependencies:
- cmake-filesystem x86_64 3.30.7-1.fc40 updates 17 k
- gmp-c++ x86_64 1:6.2.1-8.fc40 fedora 18 k
-
- Transaction Summary
- ================================================================================
- Install 4 Packages
-
- Total download size: 246 k
- Installed size: 489 k
- Downloading Packages:
- (1/4): cmake-filesystem-3.30.7-1.fc40.x86_64.rp 252 kB/s | 17 kB 00:00
- (2/4): gmp-c++-6.2.1-8.fc40.x86_64.rpm 224 kB/s | 18 kB 00:00
- (3/4): zlib-ng-compat-devel-2.1.7-2.fc40.x86_64 2.3 MB/s | 38 kB 00:00
- (4/4): gmp-devel-6.2.1-8.fc40.x86_64.rpm 1.5 MB/s | 173 kB 00:00
- --------------------------------------------------------------------------------
- Total 660 kB/s | 246 kB 00:00
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
- Preparing : 1/1
- Installing : cmake-filesystem-3.30.7-1.fc40.x86_64 1/4
- Installing : gmp-c++-1:6.2.1-8.fc40.x86_64 2/4
- Installing : gmp-devel-1:6.2.1-8.fc40.x86_64 3/4
- Installing : zlib-ng-compat-devel-2.1.7-2.fc40.x86_64 4/4
- Running scriptlet: zlib-ng-compat-devel-2.1.7-2.fc40.x86_64 4/4
-
- Installed:
- cmake-filesystem-3.30.7-1.fc40.x86_64
- gmp-c++-1:6.2.1-8.fc40.x86_64
- gmp-devel-1:6.2.1-8.fc40.x86_64
- zlib-ng-compat-devel-2.1.7-2.fc40.x86_64
-
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "gmp-devel" "zlib-ng-compat-devel"
- gmp-devel-6.2.1-8.fc40.x86_64
- zlib-ng-compat-devel-2.1.7-2.fc40.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved asn1-combinators.0.3.2 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved base.v0.16.3 (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-bash.1
-> installed conf-gmp.4
-> installed conf-pkg-config.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.2.0.0, mirage-crypto-ec.2.0.0, mirage-crypto-pk.2.0.0, mirage-crypto-rng.2.0.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.16.0 (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.16.0 (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.16.0
-> 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.2.0.0
-> installed cryptokit.1.20
-> installed kdf.1.0.0
-> installed lwt.5.9.0
-> installed uri.4.4.0
-> installed logs.0.7.0
-> installed mirage-crypto-rng.2.0.0
-> installed base.v0.16.3
-> installed mirage-crypto-pk.2.0.0
-> installed bos.0.2.1
-> installed mirage-crypto-ec.2.0.0
-> installed x509.1.0.5
-> installed ppxlib.0.35.0
-> installed ca-certs.1.0.0
-> installed ppx_sexp_conv.v0.16.0
-> 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:30.59 ---> saved as "0dffca9ed1d4898adb2594d2974739707b0e007d3c15c3797d354f3d7146695e"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test yocaml_unix.1.0.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile yocaml_unix 1.0.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed yocaml_unix.1.0.0
-> installed yocaml_unix.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-28 11:31.09 ---> saved as "67b41e19fa3be18a718174c764d1058896f8e8bcbeb57b9cbb16d8afcb2219f7"
/home/opam: (run (shell "opam reinstall --with-test --verbose 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 \"\\\"fedora-40\\\"\"; 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:
=== recompile 1 package
- recompile yocaml_unix 1.0.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [yocaml_unix: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "yocaml_unix" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/yocaml_unix.1.0.0)
Processing 2/4: [yocaml_unix: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "yocaml_unix" (CWD=/home/opam/.opam/4.14/.opam-switch/build/yocaml_unix.1.0.0)
-> compiled yocaml_unix.1.0.0
-> removed yocaml_unix.1.0.0
-> installed yocaml_unix.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-28 11:31.20 ---> saved as "42a33f4861143a4ba40808d849c714984dca730fbca850e686a1c518578483c8"
Job succeeded
2025-02-28 11:31.26: Job succeeded