- github
- ocaml
- opam-repository
- 1a538e
- compilers,5.4,lwt.6.0.0,revdeps,unix-unistd.0.3.0
(not at the head of any monitored branch or PR)
2026-01-07 09:51.21: New job: test unix-unistd.0.3.0 with lwt.6.0.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29184/head (1a538ed11284d3a47bf9851621c653c567cbc1a3)
on debian-13-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/29184/head" && git reset --hard 1a538ed1
git fetch origin master
git merge --no-edit 26ba45ff7b4d5c474404d370f5dab40d5aca345f
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:fc4475154a81e45c7a4fe10ae1ce9017b16705b50ae99ec37ca5504484b8ff17
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 lwt.6.0.0 6.0.0
RUN opam reinstall lwt.6.0.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'lwt.6.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 unix-unistd.0.3.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'unix-unistd.0.3.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 unix-unistd.0.3.0) || true
RUN opam reinstall --with-test --verbose unix-unistd.0.3.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'unix-unistd.0.3.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-01-07 09:51.21: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:fc4475154a81e45c7a4fe10ae1ce9017b16705b50ae99ec37ca5504484b8ff17-lwt.6.0.0-unix-unistd.0.3.0-1a538ed11284d3a47bf9851621c653c567cbc1a3"
2026-01-07 09:51.21: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:fc4475154a81e45c7a4fe10ae1ce9017b16705b50ae99ec37ca5504484b8ff17)
(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 lwt.6.0.0 6.0.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt.6.0.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lwt.6.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall unix-unistd.0.3.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'unix-unistd.0.3.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 unix-unistd.0.3.0) || true"))
(run (shell "opam reinstall --with-test --verbose unix-unistd.0.3.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'unix-unistd.0.3.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-01-07 09:51.21: Waiting for resource in pool OCluster
2026-01-07 09:51.26: Waiting for worker…
2026-01-07 09:52.23: Got resource from pool OCluster
Building on clete
All commits already cached
HEAD is now at 26ba45ff7b Merge pull request #29174 from craff/master
Merge made by the 'ort' strategy.
packages/lwt/lwt.6.0.0/opam | 64 ++++++++++++++++++++++
packages/lwt_direct/lwt_direct.6.0.0/opam | 41 ++++++++++++++
packages/lwt_ppx/lwt_ppx.6.0.0/opam | 46 ++++++++++++++++
.../lwt_runtime_events.6.0.0/opam | 39 +++++++++++++
4 files changed, 190 insertions(+)
create mode 100644 packages/lwt/lwt.6.0.0/opam
create mode 100644 packages/lwt_direct/lwt_direct.6.0.0/opam
create mode 100644 packages/lwt_ppx/lwt_ppx.6.0.0/opam
create mode 100644 packages/lwt_runtime_events/lwt_runtime_events.6.0.0/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:fc4475154a81e45c7a4fe10ae1ce9017b16705b50ae99ec37ca5504484b8ff17)
2026-01-07 09:52.34 ---> using "03f0951594c938350775771f8c8fede6d107f2d2eee244220b7b8b4b1567de6e" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-07 09:52.34 ---> using "c933f036b19f2f0c0887f671ec993a9dc79755040cbb635c24c9b9c241c841cd" 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 version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-07 09:52.34 ---> using "7ecc7f75a5bf9dcfd6502f8a59ae1f7ab294c7cb737f8dd9abe743475bc57ced" 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.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# 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
2026-01-07 09:52.34 ---> using "f03eee248d01b26761fba1ca57252b7a2d5a4073d6250967ee99f663b30113e2" 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/"))
2026-01-07 09:52.34 ---> using "bf0379b82096b6ba5dc91e9f0222794ba43ccc18e72cfb20cf13ead08a8436d8" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-07 09:52.35 ---> using "292afb5653bcfc33a829e267a22bab629bbb36c79f0a10df607e0e1094215217" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-07 09:52.35 ---> using "03b34a939048930464ca4522a5f7108169268ec0163d4fe373b1b7000dda1639" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [94.2 kB]
- Fetched 185 kB in 0s (1690 kB/s)
- Reading package lists...
2026-01-07 09:52.35 ---> using "7a3d17df04b0189e6845a9e84877a32b312e51d016014dd49e0acd5cdb0dab09" from cache
/home/opam: (run (shell "opam pin add -k version -yn lwt.6.0.0 6.0.0"))
lwt is now pinned to version 6.0.0
2026-01-07 09:52.35 ---> using "39edf796bf081e7f626349c7f93ee641aab682eb3a84cd4abafe0fa282faa174" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt.6.0.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lwt.6.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"))
lwt.6.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 packages
- install base-bytes base [required by ocplib-endian]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.20.2 [required by lwt]
- install dune-configurator 3.20.2 [required by lwt]
- install lwt 6.0.0 (pinned)
- install ocamlfind 1.9.8 [required by base-bytes]
- install ocplib-endian 1.2 [required by lwt]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
-> retrieved lwt.6.0.0 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.20.2
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.20.2
-> installed lwt.6.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-07 09:52.52 ---> saved as "22bd7a9c7d7cb66066587fd23103ba8f3fa57a35aa61ce14a9553d076774c038"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall unix-unistd.0.3.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'unix-unistd.0.3.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
unix-unistd.0.3.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
- install ctypes 0.24.0 [required by unix-unistd]
- install ctypes-build 0.0.2 [required by unix-unistd]
- install integers 0.7.0 [required by ctypes]
- install ocamlbuild 0.16.1 [required by unix-unistd]
- install stdlib-shims 0.3.0 [required by integers]
- install unix-unistd 0.3.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ctypes.0.24.0 (cached)
-> retrieved ctypes-build.0.0.2 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved unix-unistd.0.3.0 (cached)
-> installed stdlib-shims.0.3.0
-> installed integers.0.7.0
-> installed ctypes.0.24.0
-> installed ocamlbuild.0.16.1
-> installed ctypes-build.0.0.2
-> installed unix-unistd.0.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-07 09:53.24 ---> saved as "96e26d8e100b033ae2f69c364c16c3873a4e0ad2f0f3379f7a541f28fe4de48b"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test unix-unistd.0.3.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile unix-unistd 0.3.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved unix-unistd.0.3.0 (https://opam.ocaml.org/cache)
-> removed unix-unistd.0.3.0
-> installed unix-unistd.0.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-07 09:53.40 ---> saved as "c050d8f1f98769178b3d483025d484cb94a7b2834e619ace75886a3edc3e2025"
/home/opam: (run (shell "opam reinstall --with-test --verbose unix-unistd.0.3.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'unix-unistd.0.3.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 unix-unistd 0.3.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [unix-unistd.0.3.0: extract]
-> retrieved unix-unistd.0.3.0 (cached)
Processing 2/4: [unix-unistd: make build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "build" (CWD=/home/opam/.opam/5.4/.opam-switch/build/unix-unistd.0.3.0)
- CTYPES_LIB_DIR=/home/opam/.opam/5.4/lib/ctypes LWT_LIB_DIR=/home/opam/.opam/5.4/lib/lwt OCAML_LIB_DIR=/home/opam/.opam/5.4/lib/ocaml ocamlbuild -use-ocamlfind -classic-display -plugin-tags 'package(ctypes-build.ocamlbuild)' unistd.cma unistd.cmxa
- + ocamlfind ocamlc -config
- + ocamlfind ocamlopt -package unix -package ocamlbuild -linkpkg -package ctypes-build.ocamlbuild myocamlbuild.ml /home/opam/.opam/5.4/lib/ocamlbuild/ocamlbuild.cmx -o myocamlbuild
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -modules lib/unistd.mli > lib/unistd.mli.depends
- + ocamlfind ocamlc -c -bin-annot -safe-string -principal -strict-sequence -w @5@8@10@11@12@14@23@24@26@29 -I lib -I lwt -I unix -o lib/unistd.cmi lib/unistd.mli
- + ocamlfind ocamlc -c -bin-annot -safe-string -principal -strict-sequence -w @5@8@10@11@12@14@23@24@26@29 -I lib -I lwt -I unix -o lib/unistd.cmi lib/unistd.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_auto_include:
- OCaml's lib directory layout changed in 5.0. The unix subdirectory has been
- automatically added to the search path, but you should add -I +unix to the
- command-line to silence this alert (e.g. by adding unix to the list of
- libraries in your dune file, or adding use_unix to your _tags file for
- ocamlbuild, or using -package unix for ocamlfind).
- + ocamlfind ocamldep -modules lib/unistd.ml > lib/unistd.ml.depends
- + ocamlfind ocamlc -c -bin-annot -safe-string -principal -strict-sequence -w @5@8@10@11@12@14@23@24@26@29 -I lib -I lwt -I unix -o lib/unistd.cmo lib/unistd.ml
- + ocamlfind ocamlc -c -bin-annot -safe-string -principal -strict-sequence -w @5@8@10@11@12@14@23@24@26@29 -I lib -I lwt -I unix -o lib/unistd.cmo lib/unistd.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_auto_include:
- OCaml's lib directory layout changed in 5.0. The unix subdirectory has been
- automatically added to the search path, but you should add -I +unix to the
- command-line to silence this alert (e.g. by adding unix to the list of
- libraries in your dune file, or adding use_unix to your _tags file for
- ocamlbuild, or using -package unix for ocamlfind).
- + ocamlfind ocamlc -a -I lib lib/unistd.cmo -o lib/unistd.cma
- + ocamlfind ocamlopt -c -bin-annot -safe-string -principal -strict-sequence -w @5@8@10@11@12@14@23@24@26@29 -I lib -I lwt -I unix -o lib/unistd.cmx lib/unistd.ml
- + ocamlfind ocamlopt -c -bin-annot -safe-string -principal -strict-sequence -w @5@8@10@11@12@14@23@24@26@29 -I lib -I lwt -I unix -o lib/unistd.cmx lib/unistd.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_auto_include:
- OCaml's lib directory layout changed in 5.0. The unix subdirectory has been
- automatically added to the search path, but you should add -I +unix to the
- command-line to silence this alert (e.g. by adding unix to the list of
- libraries in your dune file, or adding use_unix to your _tags file for
- ocamlbuild, or using -package unix for ocamlfind).
- + ocamlfind ocamlopt -a -I lib lib/unistd.cmx -o lib/unistd.cmxa
- + ocamlfind ocamlopt -package unix -package ocamlbuild -linkpkg -package ctypes-build.ocamlbuild myocamlbuild.ml /home/opam/.opam/5.4/lib/ocamlbuild/ocamlbuild.cmx -o myocamlbuild
- File "_none_", line 1:
- Warning 58 [no-cmx-file]: no cmx file was found in path for module
- Ctypes_rules, and its interface was not compiled with -opaque
-> compiled unix-unistd.0.3.0
Processing 3/4: [unix-unistd: ocamlfind remove]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "ocamlfind" "remove" "unix-unistd" (CWD=/home/opam/.opam/5.4/.opam-switch/remove/unix-unistd.0.3.0)
- Removed /home/opam/.opam/5.4/lib/unix-unistd/META
- Removed /home/opam/.opam/5.4/lib/unix-unistd
-> removed unix-unistd.0.3.0
Processing 4/4: [unix-unistd: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" (CWD=/home/opam/.opam/5.4/.opam-switch/build/unix-unistd.0.3.0)
- ocamlfind install unix-unistd META \
- _build/lib/unistd.mli _build/lib/unistd.cmi _build/lib/unistd.cmti _build/lib/unistd.cma _build/lib/unistd.cmxa \
- _build/lib/unistd.a
- Installed /home/opam/.opam/5.4/lib/unix-unistd/unistd.a
- Installed /home/opam/.opam/5.4/lib/unix-unistd/unistd.cmxa
- Installed /home/opam/.opam/5.4/lib/unix-unistd/unistd.cma
- Installed /home/opam/.opam/5.4/lib/unix-unistd/unistd.cmti
- Installed /home/opam/.opam/5.4/lib/unix-unistd/unistd.cmi
- Installed /home/opam/.opam/5.4/lib/unix-unistd/unistd.mli
- Installed /home/opam/.opam/5.4/lib/unix-unistd/META
-> installed unix-unistd.0.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-07 09:53.51 ---> saved as "da6e1efc83b0f84efa5518cf7321017cff03dea8da23a362beeabb518260be7f"
Job succeeded
2026-01-07 09:54.27: Job succeeded