(not at the head of any monitored branch or PR)
2026-04-10 17:57.31: New job: test topkg-care.1.1.0 with dune.3.22.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
                              on debian-13-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
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 dune.3.22.2 3.22.2
RUN opam reinstall dune.3.22.2; \
    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" != 'dune.3.22.2' && 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-04-10 17:57.31: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune.3.22.2-topkg-care.1.1.0-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:57.31: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
 (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 dune.3.22.2 3.22.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.22.2;\
             \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\" != 'dune.3.22.2' && 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-04-10 17:57.31: Waiting for resource in pool OCluster
2026-04-11 02:08.47: Waiting for worker…
2026-04-11 02:10.59: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files:  91% (17065/18686)
Updating files:  92% (17192/18686)
Updating files:  93% (17378/18686)
Updating files:  94% (17565/18686)
Updating files:  95% (17752/18686)
Updating files:  96% (17939/18686)
Updating files:  97% (18126/18686)
Updating files:  98% (18313/18686)
Updating files:  99% (18500/18686)
Updating files: 100% (18686/18686)
Updating files: 100% (18686/18686), done.
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
 packages/chrome-trace/chrome-trace.3.22.2/opam     | 39 +++++++++++
 .../dune-action-plugin.3.22.2/opam                 | 52 +++++++++++++++
 .../dune-action-trace.3.22.2/opam                  | 39 +++++++++++
 .../dune-build-info/dune-build-info.3.22.2/opam    | 45 +++++++++++++
 .../dune-configurator.3.22.2/opam                  | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.2/opam           | 42 ++++++++++++
 .../dune-private-libs.3.22.2/opam                  | 50 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam     | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.2/opam             | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.2/opam           | 37 +++++++++++
 packages/dune/dune.3.22.2/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.2/opam                       | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.2/opam                   | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam         | 43 +++++++++++++
 packages/ordering/ordering.3.22.2/opam             | 38 +++++++++++
 packages/stdune/stdune.3.22.2/opam                 | 46 +++++++++++++
 packages/top-closure/top-closure.3.22.2/opam       | 38 +++++++++++
 packages/xdg/xdg.3.22.2/opam                       | 39 +++++++++++
 18 files changed, 796 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
 create mode 100644 packages/dune-site/dune-site.3.22.2/opam
 create mode 100644 packages/dune/dune.3.22.2/opam
 create mode 100644 packages/dyn/dyn.3.22.2/opam
 create mode 100644 packages/fs-io/fs-io.3.22.2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
 create mode 100644 packages/ordering/ordering.3.22.2/opam
 create mode 100644 packages/stdune/stdune.3.22.2/opam
 create mode 100644 packages/top-closure/top-closure.3.22.2/opam
 create mode 100644 packages/xdg/xdg.3.22.2/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
2026-04-11 02:11.33 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" 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-04-11 02:11.33 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" 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-04-11 02:11.33 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" 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       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages    ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.3
2026-04-11 02:11.33 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" 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-04-11 02:11.33 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 02:11.34 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 02:11.34 ---> using "bb36992fd0066703535b2984ee1ead3db92bb1f04a8df092631924067dac4082" 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 [121 kB]
- Fetched 211 kB in 0s (1777 kB/s)
- Reading package lists...
- 
2026-04-11 02:11.34 ---> using "e0d9ada0baddc41d2c835edef7d0cf7cceebd2dadac41fda17c9e860b5313a74" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 02:11.34 ---> using "a60db6b945be7f2fc9953546cee71bf416921d54f02951a4c9176dbdf1065520" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.22.2;\
                        \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\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.22.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2  (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:11.34 ---> using "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46" 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 28 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 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 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)
-> installed menhirCST.20260209
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocamlgraph.2.2.0  (cached)
-> retrieved opam-core.2.5.0, opam-format.2.5.0  (cached)
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> 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 stdlib-shims.0.3.0
-> installed patch.3.1.0
-> installed swhid_core.0.1
-> installed re.1.14.0
-> installed sha.1.15.4
-> installed ocamlgraph.2.2.0
-> installed cmdliner.2.1.0
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed menhir.20260209
-> installed opam-file-format.2.2.0
-> 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 opam-core.2.5.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-04-11 02:12.44 ---> saved as "af6b99ce50e5818035da427a602bbe531566d53e698ef26763e83a82f0e6981c"

/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-04-11 02:13.08 ---> saved as "3b3f356b46f32794b2696b32dc462aec3c0a836a05e08f8f38947902abb06ce7"

/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/4.14/.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-04-11 02:13.29 ---> saved as "753e61a420f1c579ddb5425782ee630ce25fbfcd0333735caa5ecd40c59fce33"
Job succeeded
2026-04-11 02:13.56: Job succeeded