(not at the head of any monitored branch or PR)
2026-03-17 12:50.58: New job: test ojs-base.0.6.0 with lwt_ppx.2.0.3, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (395113449576622af70540fb22e5d90e18554bdc)
                              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/29530/head" && git reset --hard 39511344
git fetch origin master
git merge --no-edit e589be2bb3f3c3428c9c98a122428f3ad2d44845
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn lwt_ppx.2.0.3 2.0.3
RUN opam reinstall lwt_ppx.2.0.3; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'lwt_ppx.2.0.3' && 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-03-17 12:50.58: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-lwt_ppx.2.0.3-ojs-base.0.6.0-395113449576622af70540fb22e5d90e18554bdc"
2026-03-17 12:50.58: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn lwt_ppx.2.0.3 2.0.3"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall lwt_ppx.2.0.3;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'lwt_ppx.2.0.3' && 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-03-17 12:50.58: Waiting for resource in pool OCluster
2026-03-17 13:01.23: Waiting for worker…
2026-03-17 13:05.15: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files:  83% (15384/18444)
Updating files:  84% (15493/18444)
Updating files:  85% (15678/18444)
Updating files:  86% (15862/18444)
Updating files:  87% (16047/18444)
Updating files:  88% (16231/18444)
Updating files:  89% (16416/18444)
Updating files:  90% (16600/18444)
Updating files:  91% (16785/18444)
Updating files:  92% (16969/18444)
Updating files:  93% (17153/18444)
Updating files:  94% (17338/18444)
Updating files:  95% (17522/18444)
Updating files:  96% (17707/18444)
Updating files:  97% (17891/18444)
Updating files:  98% (18076/18444)
Updating files:  99% (18260/18444)
Updating files: 100% (18444/18444)
Updating files: 100% (18444/18444), done.
HEAD is now at e589be2bb3 Merge pull request #29546 from johnwhitington/opam-publish-camlpdf.2.9
Merge made by the 'ort' strategy.
 packages/bimage-lwt/bimage-lwt.0.3.0/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.3.1/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.4.0/opam    | 6 +++++-
 packages/caqti-lwt/caqti-lwt.0.11.0/opam     | 4 +++-
 packages/caqti-lwt/caqti-lwt.1.0.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.2.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.3.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.6.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.7.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.8.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.9.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.0.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.1.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.2.4/opam      | 6 +++++-
 packages/fuseau-lwt/fuseau-lwt.0.1/opam      | 6 +++++-
 packages/lambda-term/lambda-term.1.13/opam   | 6 +++++-
 packages/lambda-term/lambda-term.2.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.2/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.3/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0/opam    | 6 +++++-
 packages/lambda-term/lambda-term.3.0.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.1.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.2.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.2/opam  | 6 +++++-
 packages/lwt_domain/lwt_domain.0.1.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.2.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.3.0/opam    | 6 +++++-
 packages/lwt_eio/lwt_eio.0.1/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.2/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.3/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.4/opam            | 7 ++++++-
 packages/lwt_eio/lwt_eio.0.5.1/opam          | 7 ++++++-
 packages/lwt_eio/lwt_eio.0.5/opam            | 7 ++++++-
 packages/lwt_glib/lwt_glib.1.0.1/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.0/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.1/opam        | 6 +++++-
 packages/lwt_log/lwt_log.1.1.0/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.1/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.4/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.3/opam          | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.10/opam | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.6/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.7/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.8/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.9/opam  | 6 +++++-
 packages/mwt/mwt.0.1.0/opam                  | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-1/opam      | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-2/opam      | 6 +++++-
 packages/ocluster/ocluster.0.1/opam          | 4 +++-
 packages/ocluster/ocluster.0.2.1/opam        | 6 +++++-
 packages/ocluster/ocluster.0.2/opam          | 4 +++-
 packages/ocluster/ocluster.0.3.0/opam        | 6 +++++-
 packages/picos/picos.0.3.0/opam              | 6 +++++-
 packages/picos/picos.0.4.0/opam              | 6 +++++-
 packages/picos_lwt/picos_lwt.0.5.0/opam      | 6 +++++-
 packages/picos_lwt/picos_lwt.0.6.0/opam      | 6 +++++-
 packages/tezt/tezt.2.0.0/opam                | 6 +++++-
 packages/tezt/tezt.3.0.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.1/opam                | 4 +++-
 packages/tezt/tezt.4.0.0/opam                | 4 +++-
 packages/tezt/tezt.4.1.0/opam                | 4 +++-
 packages/tezt/tezt.4.2.0/opam                | 4 +++-
 packages/tezt/tezt.4.3.0/opam                | 4 +++-
 84 files changed, 403 insertions(+), 84 deletions(-)

