Build:
- 0
2026-03-11 09:12.19: New job: test rdf_lwt.1.2.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29537/head (150fd0172e6e8784bf77cbba212270cff708cb7d)
on centos-9-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/29537/head" && git reset --hard 150fd017
git fetch origin master
git merge --no-edit 3c0d72031e829cf7ddad3a74f39a8b01fe2bf302
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-9-ocaml-5.4@sha256:d33cd8f3809725736692b00c3a83e85feb195d6a56e0dd75247e09e431a4a856
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 rdf_lwt.1.2.0 1.2.0
RUN opam reinstall rdf_lwt.1.2.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 "\"centos-9\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'rdf_lwt.1.2.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 rdf_lwt.1.2.0) || true
RUN opam reinstall --with-test --verbose rdf_lwt.1.2.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 "\"centos-9\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'rdf_lwt.1.2.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-03-11 09:12.19: Using cache hint "ocaml/opam:centos-9-ocaml-5.4@sha256:d33cd8f3809725736692b00c3a83e85feb195d6a56e0dd75247e09e431a4a856-rdf_lwt.1.2.0-150fd0172e6e8784bf77cbba212270cff708cb7d"
2026-03-11 09:12.19: Using OBuilder spec:
((from ocaml/opam:centos-9-ocaml-5.4@sha256:d33cd8f3809725736692b00c3a83e85feb195d6a56e0dd75247e09e431a4a856)
(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 rdf_lwt.1.2.0 1.2.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall rdf_lwt.1.2.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 \"\\\"centos-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'rdf_lwt.1.2.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 rdf_lwt.1.2.0) || true"))
(run (shell "opam reinstall --with-test --verbose rdf_lwt.1.2.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 \"\\\"centos-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'rdf_lwt.1.2.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-03-11 09:12.19: Waiting for resource in pool OCluster
2026-03-11 12:14.18: Waiting for worker…
2026-03-11 12:16.42: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 3c0d72031e Merge pull request #29534 from filipeom/opam-publish-smtml.0.23.0
Updating 3c0d72031e..150fd0172e
Fast-forward
packages/rdf/rdf.1.2.0/opam | 51 +++++++++++++++++++++++
packages/rdf_impls/rdf_impls.1.2.0/opam | 39 +++++++++++++++++
packages/rdf_json_ld/rdf_json_ld.1.2.0/opam | 40 ++++++++++++++++++
packages/rdf_lwt/rdf_lwt.1.2.0/opam | 39 +++++++++++++++++
packages/rdf_mysql/rdf_mysql.1.2.0/opam | 37 ++++++++++++++++
packages/rdf_postgresql/rdf_postgresql.1.2.0/opam | 37 ++++++++++++++++
packages/rdf_ppx/rdf_ppx.1.2.0/opam | 37 ++++++++++++++++
packages/rdf_rdfa/rdf_rdfa.1.2.0/opam | 36 ++++++++++++++++
8 files changed, 316 insertions(+)
create mode 100644 packages/rdf/rdf.1.2.0/opam
create mode 100644 packages/rdf_impls/rdf_impls.1.2.0/opam
create mode 100644 packages/rdf_json_ld/rdf_json_ld.1.2.0/opam
create mode 100644 packages/rdf_lwt/rdf_lwt.1.2.0/opam
create mode 100644 packages/rdf_mysql/rdf_mysql.1.2.0/opam
create mode 100644 packages/rdf_postgresql/rdf_postgresql.1.2.0/opam
create mode 100644 packages/rdf_ppx/rdf_ppx.1.2.0/opam
create mode 100644 packages/rdf_rdfa/rdf_rdfa.1.2.0/opam
(from ocaml/opam:centos-9-ocaml-5.4@sha256:d33cd8f3809725736692b00c3a83e85feb195d6a56e0dd75247e09e431a4a856)
2026-03-11 12:17.08 ---> saved as "4762cf358287d530eb90170aa25b01b6f28f72eee32421a7ce7e5f0f9c30f619"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-11 12:17.08 ---> saved as "aa5050d7b817bcc3bd129dac3c24e616babb35fc2d5ed49896862795fda4639c"
/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.
[NOTE] The 'jobs' option was reset, its value was 71 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=71 --global
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-11 12:17.30 ---> saved as "5d07f6d2cd3eca72910758ad77a939b508a535065bf976976031d8b04664a824"
/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=centos os-version=9
# 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-03-11 12:17.31 ---> saved as "a21939b4dac471cbccbc2c1eac301cefbfc2f73cb8ac9d26ca3b1d968e9f7609"
/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-11 12:17.42 ---> saved as "02cf26fa4df0c938a5060afb2f4b0425431ca46b919698a71dc53fcd09dfeb9f"
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-11 12:17.48 ---> saved as "cddb8fcc38c38e070530b51952a11e9e76d5f66ee8db68b1efc33380be66f8b4"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-11 12:18.07 ---> saved as "5a88ccdf2c576065704514a4b4db101438ecf5fb1cace1c11933757a9ec0c21c"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 9 - BaseOS 70 kB/s | 15 kB 00:00
- CentOS Stream 9 - BaseOS 11 MB/s | 8.9 MB 00:00
- CentOS Stream 9 - AppStream 111 kB/s | 15 kB 00:00
- CentOS Stream 9 - AppStream 12 MB/s | 27 MB 00:02
- CentOS Stream 9 - CRB 108 kB/s | 14 kB 00:00
- CentOS Stream 9 - CRB 11 MB/s | 8.0 MB 00:00
- CentOS Stream 9 - Extras packages 122 kB/s | 16 kB 00:00
- CentOS Stream 9 - Extras packages 114 kB/s | 20 kB 00:00
- Metadata cache created.
2026-03-11 12:18.22 ---> saved as "28586e088cfa5dd86b6e89d287bc70690d6e38e5c4e12398c5997ee662c4e0d0"
/home/opam: (run (shell "opam pin add -k version -yn rdf_lwt.1.2.0 1.2.0"))
rdf_lwt is now pinned to version 1.2.0
2026-03-11 12:18.22 ---> saved as "ec6fb4fe154164b63c0501f1fafec924648426b305e6f58e6db3b3bfb84fe0aa"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall rdf_lwt.1.2.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 \"\\\"centos-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'rdf_lwt.1.2.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
rdf_lwt.1.2.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 93 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_sexp_conv]
- install base-bytes base [required by ocplib-endian]
- 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 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 rdf_lwt]
- 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-gmp 5 [required by conf-gmp-powm-sec, zarith]
- install conf-gmp-powm-sec 4 [required by mirage-crypto-pk]
- install conf-libpcre 2 [required by pcre]
- install conf-pkg-config 4 [required by conf-libpcre]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.2.0 [required by hex]
- 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 rdf_lwt]
- install dune-build-info 3.21.1 [required by rdf]
- install dune-compiledb 0.6.0 [required by pcre]
- install dune-configurator 3.21.1 [required by pcre]
- install duration 0.2.1 [required by mirage-crypto-rng]
- install eqaf 0.10 [required by digestif, mirage-crypto]
- install ezjsonm 1.3.0 [required by dune-compiledb]
- install fmt 0.11.0 [required by cohttp-lwt-unix, rdf]
- install fpath 0.7.3 [required by ca-certs, dune-compiledb]
- install gen 1.1 [required by sedlex]
- install gmap 0.3.0 [required by x509]
- install hex 1.5.0 [required by ezjsonm]
- install http 6.2.1 [required by cohttp-lwt-unix]
- install ipaddr 5.6.2 [required by cohttp-lwt, cohttp, conduit-lwt-unix]
- install ipaddr-sexp 5.6.2 [required by conduit-lwt-unix]
- install iri 1.2.0 [required by rdf]
- install jsonm 1.0.2 [required by rdf]
- install kdf 1.0.0 [required by x509]
- install logs 0.10.0 [required by cohttp-lwt-unix, rdf]
- install lwt 6.1.1 [required by rdf_lwt]
- install lwt_ppx 6.1.0 [required by rdf_lwt]
- install macaddr 5.6.2 [required by ipaddr]
- install magic-mime 1.3.1 [required by cohttp-lwt-unix]
- install menhir 20260209 [required by rdf]
- install menhirCST 20260209 [required by menhir]
- install menhirGLR 20260209 [required by menhir]
- install menhirLib 20260209 [required by menhir]
- install menhirSdk 20260209 [required by menhir]
- 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 ppxlib]
- 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 uuidm, jsonm, uucp, xmlm]
- install ocamlfind 1.9.8 [required by uuidm, jsonm, uucp, xmlm]
- install ocplib-endian 1.2 [required by lwt]
- install ohex 0.2.0 [required by ca-certs]
- install parsexp v0.17.0 [required by sexplib]
- install pcre 8.0.5 [required by rdf]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppx_sexp_conv v0.17.1 [required by cohttp-lwt-unix]
- install ppxlib 0.37.0 [required by lwt_ppx]
- install ppxlib_jane v0.17.4 [required by ppx_sexp_conv]
- install ptime 1.2.0 [required by rdf]
- install rdf 1.2.0 [required by rdf_lwt]
- install rdf_lwt 1.2.0 (pinned)
- install re 1.14.0 [required by rdf]
- install rresult 0.7.0 [required by bos]
- install sedlex 3.7 [required by rdf]
- install seq base [required by gen]
- install sexplib v0.17.0 [required by dune-compiledb]
- install sexplib0 v0.17.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.1.1 [required by uuidm, jsonm, uucp, xmlm]
- install uri 4.4.0 [required by rdf]
- install uri-sexp 4.4.0 [required by cohttp]
- install uucp 17.0.0 [required by rdf]
- install uuidm 0.9.10 [required by rdf]
- install uunf 17.0.0 [required by iri, uucp]
- install uutf 1.0.4 [required by rdf]
- install x509 1.0.6 [required by ca-certs]
- install xmlm 1.4.0 [required by rdf]
- install yojson 3.0.0 [required by rdf]
- install zarith 1.14 [required by mirage-crypto-pk]
The following system packages will first need to be installed:
gmp-devel pcre-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" "pcre-devel"
- Last metadata expiration check: 0:00:05 ago on Wed Mar 11 12:18:20 2026.
- Dependencies resolved.
- ================================================================================
- Package Architecture Version Repository Size
- ================================================================================
- Installing:
- gmp-devel x86_64 1:6.2.0-13.el9 appstream 174 k
- pcre-devel x86_64 8.44-4.el9 appstream 506 k
- Installing dependencies:
- gmp-c++ x86_64 1:6.2.0-13.el9 appstream 19 k
- pcre-cpp x86_64 8.44-4.el9 appstream 26 k
- pcre-utf16 x86_64 8.44-4.el9 appstream 184 k
- pcre-utf32 x86_64 8.44-4.el9 appstream 174 k
-
- Transaction Summary
- ================================================================================
- Install 6 Packages
-
- Total download size: 1.1 M
- Installed size: 3.0 M
- Downloading Packages:
- (1/6): gmp-c++-6.2.0-13.el9.x86_64.rpm 367 kB/s | 19 kB 00:00
- (2/6): pcre-cpp-8.44-4.el9.x86_64.rpm 228 kB/s | 26 kB 00:00
- (3/6): gmp-devel-6.2.0-13.el9.x86_64.rpm 1.1 MB/s | 174 kB 00:00
- (4/6): pcre-devel-8.44-4.el9.x86_64.rpm 3.5 MB/s | 506 kB 00:00
- (5/6): pcre-utf32-8.44-4.el9.x86_64.rpm 2.0 MB/s | 174 kB 00:00
- (6/6): pcre-utf16-8.44-4.el9.x86_64.rpm 973 kB/s | 184 kB 00:00
- --------------------------------------------------------------------------------
- Total 2.4 MB/s | 1.1 MB 00:00
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
- Preparing : 1/1
-
- Installing : pcre-utf32-8.44-4.el9.x86_64 1/6
- Installing : pcre-utf16-8.44-4.el9.x86_64 2/6
- Installing : pcre-cpp-8.44-4.el9.x86_64 3/6
- Installing : gmp-c++-1:6.2.0-13.el9.x86_64 4/6
- Installing : gmp-devel-1:6.2.0-13.el9.x86_64 5/6
- Installing : pcre-devel-8.44-4.el9.x86_64 6/6
- Running scriptlet: pcre-devel-8.44-4.el9.x86_64 6/6
- Verifying : gmp-c++-1:6.2.0-13.el9.x86_64 1/6
- Verifying : gmp-devel-1:6.2.0-13.el9.x86_64 2/6
- Verifying : pcre-cpp-8.44-4.el9.x86_64 3/6
- Verifying : pcre-devel-8.44-4.el9.x86_64 4/6
- Verifying : pcre-utf16-8.44-4.el9.x86_64 5/6
- Verifying : pcre-utf32-8.44-4.el9.x86_64 6/6
-
- Installed:
- gmp-c++-1:6.2.0-13.el9.x86_64 gmp-devel-1:6.2.0-13.el9.x86_64
- pcre-cpp-8.44-4.el9.x86_64 pcre-devel-8.44-4.el9.x86_64
- pcre-utf16-8.44-4.el9.x86_64 pcre-utf32-8.44-4.el9.x86_64
-
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "gmp-devel" "pcre-devel"
- gmp-devel-6.2.0-13.el9.x86_64
- pcre-devel-8.44-4.el9.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.17.3 (cached)
-> retrieved base64.3.5.2 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved ca-certs.1.0.1 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved cohttp.6.2.1, cohttp-lwt.6.2.1, cohttp-lwt-unix.6.2.1, http.6.2.1 (cached)
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-gmp-powm-sec.4 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved cstruct.6.2.0 (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> installed conf-libpcre.2
-> installed conf-gmp-powm-sec.4
-> retrieved digestif.1.3.0 (cached)
-> retrieved domain-name.0.5.0 (cached)
-> retrieved dune.3.21.1, dune-build-info.3.21.1, dune-configurator.3.21.1 (cached)
-> retrieved dune-compiledb.0.6.0 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved ezjsonm.1.3.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved gen.1.1 (cached)
-> retrieved gmap.0.3.0 (cached)
-> retrieved hex.1.5.0 (cached)
-> retrieved ipaddr.5.6.2, ipaddr-sexp.5.6.2, macaddr.5.6.2 (cached)
-> retrieved iri.1.2.0 (cached)
-> retrieved jsonm.1.0.2 (cached)
-> retrieved kdf.1.0.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt.6.1.1 (cached)
-> installed cmdliner.2.1.0
-> retrieved lwt_ppx.6.1.0 (cached)
-> retrieved magic-mime.1.3.1 (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (cached)
-> retrieved mirage-crypto.2.0.3, mirage-crypto-ec.2.0.3, mirage-crypto-pk.2.0.3, mirage-crypto-rng.2.0.3 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1 (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 parsexp.v0.17.0 (cached)
-> retrieved pcre.8.0.5 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_sexp_conv.v0.17.1 (cached)
-> retrieved ppxlib.0.37.0 (cached)
-> retrieved ppxlib_jane.v0.17.4 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved rdf.1.2.0, rdf_lwt.1.2.0 (cached)
-> installed num.1.6
-> retrieved re.1.14.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved sedlex.3.7 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib.v0.17.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0 (cached)
-> retrieved uucp.17.0.0 (cached)
-> retrieved uuidm.0.9.10 (cached)
-> retrieved uunf.17.0.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved x509.1.0.6 (cached)
-> retrieved xmlm.1.4.0 (cached)
-> retrieved yojson.3.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.1.1
-> installed rresult.0.7.0
-> installed uuidm.0.9.10
-> installed uutf.1.0.4
-> installed xmlm.1.4.0
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed uunf.17.0.0
-> installed dune.3.21.1
-> installed asn1-combinators.0.3.2
-> installed base64.3.5.2
-> installed cppo.1.8.0
-> installed csexp.1.5.2
-> installed cstruct.6.2.0
-> installed domain-name.0.5.0
-> installed duration.0.2.1
-> installed eqaf.0.10
-> installed gen.1.1
-> installed gmap.0.3.0
-> installed http.6.2.1
-> installed macaddr.5.6.2
-> installed magic-mime.1.3.1
-> installed menhirCST.20260209
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ohex.0.2.0
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed yojson.3.0.0
-> installed ocplib-endian.1.2
-> installed hex.1.5.0
-> installed ipaddr.5.6.2
-> installed digestif.1.3.0
-> installed ezjsonm.1.3.0
-> installed dune-build-info.3.21.1
-> installed parsexp.v0.17.0
-> installed dune-configurator.3.21.1
-> installed bigstringaf.0.10.0
-> installed sexplib.v0.17.0
-> installed angstrom.0.16.1
-> installed dune-compiledb.0.6.0
-> installed mirage-crypto.2.0.3
-> installed kdf.1.0.0
-> installed pcre.8.0.5
-> installed uri.4.4.0
-> installed lwt.6.1.1
-> installed logs.0.10.0
-> installed menhir.20260209
-> installed mirage-crypto-rng.2.0.3
-> installed base.v0.17.3
-> installed mirage-crypto-pk.2.0.3
-> installed bos.0.2.1
-> installed mirage-crypto-ec.2.0.3
-> installed x509.1.0.6
-> installed ppxlib.0.37.0
-> installed ca-certs.1.0.1
-> installed ppxlib_jane.v0.17.4
-> installed lwt_ppx.6.1.0
-> installed uucp.17.0.0
-> installed sedlex.3.7
-> installed ppx_sexp_conv.v0.17.1
-> installed iri.1.2.0
-> installed ipaddr-sexp.5.6.2
-> installed uri-sexp.4.4.0
-> installed conduit.8.0.0
-> installed cohttp.6.2.1
-> installed conduit-lwt.8.0.0
-> installed cohttp-lwt.6.2.1
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt-unix.6.2.1
-> installed rdf.1.2.0
-> installed rdf_lwt.1.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-11 12:19.30 ---> saved as "f067cb8a5a692441fdc030475d329c8de00a392d7e9a81a55dbda0f869c070b1"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test rdf_lwt.1.2.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile rdf_lwt 1.2.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed rdf_lwt.1.2.0
-> installed rdf_lwt.1.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-11 12:19.35 ---> saved as "9e38cea3eed5b5551a71e540510708b1ad6ea29d4f4fc5885ebd37e91bd38e2a"
/home/opam: (run (shell "opam reinstall --with-test --verbose rdf_lwt.1.2.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 \"\\\"centos-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'rdf_lwt.1.2.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 rdf_lwt 1.2.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [rdf_lwt: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "rdf_lwt" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/rdf_lwt.1.2.0)
-> compiled rdf_lwt.1.2.0
-> removed rdf_lwt.1.2.0
-> installed rdf_lwt.1.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-11 12:19.40 ---> saved as "4f41ead9c6282aaf41c3a33a2c52b6ca413bac83eee3676905c45e723345e2c4"
Job succeeded
2026-03-11 12:19.46: Job succeeded