Build:
- 0
2026-01-23 16:25.21: New job: test ojs-base.0.6.0 with menhirCST.20260122, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29263/head (1b37faa806f25ffae47a4204ac0b15c79fa5a828)
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/29263/head" && git reset --hard 1b37faa8
git fetch origin master
git merge --no-edit 8e1b9a49e880d409b435a16017fd056e29befb09
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:423b7147c04b7e40a2168c2d5b3c2e77064aa5b144995d90eb305e6eb6874610
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 menhirCST.20260122 20260122
RUN opam reinstall menhirCST.20260122; \
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" != 'menhirCST.20260122' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall ojs-base.0.6.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" != 'ojs-base.0.6.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 ojs-base.0.6.0) || true
RUN opam reinstall --with-test --verbose ojs-base.0.6.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" != 'ojs-base.0.6.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-01-23 16:25.21: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:423b7147c04b7e40a2168c2d5b3c2e77064aa5b144995d90eb305e6eb6874610-menhirCST.20260122-ojs-base.0.6.0-1b37faa806f25ffae47a4204ac0b15c79fa5a828"
2026-01-23 16:25.21: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:423b7147c04b7e40a2168c2d5b3c2e77064aa5b144995d90eb305e6eb6874610)
(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 menhirCST.20260122 20260122"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall menhirCST.20260122;\
\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\" != 'menhirCST.20260122' && 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 ojs-base.0.6.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\" != 'ojs-base.0.6.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 ojs-base.0.6.0) || true"))
(run (shell "opam reinstall --with-test --verbose ojs-base.0.6.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\" != 'ojs-base.0.6.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-01-23 16:25.21: Waiting for resource in pool OCluster
2026-01-24 09:30.30: Waiting for worker…
2026-01-24 09:33.19: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 8e1b9a49e8 Merge pull request #29269 from mseri/ocurl
Merge made by the 'ort' strategy.
packages/menhir/menhir.20260122/opam | 32 ++++++++++++++++++++++++++++++
packages/menhirCST/menhirCST.20260122/opam | 30 ++++++++++++++++++++++++++++
packages/menhirGLR/menhirGLR.20260122/opam | 30 ++++++++++++++++++++++++++++
packages/menhirLib/menhirLib.20260122/opam | 31 +++++++++++++++++++++++++++++
packages/menhirSdk/menhirSdk.20260122/opam | 31 +++++++++++++++++++++++++++++
5 files changed, 154 insertions(+)
create mode 100644 packages/menhir/menhir.20260122/opam
create mode 100644 packages/menhirCST/menhirCST.20260122/opam
create mode 100644 packages/menhirGLR/menhirGLR.20260122/opam
create mode 100644 packages/menhirLib/menhirLib.20260122/opam
create mode 100644 packages/menhirSdk/menhirSdk.20260122/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:423b7147c04b7e40a2168c2d5b3c2e77064aa5b144995d90eb305e6eb6874610)
2026-01-24 09:34.15 ---> using "af1ebcbd2c0e8a2a9bd41972ff6b1f2b27bf9dd52d9b45e003eb0eaad274be03" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-24 09:34.15 ---> using "0b1605df1edd48befa60e43e28089d53de6288a60ab121fcfb5f9e2f9ffa99b9" 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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-24 09:34.15 ---> using "0e536f61c2590e1a9131e4e3e33fd4f3ee72adbf5f314ed8459ef4692f4cb78a" 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 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, 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.2
2026-01-24 09:34.15 ---> using "7cc9884256c58e23e28c1fb52f1e0590db522ddca2def346a30d00cabed784f8" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-01-24 09:34.15 ---> using "c6b197fb983b7c94be824da0b3230330cdb51a6a02ab45dc477f1716c05485d0" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-24 09:34.16 ---> using "de85270fc9919443df1ad0f37607458d0cc4b2ad1937c3250b49b6f24dbfe19f" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-24 09:34.16 ---> using "8793726468c55dd7a0801966d69b32171591c6d32174d5f305a408d7f7e0ef8a" 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 [9670 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [97.9 kB]
- Fetched 9999 kB in 1s (11.1 MB/s)
- Reading package lists...
-
2026-01-24 09:34.16 ---> using "c87d17d9c10004cb7c14063ec8dde828d77cf7182f78248152f69e20f2068a70" from cache
/home/opam: (run (shell "opam pin add -k version -yn menhirCST.20260122 20260122"))
menhirCST is now pinned to version 20260122
2026-01-24 09:34.16 ---> using "6adb04c19be8a7addf5214b883a53bfd7504efb87f709deaf29d0f434d920f04" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall menhirCST.20260122;\
\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\" != 'menhirCST.20260122' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
menhirCST.20260122 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
- install dune 3.21.0 [required by menhirCST]
- install menhirCST 20260122 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.0 (cached)
-> retrieved menhirCST.20260122 (cached)
-> installed dune.3.21.0
-> installed menhirCST.20260122
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-24 09:34.16 ---> using "1e2b01cb8b51eff91643c34f2fd68775c9ea898dfca7d9892a6468afe26622b7" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ojs-base.0.6.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\" != 'ojs-base.0.6.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ojs-base.0.6.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 88 packages
- install angstrom 0.16.1 [required by uri]
- install asn1-combinators 0.3.2 [required by x509]
- install astring 0.8.5 [required by websocket]
- install base v0.16.4 [required by ppx_sexp_conv]
- install base-bytes base [required by cohttp]
- install base64 3.5.2 [required by ojs-base]
- install bigstringaf 0.10.0 [required by angstrom]
- install bos 0.2.1 [required by ca-certs]
- install ca-certs 1.0.1 [required by conduit-lwt-unix]
- install cmdliner 1.3.0 [required by js_of_ocaml-compiler, cohttp-lwt-unix]
- install cohttp 5.3.1 [required by ojs-base]
- install cohttp-lwt 5.3.0 [required by cohttp-lwt-unix]
- install cohttp-lwt-unix 5.3.0 [required by websocket-lwt-unix]
- install conduit 7.0.0 [required by websocket]
- install conduit-lwt 7.0.0 [required by cohttp-lwt-unix]
- install conduit-lwt-unix 7.0.0 [required by websocket-lwt-unix]
- install conf-autoconf 0.2 [required by ojs-base]
- install conf-gmp 5 [required by conf-gmp-powm-sec, zarith]
- install conf-gmp-powm-sec 4 [required by mirage-crypto-pk]
- install conf-pkg-config 4 [required by zarith]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install digestif 1.3.0 [required by mirage-crypto-rng]
- install domain-name 0.5.0 [required by ipaddr]
- install dune-configurator 3.21.0 [required by lwt]
- install duration 0.2.1 [required by mirage-crypto-rng]
- install eqaf 0.10 [required by digestif, mirage-crypto]
- install fmt 0.11.0 [required by cohttp-lwt-unix]
- install fpath 0.7.3 [required by ca-certs]
- install gen 1.1 [required by sedlex]
- install gmap 0.3.0 [required by x509]
- install ipaddr 5.6.1 [required by conduit]
- install ipaddr-sexp 5.6.1 [required by conduit]
- install iri 1.1.0 [required by xtmpl]
- install js_of_ocaml 5.9.1 [required by ojs-base]
- install js_of_ocaml-compiler 5.9.1 [required by js_of_ocaml]
- install js_of_ocaml-ppx 5.9.1 [required by xtmpl]
- install jsonm 1.0.2 [required by cohttp]
- install kdf 1.0.0 [required by x509]
- install logs 0.10.0 [required by mirage-crypto-rng, conduit, cohttp-lwt-unix]
- install lwt 5.7.0 [required by ojs-base]
- install lwt_log 1.1.2 [required by websocket-lwt-unix]
- install lwt_ppx 5.9.1 [required by ojs-base]
- install macaddr 5.6.1 [required by ipaddr]
- install magic-mime 1.3.1 [required by ojs-base]
- install menhir 20260122 [required by js_of_ocaml-compiler]
- install menhirGLR 20260122 [required by menhir]
- install menhirLib 20260122 [required by js_of_ocaml-compiler]
- install menhirSdk 20260122 [required by js_of_ocaml-compiler]
- install mirage-crypto 2.0.2 [required by mirage-crypto-rng]
- install mirage-crypto-ec 2.0.2 [required by x509]
- install mirage-crypto-pk 2.0.2 [required by x509]
- install mirage-crypto-rng 2.0.2 [required by websocket]
- install num 1.6 [required by sexplib]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocamlbuild 0.16.1 [required by jsonm, astring]
- install ocamlfind 1.9.8 [required by ojs-base]
- install ocplib-endian 1.2 [required by lwt, websocket]
- install ohex 0.2.0 [required by ca-certs]
- install ojs-base 0.6.0
- install parsexp v0.16.0 [required by sexplib]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.0.3 [required by ppx_deriving_yojson]
- install ppx_deriving_yojson 3.9.1 [required by ojs-base]
- install ppx_sexp_conv v0.16.0 [required by cohttp]
- install ppx_tools 6.6 [required by xtmpl]
- install ppxlib 0.35.0 [required by lwt_ppx, js_of_ocaml, ppx_deriving_yojson]
- install ptime 1.2.0 [required by ca-certs]
- install re 1.14.0 [required by cohttp, xtmpl]
- install rresult 0.7.0 [required by bos]
- install sedlex 3.7 [required by xtmpl]
- install seq base [required by gen]
- install sexplib v0.16.0 [required by websocket-lwt-unix]
- install sexplib0 v0.16.0 [required by cohttp]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install stringext 1.6.0 [required by cohttp]
- install topkg 1.1.1 [required by jsonm, astring]
- install uri 4.4.0 [required by cohttp]
- install uri-sexp 4.4.0 [required by cohttp]
- install uunf 17.0.0 [required by iri]
- install uutf 1.0.4 [required by xtmpl]
- install websocket 2.17 [required by ojs-base]
- install websocket-lwt-unix 2.17 [required by ojs-base]
- install x509 1.0.6 [required by ca-certs]
- install xtmpl 0.18.0 [required by ojs-base]
- install yojson 3.0.0 [required by ojs-base]
- install zarith 1.14 [required by mirage-crypto-pk]
The following system packages will first need to be installed:
autoconf libgmp-dev pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "autoconf" "libgmp-dev" "pkg-config"
- Selecting previously unselected package m4.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20622 files and directories currently installed.)
- Preparing to unpack .../0-m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Selecting previously unselected package autoconf.
- Preparing to unpack .../1-autoconf_2.72-3.1_all.deb ...
- Unpacking autoconf (2.72-3.1) ...
- Selecting previously unselected package autotools-dev.
- Preparing to unpack .../2-autotools-dev_20240727.1_all.deb ...
- Unpacking autotools-dev (20240727.1) ...
- Selecting previously unselected package automake.
- Preparing to unpack .../3-automake_1%3a1.17-4_all.deb ...
- Unpacking automake (1:1.17-4) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../4-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../5-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../6-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../7-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../8-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../9-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up m4 (1.4.19-8) ...
- Setting up autotools-dev (20240727.1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up autoconf (2.72-3.1) ...
- Setting up automake (1:1.17-4) ...
- update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved asn1-combinators.0.3.2 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved base.v0.16.4 (cached)
-> retrieved base64.3.5.2 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved ca-certs.1.0.1 (cached)
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved cohttp.5.3.1 (cached)
-> retrieved cohttp-lwt.5.3.0, cohttp-lwt-unix.5.3.0 (cached)
-> installed base64.3.5.2
-> retrieved conduit.7.0.0, conduit-lwt.7.0.0, conduit-lwt-unix.7.0.0 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-gmp-powm-sec.4 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-autoconf.0.2
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> installed conf-gmp-powm-sec.4
-> installed csexp.1.5.2
-> retrieved digestif.1.3.0 (cached)
-> retrieved domain-name.0.5.0 (cached)
-> installed domain-name.0.5.0
-> installed cppo.1.8.0
-> retrieved dune-configurator.3.21.0 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved gen.1.1 (cached)
-> retrieved gmap.0.3.0 (cached)
-> retrieved ipaddr.5.6.1, ipaddr-sexp.5.6.1, macaddr.5.6.1 (cached)
-> retrieved iri.1.1.0 (cached)
-> installed cmdliner.1.3.0
-> installed duration.0.2.1
-> installed gmap.0.3.0
-> installed macaddr.5.6.1
-> installed eqaf.0.10
-> retrieved js_of_ocaml.5.9.1, js_of_ocaml-compiler.5.9.1, js_of_ocaml-ppx.5.9.1 (cached)
-> installed dune-configurator.3.21.0
-> installed ipaddr.5.6.1
-> installed digestif.1.3.0
-> retrieved jsonm.1.0.2 (cached)
-> retrieved kdf.1.0.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt.5.7.0 (cached)
-> retrieved lwt_log.1.1.2 (cached)
-> retrieved lwt_ppx.5.9.1 (cached)
-> retrieved magic-mime.1.3.1 (cached)
-> retrieved menhir.20260122, menhirGLR.20260122, menhirLib.20260122, menhirSdk.20260122 (cached)
-> installed bigstringaf.0.10.0
-> installed magic-mime.1.3.1
-> retrieved mirage-crypto.2.0.2, mirage-crypto-ec.2.0.2, mirage-crypto-pk.2.0.2, mirage-crypto-rng.2.0.2 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> installed menhirGLR.20260122
-> installed menhirLib.20260122
-> installed menhirSdk.20260122
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved ohex.0.2.0 (cached)
-> retrieved ojs-base.0.6.0 (cached)
-> retrieved parsexp.v0.16.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.0.3 (cached)
-> retrieved ppx_deriving_yojson.3.9.1 (cached)
-> retrieved ppx_sexp_conv.v0.16.0 (cached)
-> retrieved ppx_tools.6.6 (cached)
-> installed ohex.0.2.0
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved sedlex.3.7 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib.v0.16.0 (cached)
-> retrieved sexplib0.v0.16.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved stringext.1.6.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0 (cached)
-> retrieved uunf.17.0.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved websocket.2.17, websocket-lwt-unix.2.17 (cached)
-> installed stdlib-shims.0.3.0
-> retrieved x509.1.0.6 (cached)
-> retrieved xtmpl.0.18.0 (cached)
-> retrieved yojson.3.0.0 (cached)
-> installed num.1.6
-> installed sexplib0.v0.16.0
-> installed mirage-crypto.2.0.2
-> installed gen.1.1
-> installed angstrom.0.16.1
-> installed stringext.1.6.0
-> retrieved zarith.1.14 (cached)
-> installed re.1.14.0
-> installed kdf.1.0.0
-> installed yojson.3.0.0
-> installed parsexp.v0.16.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ppx_tools.6.6
-> installed uri.4.4.0
-> installed sexplib.v0.16.0
-> installed ocplib-endian.1.2
-> installed ocamlbuild.0.16.1
-> installed base.v0.16.4
-> installed menhir.20260122
-> installed zarith.1.14
-> installed lwt.5.7.0
-> installed lwt_log.1.1.2
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed asn1-combinators.0.3.2
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed ppxlib.0.35.0
-> installed lwt_ppx.5.9.1
-> installed ppx_sexp_conv.v0.16.0
-> installed sedlex.3.7
-> installed uunf.17.0.0
-> installed ppx_deriving.6.0.3
-> installed ipaddr-sexp.5.6.1
-> installed uri-sexp.4.4.0
-> installed ppx_deriving_yojson.3.9.1
-> installed iri.1.1.0
-> installed cohttp.5.3.1
-> installed js_of_ocaml-compiler.5.9.1
-> installed logs.0.10.0
-> installed mirage-crypto-rng.2.0.2
-> installed mirage-crypto-pk.2.0.2
-> installed conduit.7.0.0
-> installed cohttp-lwt.5.3.0
-> installed websocket.2.17
-> installed bos.0.2.1
-> installed conduit-lwt.7.0.0
-> installed mirage-crypto-ec.2.0.2
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed conduit-lwt-unix.7.0.0
-> installed cohttp-lwt-unix.5.3.0
-> installed websocket-lwt-unix.2.17
-> installed js_of_ocaml.5.9.1
-> installed js_of_ocaml-ppx.5.9.1
-> installed xtmpl.0.18.0
-> installed ojs-base.0.6.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-24 09:35.33 ---> saved as "b4525e8234747e1273b49080305680cf80c5fbffed484f775faad4d88aa3f1b5"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test ojs-base.0.6.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile ojs-base 0.6.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ojs-base.0.6.0 (https://opam.ocaml.org/cache)
-> removed ojs-base.0.6.0
-> installed ojs-base.0.6.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-24 09:35.52 ---> saved as "213c5c47f6b271d753bbb61093ad0fec7265155b6768998c2dd73b651f8adb68"
/home/opam: (run (shell "opam reinstall --with-test --verbose ojs-base.0.6.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\" != 'ojs-base.0.6.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 ojs-base 0.6.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [ojs-base.0.6.0: extract]
-> retrieved ojs-base.0.6.0 (cached)
Processing 2/4: [ojs-base: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./configure" "--prefix" "/home/opam/.opam/4.14" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ojs-base.0.6.0)
- checking for ocamlc... /home/opam/.opam/4.14/bin/ocamlc
- found OCaml version 4.14.2 (4.14.2)
- checking for ocamlfind... /home/opam/.opam/4.14/bin/ocamlfind
- checking for camlp4... no
- checking for ocamlprof... /home/opam/.opam/4.14/bin/ocamlprof
- checking for ocamlmktop... /home/opam/.opam/4.14/bin/ocamlmktop
- checking for ocamlmklib... /home/opam/.opam/4.14/bin/ocamlmklib
- checking for ocamlyacc... /home/opam/.opam/4.14/bin/ocamlyacc
- checking for ocamllex... /home/opam/.opam/4.14/bin/ocamllex
- checking for ocamldoc... /home/opam/.opam/4.14/bin/ocamldoc
- checking for ocamldep... /home/opam/.opam/4.14/bin/ocamldep
- checking for ocamlopt... /home/opam/.opam/4.14/bin/ocamlopt
- checking for ocaml... /home/opam/.opam/4.14/bin/ocaml
- checking for ocamllex.opt... /home/opam/.opam/4.14/bin/ocamllex.opt
- we can use /home/opam/.opam/4.14/bin/ocamllex.opt
- checking for ocamldoc.opt... /home/opam/.opam/4.14/bin/ocamldoc.opt
- we can use /home/opam/.opam/4.14/bin/ocamldoc.opt
- checking for ocamldep.opt... /home/opam/.opam/4.14/bin/ocamldep.opt
- we can use /home/opam/.opam/4.14/bin/ocamldep.opt
- checking for ocamlopt.opt... /home/opam/.opam/4.14/bin/ocamlopt.opt
- we can use /home/opam/.opam/4.14/bin/ocamlopt.opt
- checking for ocamlc.opt... /home/opam/.opam/4.14/bin/ocamlc.opt
- we can use /home/opam/.opam/4.14/bin/ocamlc.opt
- Objective-Caml version 4.14.2 (4.14.2)
- interpreter: /home/opam/.opam/4.14/bin/ocaml
- bytecode compiler: /home/opam/.opam/4.14/bin/ocamlc.opt
- native code compiler: /home/opam/.opam/4.14/bin/ocamlopt.opt
- documentation generator(s): /home/opam/.opam/4.14/bin/ocamldoc, /home/opam/.opam/4.14/bin/ocamldoc.opt
- lexer generator: /home/opam/.opam/4.14/bin/ocamllex.opt
- parser generator: /home/opam/.opam/4.14/bin/ocamlyacc
- dependencies generator: /home/opam/.opam/4.14/bin/ocamldep.opt
- library builder: /home/opam/.opam/4.14/bin/ocamlmklib
- toplevel builder: /home/opam/.opam/4.14/bin/ocamlmktop
- profiler: /home/opam/.opam/4.14/bin/ocamlprof
- ocamlfind: /home/opam/.opam/4.14/bin/ocamlfind
-
- ### checking required tools and libraries ###
- checking for js_of_ocaml... ok
- checking for cohttp... ok
- checking for websocket... ok
- checking for websocket-lwt-unix... ok
- checking for lwt.unix... ok
- checking for yojson... ok
- checking for ppx_deriving_yojson... ok
- checking for base64... ok
- checking for xtmpl... ok
- checking for magic-mime... ok
- checking for js_of_ocaml... /home/opam/.opam/4.14/bin/js_of_ocaml
-
- ###
- configure: creating ./config.status
- config.status: creating master.Makefile
- config.status: creating src/META
-
- ### Results of configuration ###
-
- Version is 0.6.0
- Package to be installed: ojs-base ojs-base.js
-
Processing 2/4: [ojs-base: make all]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "all" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ojs-base.0.6.0)
- cd src && make all
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ojs-base.0.6.0/src'
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_misc.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_types.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_rpc.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_path.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_misc.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_types.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_rpc.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_path.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -o ojs-base.cmxa ojs_misc.cmx ojs_types.cmx ojs_rpc.cmx ojs_path.cmx
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_tmpl.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_server.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_tmpl.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_server.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -o ojs-base-server.cmxa ojs_tmpl.cmx ojs_server.cmx
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -shared -o ojs-base.cmxs ojs_misc.cmx ojs_types.cmx ojs_rpc.cmx ojs_path.cmx
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -rectypes -package ppx_tools.metaquot,xtmpl ppx_ojs.ml
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /home/opam/.opam/4.14/lib/ocaml, /home/opam/.opam/4.14/lib/ocaml/compiler-libs
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -o ppx_ojs -package ppx_tools.metaquot,str,xtmpl \
- -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -linkpkg ppx_ojs.cmx
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /home/opam/.opam/4.14/lib/ocaml/compiler-libs, /home/opam/.opam/4.14/lib/ocaml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsed_types.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsed_types.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -o ojs-editor.cmxa ojsed_types.cmx
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsed_files.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsed_server.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsed_files.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsed_server.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -o ojs-editor-server.cmxa ojsed_files.cmx ojsed_server.cmx
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_types.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_types.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -o ojs-filetree.cmxa ojsft_types.cmx
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_find.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_files.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_server.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_find.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_files.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_server.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -o ojs-filetree-server.cmxa ojsft_find.cmx ojsft_files.cmx ojsft_server.cmx
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsl_types.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsl_types.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -o ojs-list.cmxa ojsl_types.cmx
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsl_server.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsl_server.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -o ojs-list-server.cmxa ojsl_server.cmx
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_misc.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_types.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_rpc.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_path.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-base.cma ojs_misc.cmo ojs_types.cmo ojs_rpc.cmo ojs_path.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_tmpl.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_server.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-base-server.cma ojs_tmpl.cmo ojs_server.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c -package js_of_ocaml-ppx ojs_js.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c -package js_of_ocaml-ppx ojsmsg_js.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c -package js_of_ocaml-ppx ojs_js.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-base-js.cma ojs_js.cmo ojsmsg_js.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -rectypes -package ppx_tools.metaquot,xtmpl ppx_ojs.ml
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /home/opam/.opam/4.14/lib/ocaml, /home/opam/.opam/4.14/lib/ocaml/compiler-libs
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -o ppx_ojs.byte -package ppx_tools.metaquot,str,xtmpl \
- -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -linkpkg ppx_ojs.cmo
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /home/opam/.opam/4.14/lib/ocaml/compiler-libs, /home/opam/.opam/4.14/lib/ocaml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsed_types.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-editor.cma ojsed_types.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsed_files.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsed_server.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-editor-server.cma ojsed_files.cmo ojsed_server.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_ace.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- File "ojs_ace.ml", line 38, characters 18-33:
- 38 | Unsafe.new_obj (Unsafe.variable "ace.UndoManager") [| |]
- ^^^^^^^^^^^^^^^
- Alert deprecated: Js_of_ocaml.Js.Unsafe.variable
- [since 2.6] use Js.Unsafe.pure_js_expr instead
- File "ojs_ace.ml", line 58, characters 19-34:
- 58 | (Unsafe.new_obj (Unsafe.variable "ace.EditSession")
- ^^^^^^^^^^^^^^^
- Alert deprecated: Js_of_ocaml.Js.Unsafe.variable
- [since 2.6] use Js.Unsafe.pure_js_expr instead
- File "ojs_ace.ml", line 62, characters 19-34:
- 62 | (Unsafe.new_obj (Unsafe.variable "ace.EditSession")
- ^^^^^^^^^^^^^^^
- Alert deprecated: Js_of_ocaml.Js.Unsafe.variable
- [since 2.6] use Js.Unsafe.pure_js_expr instead
- File "ojs_ace.ml", line 98, characters 12-27:
- 98 | let ace = ((Unsafe.variable "ace") : ace Js.t)
- ^^^^^^^^^^^^^^^
- Alert deprecated: Js_of_ocaml.Js.Unsafe.variable
- [since 2.6] use Js.Unsafe.pure_js_expr instead
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c -package js_of_ocaml-ppx ojsed_js.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c -package js_of_ocaml-ppx ojsed_js.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-editor-js.cma ojs_ace.cmo ojsed_js.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_types.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-filetree.cma ojsft_types.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_find.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_files.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_server.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-filetree-server.cma ojsft_find.cmo ojsft_files.cmo ojsft_server.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c -package js_of_ocaml-ppx ojsft_js.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c -package js_of_ocaml-ppx ojsft_js.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-filetree-js.cma ojsft_js.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-list.cma ojsl_types.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-list-server.cma ojsl_server.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c -package js_of_ocaml-ppx ojsl_js.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-list-js.cma ojsl_js.cmo
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ojs-base.0.6.0/src'
-> compiled ojs-base.0.6.0
-> removed ojs-base.0.6.0
Processing 4/4: [ojs-base: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ojs-base.0.6.0)
- cd src && make install
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ojs-base.0.6.0/src'
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsl_js.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-list-js.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-list-server.a
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-list-server.cmxa
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-list-server.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsl_server.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsl_server.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsl_server.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-list.a
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-list.cmxa
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-list.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsl_types.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsl_types.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsl_types.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_js.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_ace.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-editor-js.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-editor-server.a
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-editor-server.cmxa
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-editor-server.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_server.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_files.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_server.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_files.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_server.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_files.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-editor.a
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-editor.cmxa
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-editor.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_types.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_types.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_types.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_js.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-filetree-js.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-filetree-server.a
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-filetree-server.cmxa
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-filetree-server.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_server.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_files.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_find.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_server.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_files.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_find.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_server.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_files.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_find.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-filetree.a
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-filetree.cmxa
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-filetree.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_types.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_types.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_types.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsmsg_js.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_js.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-base-js.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ppx_ojs.byte
- Installed /home/opam/.opam/4.14/lib/ojs-base/ppx_ojs
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-base-server.a
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-base-server.cmxa
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-base-server.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_server.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_tmpl.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_server.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_tmpl.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_server.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_tmpl.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-base.cmxs
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-base.a
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-base.cmxa
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-base.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_path.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_rpc.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_types.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_misc.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_path.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_rpc.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_types.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_misc.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_path.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_rpc.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_types.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_misc.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/META
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ojs-base.0.6.0/src'
-> installed ojs-base.0.6.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-24 09:36.10 ---> saved as "e012cdcbd18bcf031865b90f748b527f3a065f59853e29e51b7c3ce03d6a76ad"
Job succeeded
2026-01-24 09:36.15: Job succeeded