- github
- ocaml
- opam-repository
- 9346fc
- compilers,5.4,ocaml-compiler.5.4.0~beta2,revdeps,topkg-care.1.1.0
(not at the head of any monitored branch or PR)
2026-03-23 01:35.08: New job: test topkg-care.1.1.0 with ocaml-compiler.5.4.0~beta2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29582/head (9346fc968dbf5116a1b2dd2b5e0143bc06e9fa98)
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/29582/head" && git reset --hard 9346fc96
git fetch origin master
git merge --no-edit 76bf2ed9443fdee37e6f046c6295d358be3f8598
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
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 ocaml-compiler.5.4.0~beta2 5.4.0~beta2
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0~beta2; \
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" != 'ocaml-compiler.5.4.0~beta2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall topkg-care.1.1.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" != 'topkg-care.1.1.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 topkg-care.1.1.0) || true
RUN opam reinstall --with-test --verbose topkg-care.1.1.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" != 'topkg-care.1.1.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-23 01:35.08: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0~beta2-topkg-care.1.1.0-9346fc968dbf5116a1b2dd2b5e0143bc06e9fa98"
2026-03-23 01:35.08: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
(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 ocaml-compiler.5.4.0~beta2 5.4.0~beta2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0~beta2;\
\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\" != 'ocaml-compiler.5.4.0~beta2' && 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 topkg-care.1.1.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\" != 'topkg-care.1.1.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 topkg-care.1.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose topkg-care.1.1.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\" != 'topkg-care.1.1.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-23 01:35.08: Waiting for resource in pool OCluster
2026-03-23 09:56.22: Waiting for worker…
2026-03-23 10:01.03: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files: 68% (12724/18510)
Updating files: 69% (12772/18510)
Updating files: 70% (12957/18510)
Updating files: 71% (13143/18510)
Updating files: 72% (13328/18510)
Updating files: 73% (13513/18510)
Updating files: 74% (13698/18510)
Updating files: 75% (13883/18510)
Updating files: 76% (14068/18510)
Updating files: 77% (14253/18510)
Updating files: 78% (14438/18510)
Updating files: 79% (14623/18510)
Updating files: 80% (14808/18510)
Updating files: 81% (14994/18510)
Updating files: 82% (15179/18510)
Updating files: 83% (15364/18510)
Updating files: 84% (15549/18510)
Updating files: 85% (15734/18510)
Updating files: 86% (15919/18510)
Updating files: 87% (16104/18510)
Updating files: 88% (16289/18510)
Updating files: 89% (16474/18510)
Updating files: 90% (16659/18510)
Updating files: 91% (16845/18510)
Updating files: 92% (17030/18510)
Updating files: 93% (17215/18510)
Updating files: 94% (17400/18510)
Updating files: 95% (17585/18510)
Updating files: 96% (17770/18510)
Updating files: 97% (17955/18510)
Updating files: 98% (18140/18510)
Updating files: 99% (18325/18510)
Updating files: 100% (18510/18510)
Updating files: 100% (18510/18510), done.
HEAD is now at 76bf2ed944 Merge pull request #29572 from hannesm/release-letsencrypt-v2.0.0
Updating 76bf2ed944..9346fc968d
Fast-forward
Auto packing the repository in the background for optimum performance.
See "git help gc" for manual housekeeping.
warning: The last gc run reported the following. Please correct the root cause
and remove .git/gc.log
Automatic cleanup will not be performed until the file is removed.
warning: There are too many unreachable loose objects; run 'git prune' to remove them.
packages/ocaml-compiler/ocaml-compiler.5.3.0/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.3/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.4.0/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.4.1/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.4/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.5/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.6/opam | 2 ++
packages/ocaml-option-clang-cl/ocaml-option-clang-cl.1/opam | 13 +++++++++++++
packages/ocaml-options-vanilla/ocaml-options-vanilla.1/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam | 2 ++
15 files changed, 40 insertions(+)
create mode 100644 packages/ocaml-option-clang-cl/ocaml-option-clang-cl.1/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-23 10:01.11 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" 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-03-23 10:01.11 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" 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-03-23 10:01.11 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" 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-03-23 10:01.11 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" 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-03-23 10:01.11 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-23 10:01.12 ---> using "42572541eedd3763921d31914399a869be2c2491463c7a6b3a6603d0a74e5602" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-23 10:01.12 ---> using "42b4427ac9ad4580b42d47e391c8e13b13879a6c13324aed0d5363a4e5d61c3b" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
- Fetched 10.0 MB in 2s (5440 kB/s)
- Reading package lists...
-
2026-03-23 10:01.12 ---> using "bcdc3cbe32b99d0020088572e614b929a80eace84da9def17f7ae2e158fd771f" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~beta2 5.4.0~beta2"))
ocaml-compiler is now pinned to version 5.4.0~beta2
2026-03-23 10:01.12 ---> using "8156ec2e8438c70b0bed25feb3e9aabc6168e1caff8d9f26a2d9ffe7759a624d" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0~beta2;\
\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\" != 'ocaml-compiler.5.4.0~beta2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocaml-compiler.5.4.0~beta2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== remove 1 package
- remove ocaml-base-compiler 5.4.0 (pinned) [conflicts with ocaml-compiler]
=== downgrade 1 package
- downgrade ocaml-compiler 5.4.0 to 5.4.0~beta2 (pinned)
=== recompile 6 packages
- recompile base-domains base [uses ocaml]
- recompile base-effects base [uses ocaml]
- recompile base-nnp base [uses base-domains]
- recompile ocaml 5.4.0 [uses ocaml-base-compiler]
- recompile ocaml-config 3 [uses ocaml-base-compiler]
- recompile opam-depext 1.2.3 [uses ocaml]
=== install 1 package
- install ocaml-variants 5.4.0~beta2+options [required by ocaml]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0~beta2 (cached)
-> retrieved ocaml-config.3 (cached)
-> retrieved opam-depext.1.2.3 (cached)
-> removed base-effects.base
-> removed base-nnp.base
-> removed base-domains.base
-> removed opam-depext.1.2.3
-> removed ocaml.5.4.0
-> removed ocaml-config.3
-> removed ocaml-base-compiler.5.4.0
-> removed ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0~beta2
-> installed ocaml-variants.5.4.0~beta2+options
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
[NOTE] Switch invariant was updated to ["ocaml-variants" {= "5.4.0~beta2+options"}]
Use `opam switch set-invariant' to change it.
Done.
<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-23 10:01.12 ---> using "023080185edeaeb686f562c18c5e494577c14fd15cf73960c2e87898fe02d254" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall topkg-care.1.1.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\" != 'topkg-care.1.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
topkg-care.1.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 29 packages
- install astring 0.8.5 [required by bos]
- install bos 0.2.1 [required by topkg-care]
- install cmdliner 2.1.0 [required by topkg-care]
- install dune 3.22.0 [required by opam-format]
- install fmt 0.11.0 [required by topkg-care]
- install fpath 0.7.3 [required by bos]
- install jsonm 1.0.2 [required by opam-core]
- install logs 0.10.0 [required by topkg-care]
- install menhir 20260209 [required by opam-file-format]
- 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 ocamlbuild 0.16.1 [required by topkg-care]
- install ocamlfind 1.9.8 [required by topkg-care]
- install ocamlgraph 2.2.0 [required by opam-core]
- install opam-core 2.5.0 [required by opam-format]
- install opam-file-format 2.2.0 [required by opam-format]
- install opam-format 2.5.0 [required by topkg-care]
- install patch 3.1.0 [required by opam-core]
- install re 1.14.0 [required by opam-format]
- install rresult 0.7.0 [required by bos, webbrowser]
- install sha 1.15.4 [required by opam-core]
- install stdlib-shims 0.3.0 [required by sha]
- install swhid_core 0.1 [required by opam-core]
- install topkg 1.1.0 [required by topkg-care]
- install topkg-care 1.1.0
- install uutf 1.0.4 [required by opam-core]
- install webbrowser 0.6.2 [required by topkg-care]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved dune.3.22.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved jsonm.1.0.2 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocamlgraph.2.2.0 (cached)
-> retrieved opam-core.2.5.0, opam-format.2.5.0 (cached)
-> retrieved opam-file-format.2.2.0 (cached)
-> retrieved patch.3.1.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved sha.1.15.4 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved swhid_core.0.1 (cached)
-> retrieved topkg.1.1.0, topkg-care.1.1.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved webbrowser.0.6.2 (cached)
-> installed cmdliner.2.1.0
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.0
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed logs.0.10.0
-> installed fpath.0.7.3
-> installed bos.0.2.1
-> installed webbrowser.0.6.2
-> installed dune.3.22.0
-> installed menhirCST.20260209
-> installed swhid_core.0.1
-> installed stdlib-shims.0.3.0
-> installed menhirLib.20260209
-> installed menhirGLR.20260209
-> installed menhirSdk.20260209
-> installed patch.3.1.0
-> installed re.1.14.0
-> installed sha.1.15.4
-> installed ocamlgraph.2.2.0
-> installed opam-core.2.5.0
-> installed menhir.20260209
-> installed opam-file-format.2.2.0
-> installed opam-format.2.5.0
-> installed topkg-care.1.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-23 10:03.35 ---> saved as "c25562c0a8ec44fea37aa7fd08bd3049b89d48929189327aa3e6cec88d8d0c65"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test topkg-care.1.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile topkg-care 1.1.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved topkg-care.1.1.0 (https://opam.ocaml.org/cache)
-> removed topkg-care.1.1.0
-> installed topkg-care.1.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-23 10:03.58 ---> saved as "c4c6e022175b0b24e1d7c8d7d0a4152ba650d71d21b5de0b1528b81371b54373"
/home/opam: (run (shell "opam reinstall --with-test --verbose topkg-care.1.1.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\" != 'topkg-care.1.1.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 topkg-care 1.1.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [topkg-care.1.1.0: extract]
-> retrieved topkg-care.1.1.0 (cached)
Processing 2/4: [topkg-care: ocaml build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "pkg/pkg.ml" "build" "--pkg-name" "topkg-care" "--dev-pkg" "false" (CWD=/home/opam/.opam/5.4/.opam-switch/build/topkg-care.1.1.0)
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care.ml > src-care/topkg_care.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care.mli > src-care/topkg_care.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care.cmi src-care/topkg_care.mli
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_archive.ml > src-care/topkg_care_archive.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_archive.mli > src-care/topkg_care_archive.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_archive.cmi src-care/topkg_care_archive.mli
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_delegate.ml > src-care/topkg_care_delegate.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_delegate.mli > src-care/topkg_care_delegate.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_pkg.mli > src-care/topkg_care_pkg.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_opam.mli > src-care/topkg_care_opam.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_text.mli > src-care/topkg_care_text.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_text.cmi src-care/topkg_care_text.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_opam.cmi src-care/topkg_care_opam.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_pkg.cmi src-care/topkg_care_pkg.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_delegate.cmi src-care/topkg_care_delegate.mli
- + ocamlfind ocamldep -modules src/topkg.ml > src/topkg.ml.depends
- + ocamlfind ocamldep -modules src/topkg.mli > src/topkg.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg.cmi src/topkg.mli
- + ocamlfind ocamldep -modules src/topkg_build.ml > src/topkg_build.ml.depends
- + ocamlfind ocamldep -modules src/topkg_build.mli > src/topkg_build.mli.depends
- + ocamlfind ocamldep -modules src/topkg_cmd.mli > src/topkg_cmd.mli.depends
- + ocamlfind ocamldep -modules src/topkg_fpath.mli > src/topkg_fpath.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_fpath.cmi src/topkg_fpath.mli
- + ocamlfind ocamldep -modules src/topkg_codec.mli > src/topkg_codec.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_cmd.cmi src/topkg_cmd.mli
- + ocamlfind ocamldep -modules src/topkg_result.mli > src/topkg_result.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_result.cmi src/topkg_result.mli
- + ocamlfind ocamldep -modules src/topkg_conf.mli > src/topkg_conf.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_codec.cmi src/topkg_codec.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_conf.cmi src/topkg_conf.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_build.cmi src/topkg_build.mli
- + ocamlfind ocamldep -modules src/topkg_cmd.ml > src/topkg_cmd.ml.depends
- + ocamlfind ocamldep -modules src/topkg_fpath.ml > src/topkg_fpath.ml.depends
- + ocamlfind ocamldep -modules src/topkg_string.ml > src/topkg_string.ml.depends
- + ocamlfind ocamldep -modules src/topkg_string.mli > src/topkg_string.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_string.cmi src/topkg_string.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_string.cmx src/topkg_string.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_fpath.cmx src/topkg_fpath.ml
- + ocamlfind ocamldep -modules src/topkg_codec.ml > src/topkg_codec.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_cmd.cmx src/topkg_cmd.ml
- + ocamlfind ocamldep -modules src/topkg_os.ml > src/topkg_os.ml.depends
- + ocamlfind ocamldep -modules src/topkg_os.mli > src/topkg_os.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_os.cmi src/topkg_os.mli
- + ocamlfind ocamldep -modules src/topkg_log.ml > src/topkg_log.ml.depends
- + ocamlfind ocamldep -modules src/topkg_log.mli > src/topkg_log.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_log.cmi src/topkg_log.mli
- + ocamlfind ocamldep -modules src/topkg_result.ml > src/topkg_result.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_result.cmx src/topkg_result.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_log.cmx src/topkg_log.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_os.cmx src/topkg_os.ml
- + ocamlfind ocamldep -modules src/topkg_conf.ml > src/topkg_conf.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_codec.cmx src/topkg_codec.ml
- + ocamlfind ocamldep -modules src/topkg_vcs.ml > src/topkg_vcs.ml.depends
- + ocamlfind ocamldep -modules src/topkg_vcs.mli > src/topkg_vcs.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_vcs.cmi src/topkg_vcs.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_vcs.cmx src/topkg_vcs.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_conf.cmx src/topkg_conf.ml
- + ocamlfind ocamldep -modules src/topkg_distrib.ml > src/topkg_distrib.ml.depends
- + ocamlfind ocamldep -modules src/topkg_distrib.mli > src/topkg_distrib.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_distrib.cmi src/topkg_distrib.mli
- + ocamlfind ocamldep -modules src/topkg_opam.ml > src/topkg_opam.ml.depends
- + ocamlfind ocamldep -modules src/topkg_opam.mli > src/topkg_opam.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_opam.cmi src/topkg_opam.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_opam.cmx src/topkg_opam.ml
- + ocamlfind ocamldep -modules src/topkg_fexts.ml > src/topkg_fexts.ml.depends
- + ocamlfind ocamldep -modules src/topkg_fexts.mli > src/topkg_fexts.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_fexts.cmi src/topkg_fexts.mli
- + ocamlfind ocamldep -modules src/topkg_install.ml > src/topkg_install.ml.depends
- + ocamlfind ocamldep -modules src/topkg_install.mli > src/topkg_install.mli.depends
- + ocamlfind ocamldep -modules src/topkg_test.mli > src/topkg_test.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_test.cmi src/topkg_test.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_install.cmi src/topkg_install.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_fexts.cmx src/topkg_fexts.ml
- + ocamlfind ocamldep -modules src/topkg_test.ml > src/topkg_test.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_test.cmx src/topkg_test.ml
- + ocamlfind ocamldep -modules src/topkg_ipc.ml > src/topkg_ipc.ml.depends
- + ocamlfind ocamldep -modules src/topkg_ipc.mli > src/topkg_ipc.mli.depends
- + ocamlfind ocamldep -modules src/topkg_pkg.mli > src/topkg_pkg.mli.depends
- + ocamlfind ocamldep -modules src/topkg_publish.mli > src/topkg_publish.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_publish.cmi src/topkg_publish.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_pkg.cmi src/topkg_pkg.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_ipc.cmi src/topkg_ipc.mli
- + ocamlfind ocamldep -modules src/topkg_pkg.ml > src/topkg_pkg.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_build.cmx src/topkg_build.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_distrib.cmx src/topkg_distrib.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_install.cmx src/topkg_install.ml
- + ocamlfind ocamldep -modules src/topkg_publish.ml > src/topkg_publish.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_publish.cmx src/topkg_publish.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_pkg.cmx src/topkg_pkg.ml
- + ocamlfind ocamldep -modules src/topkg_main.ml > src/topkg_main.ml.depends
- + ocamlfind ocamldep -modules src/topkg_main.mli > src/topkg_main.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_main.cmi src/topkg_main.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_ipc.cmx src/topkg_ipc.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_main.cmx src/topkg_main.ml
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_pkg.ml > src-care/topkg_care_pkg.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg.cmx src/topkg.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_archive.cmx src-care/topkg_care_archive.ml
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_ipc.ml > src-care/topkg_care_ipc.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_ipc.mli > src-care/topkg_care_ipc.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_ipc.cmi src-care/topkg_care_ipc.mli
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_ocamlbuild.ml > src-care/topkg_care_ocamlbuild.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_ocamlbuild.mli > src-care/topkg_care_ocamlbuild.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_ocamlbuild.cmi src-care/topkg_care_ocamlbuild.mli
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_ocamlfind.ml > src-care/topkg_care_ocamlfind.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_ocamlfind.mli > src-care/topkg_care_ocamlfind.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_ocamlfind.cmi src-care/topkg_care_ocamlfind.mli
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_opam.ml > src-care/topkg_care_opam.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_text.ml > src-care/topkg_care_text.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_text.cmx src-care/topkg_care_text.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_ipc.cmx src-care/topkg_care_ipc.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_ocamlbuild.cmx src-care/topkg_care_ocamlbuild.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_ocamlfind.cmx src-care/topkg_care_ocamlfind.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_opam.cmx src-care/topkg_care_opam.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_pkg.cmx src-care/topkg_care_pkg.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_delegate.cmx src-care/topkg_care_delegate.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care.cmx src-care/topkg_care.ml
- + ocamlfind ocamlopt -a -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care src-care/topkg_care_archive.cmx src-care/topkg_care_ipc.cmx src-care/topkg_care_ocamlbuild.cmx src-care/topkg_care_ocamlfind.cmx src-care/topkg_care_text.cmx src-care/topkg_care_opam.cmx src-care/topkg_care_pkg.cmx src-care/topkg_care_delegate.cmx src-care/topkg_care.cmx -o src-care/topkg_care.cmxa
- + ocamlfind ocamlopt -shared -linkall -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care src-care/topkg_care.cmxa -o src-care/topkg_care.cmxs
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care.cmo src-care/topkg_care.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_archive.cmo src-care/topkg_care_archive.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_delegate.cmo src-care/topkg_care_delegate.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_ipc.cmo src-care/topkg_care_ipc.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_ocamlbuild.cmo src-care/topkg_care_ocamlbuild.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_ocamlfind.cmo src-care/topkg_care_ocamlfind.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_opam.cmo src-care/topkg_care_opam.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_pkg.cmo src-care/topkg_care_pkg.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_text.cmo src-care/topkg_care_text.ml
- + ocamlfind ocamlc -a -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care src-care/topkg_care_archive.cmo src-care/topkg_care_ipc.cmo src-care/topkg_care_ocamlbuild.cmo src-care/topkg_care_ocamlfind.cmo src-care/topkg_care_text.cmo src-care/topkg_care_opam.cmo src-care/topkg_care_pkg.cmo src-care/topkg_care_delegate.cmo src-care/topkg_care.cmo -o src-care/topkg_care.cma
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/topkg_bin.ml > src-bin/topkg_bin.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/bistro.mli > src-bin/bistro.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/browse.mli > src-bin/browse.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/build.mli > src-bin/build.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/clean.mli > src-bin/clean.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/cli.mli > src-bin/cli.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/distrib.mli > src-bin/distrib.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/doc.mli > src-bin/doc.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/help.mli > src-bin/help.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/ipc.mli > src-bin/ipc.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/issue.mli > src-bin/issue.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/lint.mli > src-bin/lint.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/log.mli > src-bin/log.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/opam.mli > src-bin/opam.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/publish.mli > src-bin/publish.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/run.mli > src-bin/run.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/status.mli > src-bin/status.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/tag.mli > src-bin/tag.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/test.mli > src-bin/test.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/bistro.cmi src-bin/bistro.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/browse.cmi src-bin/browse.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/build.cmi src-bin/build.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/clean.cmi src-bin/clean.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/cli.cmi src-bin/cli.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/distrib.cmi src-bin/distrib.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/doc.cmi src-bin/doc.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/help.cmi src-bin/help.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/ipc.cmi src-bin/ipc.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/issue.cmi src-bin/issue.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/lint.cmi src-bin/lint.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/log.cmi src-bin/log.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/opam.cmi src-bin/opam.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/publish.cmi src-bin/publish.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/run.cmi src-bin/run.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/status.cmi src-bin/status.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/tag.cmi src-bin/tag.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/test.cmi src-bin/test.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/topkg_bin.cmo src-bin/topkg_bin.ml
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/bistro.ml > src-bin/bistro.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/cli.ml > src-bin/cli.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/cli.cmx src-bin/cli.ml
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/browse.ml > src-bin/browse.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/build.ml > src-bin/build.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/clean.ml > src-bin/clean.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/distrib.ml > src-bin/distrib.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/doc.ml > src-bin/doc.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/help.ml > src-bin/help.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/ipc.ml > src-bin/ipc.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/opam.ml > src-bin/opam.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/opam.cmx src-bin/opam.ml
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/issue.ml > src-bin/issue.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/lint.ml > src-bin/lint.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/log.ml > src-bin/log.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/publish.ml > src-bin/publish.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/run.ml > src-bin/run.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/status.ml > src-bin/status.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/tag.ml > src-bin/tag.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/test.ml > src-bin/test.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/bistro.cmx src-bin/bistro.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/browse.cmx src-bin/browse.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/build.cmx src-bin/build.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/clean.cmx src-bin/clean.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/distrib.cmx src-bin/distrib.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/doc.cmx src-bin/doc.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/help.cmx src-bin/help.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/ipc.cmx src-bin/ipc.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/issue.cmx src-bin/issue.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/lint.cmx src-bin/lint.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/log.cmx src-bin/log.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/publish.cmx src-bin/publish.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/run.cmx src-bin/run.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/status.cmx src-bin/status.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/tag.cmx src-bin/tag.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/test.cmx src-bin/test.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/topkg_bin.cmx src-bin/topkg_bin.ml
- + ocamlfind ocamlopt -linkpkg -g -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin src-care/topkg_care_archive.cmx src/topkg_string.cmx src/topkg_fpath.cmx src/topkg_cmd.cmx src/topkg_result.cmx src/topkg_log.cmx src/topkg_os.cmx src/topkg_codec.cmx src/topkg_vcs.cmx src/topkg_conf.cmx src/topkg_build.cmx src/topkg_opam.cmx src/topkg_distrib.cmx src/topkg_fexts.cmx src/topkg_test.cmx src/topkg_install.cmx src/topkg_publish.cmx src/topkg_pkg.cmx src/topkg_ipc.cmx src/topkg_main.cmx src/topkg.cmx src-care/topkg_care_ipc.cmx src-care/topkg_care_ocamlbuild.cmx src-care/topkg_care_ocamlfind.cmx src-care/topkg_care_text.cmx src-care/topkg_care_opam.cmx src-care/topkg_care_pkg.cmx src-care/topkg_care_delegate.cmx src-care/topkg_care.cmx src-bin/cli.cmx src-bin/bistro.cmx src-bin/browse.cmx src-bin/build.cmx src-bin/clean.cmx src-bin/distrib.cmx src-bin/doc.cmx src-bin/help.cmx src-bin/opam.cmx src-bin/ipc.cmx src-bin/issue.cmx src-bin/lint.cmx src-bin/log.cmx src-bin/publish.cmx src-bin/run.cmx src-bin/status.cmx src-bin/tag.cmx src-bin/test.cmx src-bin/topkg_bin.cmx -o src-bin/topkg_bin.native
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/toy_github_delegate.ml > src-bin/toy_github_delegate.ml.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/toy_github_delegate.cmo src-bin/toy_github_delegate.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/toy_github_delegate.cmx src-bin/toy_github_delegate.ml
- + ocamlfind ocamlopt -linkpkg -g -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin src-care/topkg_care_archive.cmx src/topkg_string.cmx src/topkg_fpath.cmx src/topkg_cmd.cmx src/topkg_result.cmx src/topkg_log.cmx src/topkg_os.cmx src/topkg_codec.cmx src/topkg_vcs.cmx src/topkg_conf.cmx src/topkg_build.cmx src/topkg_opam.cmx src/topkg_distrib.cmx src/topkg_fexts.cmx src/topkg_test.cmx src/topkg_install.cmx src/topkg_publish.cmx src/topkg_pkg.cmx src/topkg_ipc.cmx src/topkg_main.cmx src/topkg.cmx src-care/topkg_care_ipc.cmx src-care/topkg_care_ocamlbuild.cmx src-care/topkg_care_ocamlfind.cmx src-care/topkg_care_text.cmx src-care/topkg_care_opam.cmx src-care/topkg_care_pkg.cmx src-care/topkg_care_delegate.cmx src-care/topkg_care.cmx src-bin/toy_github_delegate.cmx -o src-bin/toy_github_delegate.native
- # Parallel statistics: { count(total): 5(164), max: 18, min: 2, average(total): 9.800(1.268) }
-> compiled topkg-care.1.1.0
-> removed topkg-care.1.1.0
-> installed topkg-care.1.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-23 10:04.23 ---> saved as "ce379bb622af442f0bfdc99e65ddf8aa07ce71b34191c420e58a051b2cbf9c8a"
Job succeeded
2026-03-23 10:05.24: Job succeeded