(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
2026-03-17 13:05.18 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-17 13:05.18 ---> using "f3ed7bdbef828c9c0b079b10505c5f05c3c9adcca11ce5bf2dac2a4183e099d8" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-17 13:05.18 ---> using "5bf6adb7b45bb7e0c215b8f509c71a8dae73a9a2060efcc27df9d4ef6c6d3350" 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.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-03-17 13:05.18 ---> using "0546f18fa5979677ee22eb9f2fcf19ab371564e845d317c2c70e41dd97dc22dd" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-17 13:05.18 ---> using "0a7188cbe95f4fe0ff26694977eb8794c975bdb534078da98a06d6c7373289b4" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 13:05.19 ---> using "2ea19ba6f877d7490ae9d28c3ca82f6e95d6422fa89ee35c988285b501b22151" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 13:05.19 ---> using "4b3f38aef2d21c9a37671a782598114b37b94b05f6a6f32ffa66d88a437eafcd" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [111 kB]
- Fetched 10.0 MB in 1s (7090 kB/s)
- Reading package lists...
- 
2026-03-17 13:05.19 ---> using "95a3159566682deae2959ada00c816034be3f300ca41bc004797908f9469a557" from cache

/home/opam: (run (shell "opam pin add -k version -yn lwt_ppx.2.0.3 2.0.3"))
lwt_ppx is now pinned to version 2.0.3
2026-03-17 13:05.19 ---> using "e1d85ac70954889900d6415ff59bcf165515bc2306717197cd7bdce4c3e4d440" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall lwt_ppx.2.0.3;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'lwt_ppx.2.0.3' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
lwt_ppx.2.0.3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
  - install base-bytes          base           [required by ocplib-endian]
  - install cppo                1.8.0          [required by lwt]
  - install csexp               1.5.2          [required by dune-configurator]
  - install dune                3.21.1         [required by lwt_ppx]
  - install dune-configurator   3.21.1         [required by lwt]
  - install lwt                 5.9.2          [required by lwt_ppx]
  - install lwt_ppx             2.0.3 (pinned)
  - install ocaml-compiler-libs v0.12.4        [required by ppxlib]
  - install ocamlfind           1.9.8          [required by base-bytes]
  - install ocplib-endian       1.2            [required by lwt]
  - install ppx_derivers        1.2.1          [required by ppxlib]
  - install ppxlib              0.35.0         [required by lwt_ppx]
  - install sexplib0            v0.17.0        [required by ppxlib]
  - install stdlib-shims        0.3.0          [required by ppxlib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1  (cached)
-> retrieved lwt.5.9.2  (cached)
-> retrieved lwt_ppx.2.0.3  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.21.1
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.21.1
-> installed lwt.5.9.2
-> installed ppxlib.0.35.0
-> installed lwt_ppx.2.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 13:05.19 ---> using "a269d12db86d0a6db486925fbd3971127387ee32344e13ed3b08c27f0d1949ff" 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:
=== downgrade 2 packages
  - downgrade lwt                  5.9.2 to 5.7.0     [required by ojs-base]
  - downgrade sexplib0             v0.17.0 to v0.16.0 [required by cohttp]
=== recompile 2 packages
  - recompile lwt_ppx              2.0.3 (pinned)     [uses lwt]
  - recompile ppxlib               0.35.0             [uses sexplib0]
=== install 76 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   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   digestif             1.3.0              [required by mirage-crypto-rng]
  - install   domain-name          0.5.0              [required by ipaddr]
  - 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.2              [required by conduit]
  - install   ipaddr-sexp          5.6.2              [required by conduit]
  - install   iri                  1.2.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_log              1.1.2              [required by websocket-lwt-unix]
  - install   macaddr              5.6.2              [required by ipaddr]
  - install   magic-mime           1.3.1              [required by ojs-base]
  - install   menhir               20260209           [required by js_of_ocaml-compiler]
  - install   menhirCST            20260209           [required by menhir]
  - install   menhirGLR            20260209           [required by menhir]
  - install   menhirLib            20260209           [required by js_of_ocaml-compiler]
  - install   menhirSdk            20260209           [required by js_of_ocaml-compiler]
  - install   mirage-crypto        2.0.3              [required by mirage-crypto-rng]
  - install   mirage-crypto-ec     2.0.3              [required by x509]
  - install   mirage-crypto-pk     2.0.3              [required by x509]
  - install   mirage-crypto-rng    2.0.3              [required by websocket]
  - install   num                  1.6                [required by sexplib]
  - install   ocaml-syntax-shims   1.0.0              [required by angstrom]
  - install   ocamlbuild           0.16.1             [required by jsonm, astring]
  - 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_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   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   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 ... 20623 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+deb13u1) ...

<><> 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)
-> 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)
-> installed base64.3.5.2
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> installed conf-autoconf.0.2
-> installed conf-gmp-powm-sec.4
-> installed bigstringaf.0.10.0
-> retrieved digestif.1.3.0  (cached)
-> retrieved domain-name.0.5.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.2, ipaddr-sexp.5.6.2, macaddr.5.6.2  (cached)
-> retrieved iri.1.2.0  (cached)
-> installed duration.0.2.1
-> installed domain-name.0.5.0
-> installed gmap.0.3.0
-> installed macaddr.5.6.2
-> 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)
-> 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 magic-mime.1.3.1  (cached)
-> installed cmdliner.1.3.0
-> installed digestif.1.3.0
-> installed ipaddr.5.6.2
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> installed magic-mime.1.3.1
-> installed menhirCST.20260209
-> installed menhirLib.20260209
-> installed menhirGLR.20260209
-> installed menhirSdk.20260209
-> retrieved mirage-crypto.2.0.3, mirage-crypto-ec.2.0.3, mirage-crypto-pk.2.0.3, mirage-crypto-rng.2.0.3  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ohex.0.2.0  (cached)
-> retrieved ojs-base.0.6.0  (https://opam.ocaml.org/cache)
-> retrieved parsexp.v0.16.0  (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
-> 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 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)
-> retrieved x509.1.0.6  (cached)
-> installed stringext.1.6.0
-> retrieved xtmpl.0.18.0  (cached)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved yojson.3.0.0  (cached)
-> retrieved zarith.1.14  (cached)
-> installed angstrom.0.16.1
-> installed gen.1.1
-> removed   lwt_ppx.2.0.3
-> removed   lwt.5.9.2
-> removed   ppxlib.0.35.0
-> removed   sexplib0.v0.17.0
-> installed lwt.5.7.0
-> installed sexplib0.v0.16.0
-> installed mirage-crypto.2.0.3
-> installed num.1.6
-> installed re.1.14.0
-> installed lwt_log.1.1.2
-> installed kdf.1.0.0
-> installed yojson.3.0.0
-> installed parsexp.v0.16.0
-> installed uri.4.4.0
-> installed ppx_tools.6.6
-> installed zarith.1.14
-> installed sexplib.v0.16.0
-> installed ocamlbuild.0.16.1
-> installed base.v0.16.4
-> installed menhir.20260209
-> 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 uunf.17.0.0
-> installed lwt_ppx.2.0.3
-> installed ppx_deriving.6.0.3
-> installed sedlex.3.7
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_deriving_yojson.3.9.1
-> installed iri.1.2.0
-> installed ipaddr-sexp.5.6.2
-> installed uri-sexp.4.4.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.3
-> installed mirage-crypto-pk.2.0.3
-> 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.3
-> 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-03-17 13:08.22 ---> saved as "f9abb68f537f8bc94387caeb6793c09b3b7b8afa96677d265f214b330deb41b7"

/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-03-17 13:09.03 ---> saved as "bc8d841ee6ca84f890bc370218cca823304d03ea11d92dca5ceb5a3459c623fe"

/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-03-17 13:09.48 ---> saved as "7ff6f9f2412ddbdea47ac627be87c96179faa9f7749645c589af3dbb2b1aac35"
Job succeeded
2026-03-17 13:09.55: Job succeeded