- github
- ocaml
- opam-repository
- e5c850
- distributions,centos-10-ocaml-5.4,diffast-langs-cpp.0.3.6,tests
(not at the head of any monitored branch or PR)
2025-11-17 05:49.42: New job: test diffast-langs-cpp.0.3.6, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/28911/head (e5c850a73cee18c61dff7201a56d1bf8cbe84151)
on centos-10-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/28911/head" && git reset --hard e5c850a7
git fetch origin master
git merge --no-edit 1c92c86556d4b9c73229d94763be9715317321bc
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-10-ocaml-5.4@sha256:3cc449491ffc45a386b6cd4356cbe813923819d5b981799349c3e43e9e84d835
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 diffast-langs-cpp.0.3.6 0.3.6
RUN opam reinstall diffast-langs-cpp.0.3.6; \
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-10\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'diffast-langs-cpp.0.3.6' && 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 diffast-langs-cpp.0.3.6) || true
RUN opam reinstall --with-test --verbose diffast-langs-cpp.0.3.6; \
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-10\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'diffast-langs-cpp.0.3.6' && 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-11-17 05:49.42: Using cache hint "ocaml/opam:centos-10-ocaml-5.4@sha256:3cc449491ffc45a386b6cd4356cbe813923819d5b981799349c3e43e9e84d835-diffast-langs-cpp.0.3.6-e5c850a73cee18c61dff7201a56d1bf8cbe84151"
2025-11-17 05:49.42: Using OBuilder spec:
((from ocaml/opam:centos-10-ocaml-5.4@sha256:3cc449491ffc45a386b6cd4356cbe813923819d5b981799349c3e43e9e84d835)
(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 diffast-langs-cpp.0.3.6 0.3.6"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall diffast-langs-cpp.0.3.6;\
\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-10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'diffast-langs-cpp.0.3.6' && 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 diffast-langs-cpp.0.3.6) || true"))
(run (shell "opam reinstall --with-test --verbose diffast-langs-cpp.0.3.6;\
\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-10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'diffast-langs-cpp.0.3.6' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-11-17 05:49.42: Waiting for resource in pool OCluster
2025-11-17 06:46.56: Waiting for worker…
2025-11-17 06:54.09: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
HEAD is now at 1c92c86556 Merge pull request #28847 from nikochiko/opam-publish-raga.0.1.0
Updating 1c92c86556..e5c850a73c
Fast-forward
packages/diffast-api/diffast-api.0.3.6/opam | 50 ++++++++++++++++
packages/diffast-cli/diffast-cli.0.3.6/opam | 52 ++++++++++++++++
packages/diffast-core/diffast-core.0.3.6/opam | 57 ++++++++++++++++++
packages/diffast-etc/diffast-etc.0.3.6/opam | 47 +++++++++++++++
.../diffast-git-cli/diffast-git-cli.0.3.6/opam | 57 ++++++++++++++++++
packages/diffast-git/diffast-git.0.3.6/opam | 50 ++++++++++++++++
.../diffast-langs-common.0.3.6/opam | 52 ++++++++++++++++
.../diffast-langs-cpp-parsing-cli.0.3.6/opam | 50 ++++++++++++++++
.../diffast-langs-cpp-parsing.0.3.6/opam | 52 ++++++++++++++++
.../diffast-langs-cpp-spec.0.3.6/opam | 50 ++++++++++++++++
.../diffast-langs-cpp/diffast-langs-cpp.0.3.6/opam | 53 ++++++++++++++++
.../diffast-langs-fortran-parsing-cli.0.3.6/opam | 49 +++++++++++++++
.../diffast-langs-fortran-parsing.0.3.6/opam | 52 ++++++++++++++++
.../diffast-langs-fortran-spec.0.3.6/opam | 50 ++++++++++++++++
.../diffast-langs-fortran.0.3.6/opam | 53 ++++++++++++++++
.../diffast-langs-java-parsing-cli.0.3.6/opam | 49 +++++++++++++++
.../diffast-langs-java-parsing.0.3.6/opam | 52 ++++++++++++++++
.../diffast-langs-java-spec.0.3.6/opam | 50 ++++++++++++++++
.../diffast-langs-java.0.3.6/opam | 53 ++++++++++++++++
.../diffast-langs-python-parsing-cli.0.3.6/opam | 49 +++++++++++++++
.../diffast-langs-python-parsing.0.3.6/opam | 52 ++++++++++++++++
.../diffast-langs-python-spec.0.3.6/opam | 50 ++++++++++++++++
.../diffast-langs-python.0.3.6/opam | 53 ++++++++++++++++
.../diffast-langs-verilog-parsing-cli.0.3.6/opam | 49 +++++++++++++++
.../diffast-langs-verilog-parsing.0.3.6/opam | 52 ++++++++++++++++
.../diffast-langs-verilog-spec.0.3.6/opam | 50 ++++++++++++++++
.../diffast-langs-verilog.0.3.6/opam | 53 ++++++++++++++++
packages/diffast-misc/diffast-misc.0.3.6/opam | 52 ++++++++++++++++
packages/diffast/diffast.0.3.6/opam | 70 ++++++++++++++++++++++
29 files changed, 1508 insertions(+)
create mode 100644 packages/diffast-api/diffast-api.0.3.6/opam
create mode 100644 packages/diffast-cli/diffast-cli.0.3.6/opam
create mode 100644 packages/diffast-core/diffast-core.0.3.6/opam
create mode 100644 packages/diffast-etc/diffast-etc.0.3.6/opam
create mode 100644 packages/diffast-git-cli/diffast-git-cli.0.3.6/opam
create mode 100644 packages/diffast-git/diffast-git.0.3.6/opam
create mode 100644 packages/diffast-langs-common/diffast-langs-common.0.3.6/opam
create mode 100644 packages/diffast-langs-cpp-parsing-cli/diffast-langs-cpp-parsing-cli.0.3.6/opam
create mode 100644 packages/diffast-langs-cpp-parsing/diffast-langs-cpp-parsing.0.3.6/opam
create mode 100644 packages/diffast-langs-cpp-spec/diffast-langs-cpp-spec.0.3.6/opam
create mode 100644 packages/diffast-langs-cpp/diffast-langs-cpp.0.3.6/opam
create mode 100644 packages/diffast-langs-fortran-parsing-cli/diffast-langs-fortran-parsing-cli.0.3.6/opam
create mode 100644 packages/diffast-langs-fortran-parsing/diffast-langs-fortran-parsing.0.3.6/opam
create mode 100644 packages/diffast-langs-fortran-spec/diffast-langs-fortran-spec.0.3.6/opam
create mode 100644 packages/diffast-langs-fortran/diffast-langs-fortran.0.3.6/opam
create mode 100644 packages/diffast-langs-java-parsing-cli/diffast-langs-java-parsing-cli.0.3.6/opam
create mode 100644 packages/diffast-langs-java-parsing/diffast-langs-java-parsing.0.3.6/opam
create mode 100644 packages/diffast-langs-java-spec/diffast-langs-java-spec.0.3.6/opam
create mode 100644 packages/diffast-langs-java/diffast-langs-java.0.3.6/opam
create mode 100644 packages/diffast-langs-python-parsing-cli/diffast-langs-python-parsing-cli.0.3.6/opam
create mode 100644 packages/diffast-langs-python-parsing/diffast-langs-python-parsing.0.3.6/opam
create mode 100644 packages/diffast-langs-python-spec/diffast-langs-python-spec.0.3.6/opam
create mode 100644 packages/diffast-langs-python/diffast-langs-python.0.3.6/opam
create mode 100644 packages/diffast-langs-verilog-parsing-cli/diffast-langs-verilog-parsing-cli.0.3.6/opam
create mode 100644 packages/diffast-langs-verilog-parsing/diffast-langs-verilog-parsing.0.3.6/opam
create mode 100644 packages/diffast-langs-verilog-spec/diffast-langs-verilog-spec.0.3.6/opam
create mode 100644 packages/diffast-langs-verilog/diffast-langs-verilog.0.3.6/opam
create mode 100644 packages/diffast-misc/diffast-misc.0.3.6/opam
create mode 100644 packages/diffast/diffast.0.3.6/opam
(from ocaml/opam:centos-10-ocaml-5.4@sha256:3cc449491ffc45a386b6cd4356cbe813923819d5b981799349c3e43e9e84d835)
2025-11-17 06:55.15 ---> saved as "275803657a723e1cf6524419ec3c46dba90342ac8a940de550ed232a49f8ac29"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-11-17 06:55.16 ---> saved as "7d3070d47660dc2d9c74124ad592d5b815f6225f62fa0f19028472c108413521"
/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
2025-11-17 06:55.50 ---> saved as "356baa6c51fa98270da57464d178af840937f938dbf866e103aadc7add582387"
/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~alpha1
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=centos os-version=10
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2025-11-17 06:55.51 ---> saved as "202299d1b26820b7fdfe0d09d87a060e9197865b4cdeb05cdc9bd193605d0b78"
/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-11-17 06:56.04 ---> saved as "222e9f61bde3afcdcd75f1f0d867844b2826184d64ddd057d64703bd9566e156"
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-17 06:56.17 ---> saved as "3680e6827b28a996fa493de4b35b726738ba5309d626a0335d61156d0f6357be"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-17 06:56.37 ---> saved as "17963210bec40f0b390b47a11486e0b54bf582a2e625511654b6103f52a2e68e"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 10 - BaseOS 118 kB/s | 15 kB 00:00
- CentOS Stream 10 - BaseOS 8.6 MB/s | 6.8 MB 00:00
- CentOS Stream 10 - AppStream 131 kB/s | 15 kB 00:00
- CentOS Stream 10 - AppStream 8.0 MB/s | 3.4 MB 00:00
- CentOS Stream 10 - CRB 122 kB/s | 14 kB 00:00
- CentOS Stream 10 - CRB 3.6 MB/s | 761 kB 00:00
- CentOS Stream 10 - Extras packages 147 kB/s | 16 kB 00:00
- Metadata cache created.
2025-11-17 06:56.43 ---> saved as "fb20ca3067f7edd5cad1063a24811aa63fca3d97a2f2f72e39356968b61af3f0"
/home/opam: (run (shell "opam pin add -k version -yn diffast-langs-cpp.0.3.6 0.3.6"))
diffast-langs-cpp is now pinned to version 0.3.6
2025-11-17 06:56.44 ---> saved as "8aebaae46090befda02da9dfe00c90bd04879252d60368e80ce3a97d4d273321"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall diffast-langs-cpp.0.3.6;\
\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-10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'diffast-langs-cpp.0.3.6' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
diffast-langs-cpp.0.3.6 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 47 packages
- install base-bytes base [required by csv]
- install base64 3.5.2 [required by diffast-core]
- install bytesrw 0.3.0 [required by diffast-misc]
- install camlp-streams 5.0.1 [required by diffast-core, diffast-langs-cpp-parsing]
- install conf-gmp 5 [required by conf-gmp-powm-sec, zarith]
- install conf-gmp-powm-sec 4 [required by cryptokit]
- install conf-pkg-config 4 [required by bytesrw]
- install conf-zlib 1 [required by bytesrw, cryptokit]
- install cppo 1.8.0 [required by diffast-langs-common]
- install cryptokit 1.20 [required by diffast-misc]
- install csexp 1.5.2 [required by dune-private-libs]
- install csv 2.4 [required by diffast-core]
- install diffast-core 0.3.6 [required by diffast-langs-cpp]
- install diffast-langs-common 0.3.6 [required by diffast-langs-cpp-parsing]
- install diffast-langs-cpp 0.3.6 (pinned)
- install diffast-langs-cpp-parsing 0.3.6 [required by diffast-langs-cpp]
- install diffast-langs-cpp-spec 0.3.6 [required by diffast-langs-cpp]
- install diffast-misc 0.3.6 [required by diffast-langs-cpp]
- install dune 3.20.2 [required by diffast-langs-cpp]
- install dune-configurator 3.20.2 [required by cryptokit]
- install dune-private-libs 3.20.2 [required by dune-site]
- install dune-site 3.20.2 [required by diffast-langs-cpp]
- install dyn 3.20.2 [required by dune-private-libs]
- install gen 1.1 [required by sedlex]
- install markup 1.0.3 [required by diffast-misc]
- install menhir 20250912 [required by diffast-core, diffast-langs-cpp-parsing]
- install menhirCST 20250912 [required by menhir]
- install menhirLib 20250912 [required by menhir, diffast-langs-common]
- install menhirSdk 20250912 [required by menhir]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocamlbuild 0.16.1 [required by uuidm]
- install ocamlfind 1.9.8 [required by uuidm]
- install ordering 3.20.2 [required by dyn, stdune]
- install pp 2.0.0 [required by dune-private-libs]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.37.0 [required by sedlex]
- install sedlex 3.7 [required by diffast-core, diffast-langs-cpp-parsing]
- install seq base [required by gen]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install stdune 3.20.2 [required by dune-private-libs]
- install topkg 1.1.1 [required by uuidm]
- install uchar 0.0.2 [required by markup]
- install uuidm 0.9.10 [required by diffast-core]
- install uutf 1.0.4 [required by markup]
- install vlt 0.2.5 [required by diffast-langs-cpp]
- install zarith 1.14 [required by cryptokit]
The following system packages will first need to be installed:
gmp-devel zlib-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-devel"
- Last metadata expiration check: 0:00:06 ago on Mon Nov 17 06:56:42 2025.
- Package zlib-ng-compat-devel-2.2.3-2.el10.x86_64 is already installed.
- Dependencies resolved.
- ================================================================================
- Package Architecture Version Repository Size
- ================================================================================
- Installing:
- gmp-devel x86_64 1:6.2.1-12.el10 appstream 174 k
- Installing dependencies:
- gmp-c++ x86_64 1:6.2.1-12.el10 appstream 20 k
-
- Transaction Summary
- ================================================================================
- Install 2 Packages
-
- Total download size: 194 k
- Installed size: 382 k
- Downloading Packages:
- (1/2): gmp-c++-6.2.1-12.el10.x86_64.rpm 886 kB/s | 20 kB 00:00
- (2/2): gmp-devel-6.2.1-12.el10.x86_64.rpm 4.7 MB/s | 174 kB 00:00
- --------------------------------------------------------------------------------
- Total 1.2 MB/s | 194 kB 00:00
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
- Preparing : 1/1
- Installing : gmp-c++-1:6.2.1-12.el10.x86_64 1/2
- Installing : gmp-devel-1:6.2.1-12.el10.x86_64 2/2
- Running scriptlet: gmp-devel-1:6.2.1-12.el10.x86_64 2/2
-
- Installed:
- gmp-c++-1:6.2.1-12.el10.x86_64 gmp-devel-1:6.2.1-12.el10.x86_64
-
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "gmp-devel" "zlib-devel"
- gmp-devel-6.2.1-12.el10.x86_64
- zlib-ng-compat-devel-2.2.3-2.el10.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base64.3.5.2 (cached)
-> retrieved bytesrw.0.3.0 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-gmp-powm-sec.4 (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.5
-> retrieved csv.2.4 (cached)
-> installed conf-zlib.1
-> installed conf-gmp-powm-sec.4
-> retrieved diffast-core.0.3.6, diffast-langs-common.0.3.6, diffast-langs-cpp.0.3.6, diffast-langs-cpp-parsing.0.3.6, diffast-langs-cpp-spec.0.3.6, diffast-misc.0.3.6 (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2, dune-private-libs.3.20.2, dune-site.3.20.2, dyn.3.20.2, ordering.3.20.2, stdune.3.20.2 (cached)
-> retrieved gen.1.1 (cached)
-> retrieved markup.1.0.3 (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved pp.2.0.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.37.0 (cached)
-> retrieved sedlex.3.7 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uchar.0.0.2 (cached)
-> retrieved uuidm.0.9.10 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved vlt.0.2.5 (cached)
-> retrieved zarith.1.14 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed uchar.0.0.2
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed uuidm.0.9.10
-> installed uutf.1.0.4
-> installed bytesrw.0.3.0
-> installed dune.3.20.2
-> installed base64.3.5.2
-> installed camlp-streams.5.0.1
-> installed cppo.1.8.0
-> installed csexp.1.5.2
-> installed csv.2.4
-> installed gen.1.1
-> installed markup.1.0.3
-> installed menhirCST.20250912
-> installed menhirLib.20250912
-> installed menhirSdk.20250912
-> installed ocaml-compiler-libs.v0.17.0
-> installed pp.2.0.0
-> installed ppx_derivers.1.2.1
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed ordering.3.20.2
-> installed dune-configurator.3.20.2
-> installed dyn.3.20.2
-> installed cryptokit.1.20
-> installed stdune.3.20.2
-> installed dune-private-libs.3.20.2
-> installed dune-site.3.20.2
-> installed menhir.20250912
-> installed ppxlib.0.37.0
-> installed vlt.0.2.5
-> installed sedlex.3.7
-> installed diffast-misc.0.3.6
-> installed diffast-langs-common.0.3.6
-> installed diffast-core.0.3.6
-> installed diffast-langs-cpp-spec.0.3.6
-> installed diffast-langs-cpp-parsing.0.3.6
-> installed diffast-langs-cpp.0.3.6
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-17 07:01.41 ---> saved as "c610e8eac04517a3f67f35a1964c3b8952dd1072fd43d3964ad48012b224a0ab"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test diffast-langs-cpp.0.3.6) || true"))
[WARNING] Opam package conf-zlib.1 depends on the following system package that can no longer be found: zlib-devel
The following actions will be performed:
=== recompile 9 packages
- recompile bytesrw 0.3.0 [uses conf-zlib]
- recompile conf-zlib 1 [upstream or system changes]
- recompile cryptokit 1.20 [uses conf-zlib]
- recompile diffast-core 0.3.6 [uses diffast-misc]
- recompile diffast-langs-common 0.3.6 [uses diffast-misc]
- recompile diffast-langs-cpp 0.3.6 (pinned)
- recompile diffast-langs-cpp-parsing 0.3.6 [uses diffast-langs-common]
- recompile diffast-langs-cpp-spec 0.3.6 [uses diffast-core]
- recompile diffast-misc 0.3.6 [uses bytesrw, cryptokit]
The following system packages will first need to be installed:
zlib-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" "zlib-devel"
- Last metadata expiration check: 0:05:03 ago on Mon Nov 17 06:56:42 2025.
- Package zlib-ng-compat-devel-2.2.3-2.el10.x86_64 is already installed.
- Dependencies resolved.
- Nothing to do.
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "zlib-devel"
- zlib-ng-compat-devel-2.2.3-2.el10.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bytesrw.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved cryptokit.1.20 (https://opam.ocaml.org/cache)
-> retrieved diffast-core.0.3.6, diffast-langs-common.0.3.6, diffast-langs-cpp.0.3.6, diffast-langs-cpp-parsing.0.3.6, diffast-langs-cpp-spec.0.3.6, diffast-misc.0.3.6 (https://github.com/codinuum/diffast/archive/v0.3.6.tar.gz)
-> removed diffast-langs-cpp.0.3.6
-> removed diffast-langs-cpp-parsing.0.3.6
-> removed diffast-langs-common.0.3.6
-> removed diffast-langs-cpp-spec.0.3.6
-> removed diffast-core.0.3.6
-> removed diffast-misc.0.3.6
-> removed bytesrw.0.3.0
-> removed cryptokit.1.20
-> removed conf-zlib.1
-> installed conf-zlib.1
-> installed cryptokit.1.20
-> installed bytesrw.0.3.0
-> installed diffast-misc.0.3.6
-> installed diffast-langs-common.0.3.6
-> installed diffast-core.0.3.6
-> installed diffast-langs-cpp-spec.0.3.6
-> installed diffast-langs-cpp-parsing.0.3.6
-> installed diffast-langs-cpp.0.3.6
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-17 07:06.25 ---> saved as "491ae03a30bc3d34423535b16aa953f1e367161bbe72c379791615c8dbcab4fa"
/home/opam: (run (shell "opam reinstall --with-test --verbose diffast-langs-cpp.0.3.6;\
\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-10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'diffast-langs-cpp.0.3.6' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
[WARNING] Opam package conf-zlib.1 depends on the following system package that can no longer be found: zlib-devel
The following actions will be performed:
=== recompile 9 packages
- recompile bytesrw 0.3.0 [uses conf-zlib]
- recompile conf-zlib 1 [upstream or system changes]
- recompile cryptokit 1.20 [uses conf-zlib]
- recompile diffast-core 0.3.6 [uses diffast-misc]
- recompile diffast-langs-common 0.3.6 [uses diffast-misc]
- recompile diffast-langs-cpp 0.3.6 (pinned)
- recompile diffast-langs-cpp-parsing 0.3.6 [uses diffast-langs-common]
- recompile diffast-langs-cpp-spec 0.3.6 [uses diffast-core]
- recompile diffast-misc 0.3.6 [uses bytesrw, cryptokit]
The following system packages will first need to be installed:
zlib-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" "zlib-devel"
- Last metadata expiration check: 0:09:47 ago on Mon Nov 17 06:56:42 2025.
- Package zlib-ng-compat-devel-2.2.3-2.el10.x86_64 is already installed.
- Dependencies resolved.
- Nothing to do.
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "zlib-devel"
- zlib-ng-compat-devel-2.2.3-2.el10.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/31: [bytesrw.0.3.0: extract]
-> retrieved bytesrw.0.3.0 (cached)
Processing 3/31: [cryptokit.1.20: extract]
Processing 4/31: [cryptokit.1.20: extract] [conf-zlib: pkg-config zlib]
-> retrieved cryptokit.1.20 (cached)
Processing 4/31: [conf-zlib: pkg-config zlib]
Processing 5/31: [diffast-core.0.3.6 + 4 others: extract] [conf-zlib: pkg-config zlib]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "pkg-config" "zlib" (CWD=/home/opam/.opam/5.4/.opam-switch/build/conf-zlib.1)
-> compiled conf-zlib.1
Processing 5/31: [diffast-core.0.3.6 + 4 others: extract]
-> retrieved diffast-core.0.3.6, diffast-langs-common.0.3.6, diffast-langs-cpp.0.3.6, diffast-langs-cpp-parsing.0.3.6, diffast-langs-cpp-spec.0.3.6, diffast-misc.0.3.6 (cached)
-> removed diffast-langs-cpp.0.3.6
-> removed diffast-langs-cpp-parsing.0.3.6
-> removed diffast-langs-common.0.3.6
-> removed diffast-langs-cpp-spec.0.3.6
-> removed diffast-core.0.3.6
-> removed diffast-misc.0.3.6
-> removed bytesrw.0.3.0
-> removed cryptokit.1.20
-> removed conf-zlib.1
-> installed conf-zlib.1
Processing 16/31: [bytesrw: ocaml build]
Processing 17/31: [bytesrw: ocaml build] [cryptokit: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "false" "--with-cmdliner" "false" "--with-b0" "false" "--with-conf-libblake3" "false" "--with-conf-mbedtls" "false" "--with-conf-libmd" "false" "--with-conf-xxhash" "false" "--with-conf-zlib" "true" "--with-conf-zstd" "false" (CWD=/home/opam/.opam/5.4/.opam-switch/build/bytesrw.0.3.0)
- + ocamlfind ocamlc -config
- + ocamlfind ocamlopt -I +unix unix.cmxa -I /home/opam/.opam/5.4/lib/ocamlbuild /home/opam/.opam/5.4/lib/ocamlbuild/ocamlbuildlib.cmxa -linkpkg myocamlbuild.ml /home/opam/.opam/5.4/lib/ocamlbuild/ocamlbuild.cmx -o myocamlbuild
- + ocamlfind ocamlc -config
- File "_tags", line 9, characters 38-51:
- Warning: the tag "use_libblake3" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 10, characters 41-68:
- Warning: the tag "record_bytesrw_blake3_stubs" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 11, characters 37-70:
- Warning: the tag "link_bytesrw_blake3_stubs_archive" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 12, characters 41-54:
- Warning: the tag "use_libblake3" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 15, characters 38-53:
- Warning: the tag "use_tfpsacrypto" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 16, characters 41-68:
- Warning: the tag "record_bytesrw_crypto_stubs" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 17, characters 37-70:
- Warning: the tag "link_bytesrw_crypto_stubs_archive" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 18, characters 41-56:
- Warning: the tag "use_tfpsacrypto" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 21, characters 30-39:
- Warning: the tag "use_libmd" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 22, characters 33-56:
- Warning: the tag "record_bytesrw_md_stubs" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 23, characters 29-58:
- Warning: the tag "link_bytesrw_md_stubs_archive" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 24, characters 33-42:
- Warning: the tag "use_libmd" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 31, characters 41-52:
- Warning: the tag "use_mbedtls" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 32, characters 35-59:
- Warning: the tag "record_bytesrw_tls_stubs" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 33, characters 31-61:
- Warning: the tag "link_bytesrw_tls_stubs_archive" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 34, characters 35-46:
- Warning: the tag "use_mbedtls" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 36, characters 69-84:
- Warning: the tag "use_bytesrw_tls" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 36, characters 49-67:
- Warning: the tag "use_bytesrw_crypto" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 40, characters 38-51:
- Warning: the tag "use_libxxhash" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 41, characters 41-68:
- Warning: the tag "record_bytesrw_xxhash_stubs" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 42, characters 37-70:
- Warning: the tag "link_bytesrw_xxhash_stubs_archive" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- File "_tags", line 43, characters 41-54:
- Warning: the tag "use_libxxhash" is not used in any flag or dependency declaration, so it will have no effect; it may be a typo. Otherwise you can use `mark_tag_used` in your myocamlbuild.ml to disable this warning.
- + ocamlfind ocamldep -package unix -modules src/bytesrw_fmt.ml > src/bytesrw_fmt.ml.depends
- + ocamlfind ocamldep -package unix -modules src/bytesrw_fmt.mli > src/bytesrw_fmt.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package unix -I src -I src/blake3 -I src/crypto -I src/md -I src/sysrandom -I src/tls -I src/unix -I src/xxhash -I src/zlib -I src/zstd -o src/bytesrw_fmt.cmi src/bytesrw_fmt.mli
- + ocamlfind ocamldep -package unix -modules src/bytesrw.ml > src/bytesrw.ml.depends
- + ocamlfind ocamldep -package unix -modules src/bytesrw.mli > src/bytesrw.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package unix -I src -I src/blake3 -I src/crypto -I src/md -I src/sysrandom -I src/tls -I src/unix -I src/xxhash -I src/zlib -I src/zstd -o src/bytesrw.cmi src/bytesrw.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package unix -I src -I src/blake3 -I src/crypto -I src/md -I src/sysrandom -I src/tls -I src/unix -I src/xxhash -I src/zlib -I src/zstd -o src/bytesrw_fmt.cmx src/bytesrw_fmt.ml
- + ocamlfind ocamldep -package unix -modules src/bytesrw_utf.ml > src/bytesrw_utf.ml.depends
- + ocamlfind ocamldep -package unix -modules src/bytesrw_utf.mli > src/bytesrw_utf.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package unix -I src -I src/blake3 -I src/crypto -I src/md -I src/sysrandom -I src/tls -I src/unix -I src/xxhash -I src/zlib -I src/zstd -o src/bytesrw_utf.cmi src/bytesrw_utf.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package unix -I src -I src/blake3 -I src/crypto -I src/md -I src/sysrandom -I src/tls -I src/unix -I src/xxhash -I src/zlib -I src/zstd -o src/bytesrw.cmx src/bytesrw.ml
- + ocamlfind ocamldep -package unix -modules src/bytesrw_hex.ml > src/bytesrw_hex.ml.depends
- + ocamlfind ocamldep -package unix -modules src/bytesrw_hex.mli > src/bytesrw_hex.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package unix -I src -I src/blake3 -I src/crypto -I src/md -I src/sysrandom -I src/tls -I src/unix -I src/xxhash -I src/zlib -I src/zstd -o src/bytesrw_hex.cmi src/bytesrw_hex.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package unix -I src -I src/blake3 -I src/crypto -I src/md -I src/sysrandom -I src/tls -I src/unix -I src/xxhash -I src/zlib -I src/zstd -o src/bytesrw_utf.cmx src/bytesrw_utf.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package unix -I src -I src/blake3 -I src/crypto -I src/md -I src/sysrandom -I src/tls -I src/unix -I src/xxhash -I src/zlib -I src/zstd -o src/bytesrw_hex.cmx src/bytesrw_hex.ml
- + ocamlfind ocamlopt -a -package unix -I src src/bytesrw_fmt.cmx src/bytesrw.cmx src/bytesrw_utf.cmx src/bytesrw_hex.cmx -o src/bytesrw.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package unix -I src -I src/blake3 -I src/crypto -I src/md -I src/sysrandom -I src/tls -I src/unix -I src/xxhash -I src/zlib -I src/zstd -o src/bytesrw_fmt.cmo src/bytesrw_fmt.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package unix -I src -I src/blake3 -I src/crypto -I src/md -I src/sysrandom -I src/tls -I src/unix -I src/xxhash -I src/zlib -I src/zstd -o src/bytesrw.cmo src/bytesrw.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package unix -I src -I src/blake3 -I src/crypto -I src/md -I src/sysrandom -I src/tls -I src/unix -I src/xxhash -I src/zlib -I src/zstd -o src/bytesrw_utf.cmo src/bytesrw_utf.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package unix -I src -I src/blake3 -I src/crypto -I src/md -I src/sysrandom -I src/tls -I src/unix -I src/xxhash -I src/zlib -I src/zstd -o src/bytesrw_hex.cmo src/bytesrw_hex.ml
- + ocamlfind ocamldep -package unix -modules src/unix/bytesrw_unix.ml > src/unix/bytesrw_unix.ml.depends
- + ocamlfind ocamldep -package unix -modules src/unix/bytesrw_unix.mli > src/unix/bytesrw_unix.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package unix -I src/unix -I src -I src/blake3 -I src/crypto -I src/md -I src/sysrandom -I src/tls -I src/xxhash -I src/zlib -I src/zstd -o src/unix/bytesrw_unix.cmi src/unix/bytesrw_unix.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package unix -I src/unix -I src -I src/blake3 -I src/crypto -I src/md -I src/sysrandom -I src/tls -I src/xxhash -I src/zlib -I src/zstd -o src/unix/bytesrw_unix.cmx src/unix/bytesrw_unix.ml
- + ocamlfind ocamlopt -a -package unix -I src/unix src/unix/bytesrw_unix.cmx -o src/unix/bytesrw_unix.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package unix -I src/unix -I src -I src/blake3 -I src/crypto -I src/md -I src/sysrandom -I src/tls -I src/xxhash -I src/zlib -I src/zstd -o src/unix/bytesrw_unix.cmo src/unix/bytesrw_unix.ml
- + ocamlfind ocamlc -g -package unix -c src/sysrandom/bytesrw_sysrandom_stubs.c
- + mv bytesrw_sysrandom_stubs.o src/sysrandom/bytesrw_sysrandom_stubs.o
- + ocamlfind ocamlmklib -o src/sysrandom/bytesrw_sysrandom_stubs -g src/sysrandom/bytesrw_sysrandom_stubs.o
- + ocamlfind ocamldep -package unix -modules src/sysrandom/bytesrw_sysrandom.ml > src/sysrandom/bytesrw_sysrandom.ml.depends
- + ocamlfind ocamldep -package unix -modules src/sysrandom/bytesrw_sysrandom.mli > src/sysrandom/bytesrw_sysrandom.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package unix -I src/sysrandom -I src -I src/blake3 -I src/crypto -I src/md -I src/tls -I src/unix -I src/xxhash -I src/zlib -I src/zstd -o src/sysrandom/bytesrw_sysrandom.cmi src/sysrandom/bytesrw_sysrandom.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package unix -I src/sysrandom -I src -I src/blake3 -I src/crypto -I src/md -I src/tls -I src/unix -I src/xxhash -I src/zlib -I src/zstd -o src/sysrandom/bytesrw_sysrandom.cmx src/sysrandom/bytesrw_sysrandom.ml
- + ocamlfind ocamlopt -a -cclib -lbytesrw_sysrandom_stubs -package unix -I src/sysrandom src/sysrandom/bytesrw_sysrandom.cmx -o src/sysrandom/bytesrw_sysrandom.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package unix -I src/sysrandom -I src -I src/blake3 -I src/crypto -I src/md -I src/tls -I src/unix -I src/xxhash -I src/zlib -I src/zstd -o src/sysrandom/bytesrw_sysrandom.cmo src/sysrandom/bytesrw_sysrandom.ml
- + ocamlfind ocamlc -g -ccopt -DHAS_ZLIB -ccopt -DWITH_GZFILEOP -package unix -c src/zlib/bytesrw_zlib_stubs.c
- + mv bytesrw_zlib_stubs.o src/zlib/bytesrw_zlib_stubs.o
- + ocamlfind ocamlmklib -o src/zlib/bytesrw_zlib_stubs -g -lz src/zlib/bytesrw_zlib_stubs.o
- + ocamlfind ocamldep -package unix -modules src/zlib/bytesrw_zlib.ml > src/zlib/bytesrw_zlib.ml.depends
- + ocamlfind ocamldep -package unix -modules src/zlib/bytesrw_zlib.mli > src/zlib/bytesrw_zlib.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package unix -I src/zlib -I src -I src/blake3 -I src/crypto -I src/md -I src/sysrandom -I src/tls -I src/unix -I src/xxhash -I src/zstd -o src/zlib/bytesrw_zlib.cmi src/zlib/bytesrw_zlib.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package unix -I src/zlib -I src -I src/blake3 -I src/crypto -I src/md -I src/sysrandom -I src/tls -I src/unix -I src/xxhash -I src/zstd -o src/zlib/bytesrw_zlib.cmx src/zlib/bytesrw_zlib.ml
- + ocamlfind ocamlopt -a -cclib -lbytesrw_zlib_stubs -cclib -lz -package unix -I src/zlib src/zlib/bytesrw_zlib.cmx -o src/zlib/bytesrw_zlib.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package unix -I src/zlib -I src -I src/blake3 -I src/crypto -I src/md -I src/sysrandom -I src/tls -I src/unix -I src/xxhash -I src/zstd -o src/zlib/bytesrw_zlib.cmo src/zlib/bytesrw_zlib.ml
- + ocamlfind ocamlopt -shared -linkall -package unix -I src src/bytesrw.cmxa -o src/bytesrw.cmxs
- + ocamlfind ocamlc -a -package unix -I src src/bytesrw_fmt.cmo src/bytesrw.cmo src/bytesrw_utf.cmo src/bytesrw_hex.cmo -o src/bytesrw.cma
- + ocamlfind ocamlopt -shared -linkall -package unix -I src/unix src/unix/bytesrw_unix.cmxa -o src/unix/bytesrw_unix.cmxs
- + ocamlfind ocamlc -a -package unix -I src/unix src/unix/bytesrw_unix.cmo -o src/unix/bytesrw_unix.cma
- + ocamlfind ocamlopt -shared -linkall src/sysrandom/libbytesrw_sysrandom_stubs.a -package unix -I src/sysrandom src/sysrandom/bytesrw_sysrandom.cmxa -o src/sysrandom/bytesrw_sysrandom.cmxs
- + ocamlfind ocamlc -a -dllib -lbytesrw_sysrandom_stubs -cclib -lbytesrw_sysrandom_stubs -package unix -I src/sysrandom src/sysrandom/bytesrw_sysrandom.cmo -o src/sysrandom/bytesrw_sysrandom.cma
- + ocamlfind ocamlopt -shared -linkall src/zlib/libbytesrw_zlib_stubs.a -cclib -lbytesrw_zlib_stubs -cclib -lz -package unix -I src/zlib src/zlib/bytesrw_zlib.cmxa -o src/zlib/bytesrw_zlib.cmxs
- + ocamlfind ocamlc -a -dllib -lbytesrw_zlib_stubs -cclib -lbytesrw_zlib_stubs -cclib -lz -package unix -I src/zlib src/zlib/bytesrw_zlib.cmo -o src/zlib/bytesrw_zlib.cma
- # Parallel statistics: { count(total): 3(47), max: 8, min: 2, average(total): 4.667(1.234) }
-> compiled bytesrw.0.3.0
Processing 17/31: [cryptokit: dune build]
-> installed bytesrw.0.3.0
Processing 18/31: [cryptokit: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "cryptokit" "-j" "71" "@install" (CWD=/home/opam/.opam/5.4/.opam-switch/build/cryptokit.1.20)
- (cd _build/default/src && config/flags.exe)
- ZLib: ............................... enabled
- Hardware support for AES and GCM: ... enabled
- getentropy():........................ enabled
-> compiled cryptokit.1.20
-> installed cryptokit.1.20
Processing 20/31: [diffast-misc: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "diffast-misc" "-j" "71" "--promote-install-files=false" "@install" (CWD=/home/opam/.opam/5.4/.opam-switch/build/diffast-misc.0.3.6)
- (cd _build/default/src/api/dev && /usr/bin/git describe --always --dirty) > _build/default/src/api/dev/v
- fatal: not a git repository (or any parent up to mount point /)
- Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
Processing 20/31: [diffast-misc: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "diffast-misc" "--create-install-files" "diffast-misc" (CWD=/home/opam/.opam/5.4/.opam-switch/build/diffast-misc.0.3.6)
-> compiled diffast-misc.0.3.6
-> installed diffast-misc.0.3.6
Processing 22/31: [diffast-core: dune build]
Processing 23/31: [diffast-core: dune build] [diffast-langs-common: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "diffast-langs-common" "-j" "71" "--promote-install-files=false" "@install" (CWD=/home/opam/.opam/5.4/.opam-switch/build/diffast-langs-common.0.3.6)
- (cd _build/default/src/api/dev && /usr/bin/git describe --always --dirty) > _build/default/src/api/dev/v
- fatal: not a git repository (or any parent up to mount point /)
- Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
Processing 23/31: [diffast-core: dune build] [diffast-langs-common: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "diffast-langs-common" "--create-install-files" "diffast-langs-common" (CWD=/home/opam/.opam/5.4/.opam-switch/build/diffast-langs-common.0.3.6)
-> compiled diffast-langs-common.0.3.6
Processing 23/31: [diffast-core: dune build]
-> installed diffast-langs-common.0.3.6
Processing 24/31: [diffast-core: dune build]
Processing 25/31: [diffast-core: dune build] [diffast-langs-cpp-parsing: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "diffast-core" "-j" "71" "--promote-install-files=false" "@install" (CWD=/home/opam/.opam/5.4/.opam-switch/build/diffast-core.0.3.6)
- (cd _build/default/src/api/dev && /usr/bin/git describe --always --dirty) > _build/default/src/api/dev/v
- fatal: not a git repository (or any parent up to mount point /)
- Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
Processing 25/31: [diffast-core: dune install] [diffast-langs-cpp-parsing: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "diffast-core" "--create-install-files" "diffast-core" (CWD=/home/opam/.opam/5.4/.opam-switch/build/diffast-core.0.3.6)
-> compiled diffast-core.0.3.6
Processing 25/31: [diffast-langs-cpp-parsing: dune build]
-> installed diffast-core.0.3.6
Processing 26/31: [diffast-langs-cpp-parsing: dune build]
Processing 27/31: [diffast-langs-cpp-parsing: dune build] [diffast-langs-cpp-spec: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "diffast-langs-cpp-spec" "-j" "71" "--promote-install-files=false" "@install" (CWD=/home/opam/.opam/5.4/.opam-switch/build/diffast-langs-cpp-spec.0.3.6)
- (cd _build/default/src/api/dev && /usr/bin/git describe --always --dirty) > _build/default/src/api/dev/v
- fatal: not a git repository (or any parent up to mount point /)
- Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
Processing 27/31: [diffast-langs-cpp-parsing: dune build] [diffast-langs-cpp-spec: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "diffast-langs-cpp-spec" "--create-install-files" "diffast-langs-cpp-spec" (CWD=/home/opam/.opam/5.4/.opam-switch/build/diffast-langs-cpp-spec.0.3.6)
-> compiled diffast-langs-cpp-spec.0.3.6
Processing 27/31: [diffast-langs-cpp-parsing: dune build]
-> installed diffast-langs-cpp-spec.0.3.6
Processing 28/31: [diffast-langs-cpp-parsing: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "diffast-langs-cpp-parsing" "-j" "71" "--promote-install-files=false" "@install" (CWD=/home/opam/.opam/5.4/.opam-switch/build/diffast-langs-cpp-parsing.0.3.6)
- (cd _build/default/src/api/dev && /usr/bin/git describe --always --dirty) > _build/default/src/api/dev/v
- fatal: not a git repository (or any parent up to mount point /)
- Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
Processing 28/31: [diffast-langs-cpp-parsing: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "diffast-langs-cpp-parsing" "--create-install-files" "diffast-langs-cpp-parsing" (CWD=/home/opam/.opam/5.4/.opam-switch/build/diffast-langs-cpp-parsing.0.3.6)
-> compiled diffast-langs-cpp-parsing.0.3.6
-> installed diffast-langs-cpp-parsing.0.3.6
Processing 30/31: [diffast-langs-cpp: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "diffast-langs-cpp" "-j" "71" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/diffast-langs-cpp.0.3.6)
- (cd _build/default/src/api/dev && /usr/bin/git describe --always --dirty) > _build/default/src/api/dev/v
- fatal: not a git repository (or any parent up to mount point /)
- Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
Processing 30/31: [diffast-langs-cpp: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "diffast-langs-cpp" "--create-install-files" "diffast-langs-cpp" (CWD=/home/opam/.opam/5.4/.opam-switch/build/diffast-langs-cpp.0.3.6)
-> compiled diffast-langs-cpp.0.3.6
-> installed diffast-langs-cpp.0.3.6
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-17 07:10.45 ---> saved as "03b3b05f9e3215a6f0ca83fca37a6c0c208974978e792fac29c02d79fbbc44bc"
Job succeeded
2025-11-17 07:10.58: Job succeeded