Build:
  1. 0
2026-02-06 23:06.29: New job: test ezjs_min.0.2.3 with js_of_ocaml-ppx.6.3.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29348/head (0e395cdb6b7b8c4427b82124387c6a5b953d1ac5)
                              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/29348/head" && git reset --hard 0e395cdb
git fetch origin master
git merge --no-edit 340ee6fd1ff10d0fce25e21ba1caca9ed1cfec68
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7
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 js_of_ocaml-ppx.6.3.0 6.3.0
RUN opam reinstall js_of_ocaml-ppx.6.3.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'js_of_ocaml-ppx.6.3.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall ezjs_min.0.2.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" != 'ezjs_min.0.2.3' && 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 ezjs_min.0.2.3) || true
RUN opam reinstall --with-test --verbose ezjs_min.0.2.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" != 'ezjs_min.0.2.3' && 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-02-06 23:06.29: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7-js_of_ocaml-ppx.6.3.0-ezjs_min.0.2.3-0e395cdb6b7b8c4427b82124387c6a5b953d1ac5"
2026-02-06 23:06.29: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7)
 (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 js_of_ocaml-ppx.6.3.0 6.3.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall js_of_ocaml-ppx.6.3.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'js_of_ocaml-ppx.6.3.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ezjs_min.0.2.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\" != 'ezjs_min.0.2.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 (network host)
      (shell "(opam reinstall --with-test ezjs_min.0.2.3) || true"))
 (run (shell  "opam reinstall --with-test --verbose ezjs_min.0.2.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\" != 'ezjs_min.0.2.3' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-02-06 23:06.29: Waiting for resource in pool OCluster
2026-02-06 23:28.57: Waiting for worker…
2026-02-06 23:33.09: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files:  79% (15431/19359)
Updating files:  80% (15488/19359)
Updating files:  81% (15681/19359)
Updating files:  82% (15875/19359)
Updating files:  83% (16068/19359)
Updating files:  84% (16262/19359)
Updating files:  85% (16456/19359)
Updating files:  86% (16649/19359)
Updating files:  87% (16843/19359)
Updating files:  88% (17036/19359)
Updating files:  89% (17230/19359)
Updating files:  90% (17424/19359)
Updating files:  91% (17617/19359)
Updating files:  92% (17811/19359)
Updating files:  93% (18004/19359)
Updating files:  94% (18198/19359)
Updating files:  95% (18392/19359)
Updating files:  96% (18585/19359)
Updating files:  97% (18779/19359)
Updating files:  98% (18972/19359)
Updating files:  99% (19166/19359)
Updating files: 100% (19359/19359)
Updating files: 100% (19359/19359), done.
HEAD is now at 340ee6fd1f Merge pull request #29341 from Halbaroth/release-alt-ergo-free-2.4.3
Updating 340ee6fd1f..0e395cdb6b
Fast-forward
 .../js_of_ocaml-compiler.6.3.0/opam                | 57 +++++++++++++++++++++
 .../js_of_ocaml-lwt/js_of_ocaml-lwt.6.3.0/opam     | 47 ++++++++++++++++++
 .../js_of_ocaml-ppx/js_of_ocaml-ppx.6.3.0/opam     | 45 +++++++++++++++++
 .../js_of_ocaml-ppx_deriving_json.6.3.0/opam       | 45 +++++++++++++++++
 .../js_of_ocaml-toplevel.6.3.0/opam                | 47 ++++++++++++++++++
 .../js_of_ocaml-tyxml/js_of_ocaml-tyxml.6.3.0/opam | 48 ++++++++++++++++++
 packages/js_of_ocaml/js_of_ocaml.6.3.0/opam        | 45 +++++++++++++++++
 .../wasm_of_ocaml-compiler.6.3.0/opam              | 58 ++++++++++++++++++++++
 8 files changed, 392 insertions(+)
 create mode 100644 packages/js_of_ocaml-compiler/js_of_ocaml-compiler.6.3.0/opam
 create mode 100644 packages/js_of_ocaml-lwt/js_of_ocaml-lwt.6.3.0/opam
 create mode 100644 packages/js_of_ocaml-ppx/js_of_ocaml-ppx.6.3.0/opam
 create mode 100644 packages/js_of_ocaml-ppx_deriving_json/js_of_ocaml-ppx_deriving_json.6.3.0/opam
 create mode 100644 packages/js_of_ocaml-toplevel/js_of_ocaml-toplevel.6.3.0/opam
 create mode 100644 packages/js_of_ocaml-tyxml/js_of_ocaml-tyxml.6.3.0/opam
 create mode 100644 packages/js_of_ocaml/js_of_ocaml.6.3.0/opam
 create mode 100644 packages/wasm_of_ocaml-compiler/wasm_of_ocaml-compiler.6.3.0/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7' locally
docker.io/ocaml/opam@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7: Pulling from ocaml/opam
2ca1bfae7ba8: Already exists
e4d8ee4b2a38: Pulling fs layer
1d3116276f8e: Pulling fs layer
75b74a4d1ac0: Pulling fs layer
b6ccadbb02b4: Pulling fs layer
8cbf8e460264: Pulling fs layer
b6ccadbb02b4: Waiting
3315611f76bf: Pulling fs layer
8cbf8e460264: Waiting
504308973b3d: Pulling fs layer
3315611f76bf: Waiting
d88808e698ae: Pulling fs layer
504308973b3d: Waiting
64194555da04: Pulling fs layer
bcae218e4dec: Pulling fs layer
64194555da04: Waiting
d88808e698ae: Waiting
0678004b187f: Pulling fs layer
bcae218e4dec: Waiting
608c27b1299a: Pulling fs layer
0678004b187f: Waiting
2d112e543012: Pulling fs layer
7515eb74eee1: Pulling fs layer
608c27b1299a: Waiting
2d112e543012: Waiting
c57ccaf32dad: Pulling fs layer
7515eb74eee1: Waiting
1ad18dadc94d: Pulling fs layer
c57ccaf32dad: Waiting
e597bdf2ce86: Pulling fs layer
895287036913: Pulling fs layer
e597bdf2ce86: Waiting
1ad18dadc94d: Waiting
669157da4bb1: Pulling fs layer
895287036913: Waiting
05dacbfea855: Pulling fs layer
c07f56eefed9: Pulling fs layer
4f4fb700ef54: Pulling fs layer
669157da4bb1: Waiting
05dacbfea855: Waiting
8d67afca45c4: Pulling fs layer
c07f56eefed9: Waiting
eaf56bb8bbcb: Pulling fs layer
8d67afca45c4: Waiting
4f4fb700ef54: Waiting
3eb319385d03: Pulling fs layer
eaf56bb8bbcb: Waiting
3eb319385d03: Waiting
7e47d6bb7bc1: Pulling fs layer
dc066cdb4877: Pulling fs layer
7e47d6bb7bc1: Waiting
3bd4cfbaf252: Pulling fs layer
e1cd4fc2a870: Pulling fs layer
3bd4cfbaf252: Waiting
c620a639b37a: Pulling fs layer
e1cd4fc2a870: Waiting
dc066cdb4877: Waiting
2765b1030b2e: Pulling fs layer
4e076d3d484c: Pulling fs layer
c620a639b37a: Waiting
2765b1030b2e: Waiting
8fe2e737bcaf: Pulling fs layer
4e076d3d484c: Waiting
29a5f2a84735: Pulling fs layer
8fe2e737bcaf: Waiting
829846ac5653: Pulling fs layer
29a5f2a84735: Waiting
6cf201ca8833: Pulling fs layer
829846ac5653: Waiting
7f975caeb23f: Pulling fs layer
de5cd6b102fb: Pulling fs layer
6cf201ca8833: Waiting
8ce740230729: Pulling fs layer
29df89ae24a1: Pulling fs layer
de5cd6b102fb: Waiting
8ce740230729: Waiting
cd1a29bde858: Pulling fs layer
29df89ae24a1: Waiting
50df3536b5d6: Pulling fs layer
dba635352ec5: Pulling fs layer
cd1a29bde858: Waiting
50df3536b5d6: Waiting
dba635352ec5: Waiting
7f975caeb23f: Waiting
df590c87b573: Pulling fs layer
1d3116276f8e: Verifying Checksum
1d3116276f8e: Download complete
e4d8ee4b2a38: Verifying Checksum
e4d8ee4b2a38: Download complete
e4d8ee4b2a38: Pull complete
1d3116276f8e: Pull complete
75b74a4d1ac0: Verifying Checksum
75b74a4d1ac0: Download complete
b6ccadbb02b4: Verifying Checksum
b6ccadbb02b4: Download complete
75b74a4d1ac0: Pull complete
3315611f76bf: Verifying Checksum
3315611f76bf: Download complete
b6ccadbb02b4: Pull complete
504308973b3d: Verifying Checksum
504308973b3d: Download complete
d88808e698ae: Verifying Checksum
d88808e698ae: Download complete
64194555da04: Verifying Checksum
64194555da04: Download complete
bcae218e4dec: Verifying Checksum
bcae218e4dec: Download complete
0678004b187f: Verifying Checksum
0678004b187f: Download complete
2d112e543012: Verifying Checksum
2d112e543012: Download complete
608c27b1299a: Verifying Checksum
608c27b1299a: Download complete
7515eb74eee1: Verifying Checksum
7515eb74eee1: Download complete
c57ccaf32dad: Verifying Checksum
c57ccaf32dad: Download complete
e597bdf2ce86: Verifying Checksum
e597bdf2ce86: Download complete
8cbf8e460264: Verifying Checksum
8cbf8e460264: Download complete
1ad18dadc94d: Verifying Checksum
1ad18dadc94d: Download complete
895287036913: Verifying Checksum
895287036913: Download complete
669157da4bb1: Verifying Checksum
669157da4bb1: Download complete
05dacbfea855: Verifying Checksum
05dacbfea855: Download complete
c07f56eefed9: Verifying Checksum
c07f56eefed9: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
8d67afca45c4: Download complete
eaf56bb8bbcb: Verifying Checksum
eaf56bb8bbcb: Download complete
3eb319385d03: Verifying Checksum
3eb319385d03: Download complete
7e47d6bb7bc1: Verifying Checksum
7e47d6bb7bc1: Download complete
dc066cdb4877: Download complete
3bd4cfbaf252: Verifying Checksum
3bd4cfbaf252: Download complete
e1cd4fc2a870: Download complete
c620a639b37a: Download complete
2765b1030b2e: Verifying Checksum
2765b1030b2e: Download complete
4e076d3d484c: Verifying Checksum
4e076d3d484c: Download complete
8fe2e737bcaf: Verifying Checksum
8fe2e737bcaf: Download complete
29a5f2a84735: Download complete
6cf201ca8833: Verifying Checksum
6cf201ca8833: Download complete
de5cd6b102fb: Verifying Checksum
de5cd6b102fb: Download complete
8ce740230729: Download complete
29df89ae24a1: Download complete
829846ac5653: Verifying Checksum
829846ac5653: Download complete
7f975caeb23f: Verifying Checksum
7f975caeb23f: Download complete
50df3536b5d6: Verifying Checksum
50df3536b5d6: Download complete
dba635352ec5: Download complete
df590c87b573: Verifying Checksum
df590c87b573: Download complete
cd1a29bde858: Download complete
8cbf8e460264: Pull complete
3315611f76bf: Pull complete
504308973b3d: Pull complete
d88808e698ae: Pull complete
64194555da04: Pull complete
bcae218e4dec: Pull complete
0678004b187f: Pull complete
608c27b1299a: Pull complete
2d112e543012: Pull complete
7515eb74eee1: Pull complete
c57ccaf32dad: Pull complete
1ad18dadc94d: Pull complete
e597bdf2ce86: Pull complete
895287036913: Pull complete
669157da4bb1: Pull complete
05dacbfea855: Pull complete
c07f56eefed9: Pull complete
4f4fb700ef54: Pull complete
8d67afca45c4: Pull complete
eaf56bb8bbcb: Pull complete
3eb319385d03: Pull complete
7e47d6bb7bc1: Pull complete
dc066cdb4877: Pull complete
3bd4cfbaf252: Pull complete
e1cd4fc2a870: Pull complete
c620a639b37a: Pull complete
2765b1030b2e: Pull complete
4e076d3d484c: Pull complete
8fe2e737bcaf: Pull complete
29a5f2a84735: Pull complete
829846ac5653: Pull complete
6cf201ca8833: Pull complete
7f975caeb23f: Pull complete
de5cd6b102fb: Pull complete
8ce740230729: Pull complete
29df89ae24a1: Pull complete
cd1a29bde858: Pull complete
50df3536b5d6: Pull complete
dba635352ec5: Pull complete
df590c87b573: Pull complete
Digest: sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7
Status: Downloaded newer image for ocaml/opam@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7
2026-02-06 23:33.12 ---> using "6a529338653936dd261dd42dcc0e2d18c1a03440bc5c8aa2a17bafbdf6595264" 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-02-06 23:33.12 ---> using "a8c9e5db701a2843d9e0fdf5928fcfbc8cab25ba63f7ef4876c3ba9cbe2e1c00" 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-02-06 23:33.12 ---> using "5c373a63e5ac1e69774cf481a742f8a69ebe54e8a43166cf6ffcd33bf32d373d" 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-02-06 23:33.12 ---> using "402b9d00e6f7a5da0e60648ac930485174b6a1e2d66ab81967b14702119c5f4d" 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-02-06 23:33.12 ---> using "41261ca47d1b1073701808a26cea2999906bae061c95bbddc88d4dc05a86491b" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-02-06 23:33.15 ---> using "62dd3cb8699864744cf62a6b6ab61fb90e21716e820459e01b62569b9fb14e23" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-06 23:33.15 ---> using "7bcadf1104b639d3e08f01fa57fee082803a5cd19c1273512a386fbdeda3418b" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [100 kB]
- Fetched 191 kB in 0s (2000 kB/s)
- Reading package lists...
2026-02-06 23:33.15 ---> using "ed282ba7d9115e82e34c6f92696f6c2a42bdb6a6df5e5f843f88b6614da767a6" from cache

/home/opam: (run (shell "opam pin add -k version -yn js_of_ocaml-ppx.6.3.0 6.3.0"))
js_of_ocaml-ppx is now pinned to version 6.3.0
2026-02-06 23:33.15 ---> using "d7a4964886cd41d99c52adf6b8878ffe9476f124d4007f0a9f59ce3e8232162f" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall js_of_ocaml-ppx.6.3.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'js_of_ocaml-ppx.6.3.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
js_of_ocaml-ppx.6.3.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 19 packages
  - install cmdliner             2.1.0          [required by js_of_ocaml-compiler]
  - install dune                 3.21.0         [required by js_of_ocaml-ppx]
  - install gen                  1.1            [required by sedlex]
  - install js_of_ocaml          6.3.0          [required by js_of_ocaml-ppx]
  - install js_of_ocaml-compiler 6.3.0          [required by js_of_ocaml]
  - install js_of_ocaml-ppx      6.3.0 (pinned)
  - install menhir               20260203       [required by js_of_ocaml-compiler]
  - install menhirCST            20260203       [required by menhir]
  - install menhirGLR            20260203       [required by menhir]
  - install menhirLib            20260203       [required by js_of_ocaml-compiler]
  - install menhirSdk            20260203       [required by js_of_ocaml-compiler]
  - install ocaml-compiler-libs  v0.12.4        [required by js_of_ocaml-compiler]
  - install ppx_derivers         1.2.1          [required by ppxlib]
  - install ppxlib               0.37.0         [required by js_of_ocaml-ppx]
  - install sedlex               3.7            [required by js_of_ocaml-compiler]
  - install seq                  base           [required by gen]
  - install sexplib0             v0.17.0        [required by ppxlib]
  - install stdlib-shims         0.3.0          [required by ppxlib]
  - install yojson               3.0.0          [required by js_of_ocaml-compiler]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved dune.3.21.0  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved js_of_ocaml.6.3.0, js_of_ocaml-compiler.6.3.0, js_of_ocaml-ppx.6.3.0  (cached)
-> retrieved menhir.20260203, menhirCST.20260203, menhirGLR.20260203, menhirLib.20260203, menhirSdk.20260203  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> installed cmdliner.2.1.0
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved sedlex.3.7  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed dune.3.21.0
-> installed menhirCST.20260203
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed gen.1.1
-> installed menhirGLR.20260203
-> installed menhirLib.20260203
-> installed menhirSdk.20260203
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed yojson.3.0.0
-> installed menhir.20260203
-> installed ppxlib.0.37.0
-> installed sedlex.3.7
-> installed js_of_ocaml-compiler.6.3.0
-> installed js_of_ocaml.6.3.0
-> installed js_of_ocaml-ppx.6.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-06 23:45.01 ---> saved as "aca4d077900645e02a7aba9be360cb5a7c237303ee4c7df75e5076fd808e45d5"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ezjs_min.0.2.3  (cached)
-> installed ezjs_min.0.2.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-06 23:45.11 ---> saved as "e477737b71c5267f24db551b7a33603f63509c5211ea8586280556adfceee8b7"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test ezjs_min.0.2.3) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile ezjs_min 0.2.3

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ezjs_min.0.2.3  (https://opam.ocaml.org/cache)
-> removed   ezjs_min.0.2.3
-> installed ezjs_min.0.2.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-06 23:45.20 ---> saved as "2cc148caaaabd9a1104c4ca048c3d68fe6917dc6f360565edb4d14ab2e7fee7d"

/home/opam: (run (shell  "opam reinstall --with-test --verbose ezjs_min.0.2.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\" != 'ezjs_min.0.2.3' && 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 ezjs_min 0.2.3

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [ezjs_min.0.2.3: extract]
-> retrieved ezjs_min.0.2.3  (cached)
Processing  2/4: [ezjs_min: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ezjs_min" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ezjs_min.0.2.3)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/.ezjs_min.objs/byte -I /home/opam/.opam/4.14/lib/js_of_ocaml -I /home/opam/.opam/4.14/lib/js_of_ocaml-compiler/runtime -I /home/opam/.opam/4.14/lib/stdlib-shims -no-alias-deps -open Ezjs_min__ -o src/.ezjs_min.objs/byte/ezjs_min__Js.cmo -c -impl src/js.pp.ml)
- File "src/js.ml", line 4, characters 17-36:
- 4 | module Firebug = Js_of_ocaml.Firebug
-                      ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/js.ml", line 10, characters 20-25:
- 10 | exception JsError = Error
-                          ^^^^^
- Alert deprecated: Error
- [since 4.0] Use [Js_error.Exn] instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/.ezjs_min.objs/byte -I /home/opam/.opam/4.14/lib/js_of_ocaml -I /home/opam/.opam/4.14/lib/js_of_ocaml-compiler/runtime -I /home/opam/.opam/4.14/lib/stdlib-shims -no-alias-deps -open Ezjs_min__ -o src/.ezjs_min.objs/byte/ezjs_min__BigInt.cmo -c -impl src/bigInt.pp.ml)
- File "src/bigInt.ml", line 11, characters 33-48:
- 11 | let bigInt : (Unsafe.any -> t) = Unsafe.variable "BigInt"
-                                       ^^^^^^^^^^^^^^^
- Alert deprecated: Ezjs_min__.Js.Unsafe.variable
- [since 2.6] use Js.Unsafe.pure_js_expr instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/.ezjs_min.objs/byte -I /home/opam/.opam/4.14/lib/js_of_ocaml -I /home/opam/.opam/4.14/lib/js_of_ocaml-compiler/runtime -I /home/opam/.opam/4.14/lib/stdlib-shims -no-alias-deps -open Ezjs_min__ -o src/.ezjs_min.objs/byte/ezjs_min__Log.cmo -c -impl src/log.pp.ml)
- File "src/log.ml", line 3, characters 12-27:
- 3 | let log o = Firebug.console##log o
-                 ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 5, characters 17-32:
- 5 | let log2 o1 o2 = Firebug.console##log_2 o1 o2
-                      ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 7, characters 20-35:
- 7 | let log3 o1 o2 o3 = Firebug.console##log_3 o1 o2 o3
-                         ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 9, characters 16-31:
- 9 | let log_str s = Firebug.console##log (Js.string s)
-                     ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 11, characters 21-36:
- 11 | let log_str2 s1 s2 = Firebug.console##log_2 (Js.string s1) (Js.string s2)
-                           ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 14, characters 2-17:
- 14 |   Firebug.console##log_3 (Js.string s1) (Js.string s2) (Js.string s3)
-        ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 16, characters 14-29:
- 16 | let debug o = Firebug.console##debug o
-                    ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 18, characters 19-34:
- 18 | let debug2 o1 o2 = Firebug.console##debug_2 o1 o2
-                         ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 20, characters 22-37:
- 20 | let debug3 o1 o2 o3 = Firebug.console##debug_3 o1 o2 o3
-                            ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 22, characters 18-33:
- 22 | let debug_str s = Firebug.console##debug (Js.string s)
-                        ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 24, characters 23-38:
- 24 | let debug_str2 s1 s2 = Firebug.console##debug_2 (Js.string s1) (Js.string s2)
-                             ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 27, characters 2-17:
- 27 |   Firebug.console##debug_3 (Js.string s1) (Js.string s2) (Js.string s3)
-        ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 29, characters 13-28:
- 29 | let warn o = Firebug.console##warn o
-                   ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 31, characters 18-33:
- 31 | let warn2 o1 o2 = Firebug.console##warn_2 o1 o2
-                        ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 33, characters 21-36:
- 33 | let warn3 o1 o2 o3 = Firebug.console##warn_3 o1 o2 o3
-                           ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 35, characters 17-32:
- 35 | let warn_str s = Firebug.console##warn (Js.string s)
-                       ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 37, characters 22-37:
- 37 | let warn_str2 s1 s2 = Firebug.console##warn_2 (Js.string s1) (Js.string s2)
-                            ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 40, characters 2-17:
- 40 |   Firebug.console##warn_3 (Js.string s1) (Js.string s2) (Js.string s3)
-        ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 42, characters 14-29:
- 42 | let error o = Firebug.console##error o
-                    ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 44, characters 19-34:
- 44 | let error2 o1 o2 = Firebug.console##error_2 o1 o2
-                         ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 46, characters 22-37:
- 46 | let error3 o1 o2 o3 = Firebug.console##error_3 o1 o2 o3
-                            ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 48, characters 18-33:
- 48 | let error_str s = Firebug.console##error (Js.string s)
-                        ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 50, characters 23-38:
- 50 | let error_str2 s1 s2 = Firebug.console##error_2 (Js.string s1) (Js.string s2)
-                             ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 53, characters 2-17:
- 53 |   Firebug.console##error_3 (Js.string s1) (Js.string s2) (Js.string s3)
-        ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/.ezjs_min.objs/byte -I /home/opam/.opam/4.14/lib/js_of_ocaml -I /home/opam/.opam/4.14/lib/js_of_ocaml-compiler/runtime -I /home/opam/.opam/4.14/lib/stdlib-shims -no-alias-deps -open Ezjs_min__ -o src/.ezjs_min.objs/byte/ezjs_min__Dom.cmo -c -impl src/dom.pp.ml)
- File "src/dom.ml", lines 69-70, characters 5-42:
- 69 | .....Dom.addEventListener elt (Dom.Event.make ev)
- 70 |        (Dom.handler (fun e -> bool (f e)))
- Warning 5 [ignored-partial-application]: this function application is partial,
- maybe some arguments are missing.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/.ezjs_min.objs/byte -I src/.ezjs_min.objs/native -I /home/opam/.opam/4.14/lib/js_of_ocaml -I /home/opam/.opam/4.14/lib/js_of_ocaml-compiler/runtime -I /home/opam/.opam/4.14/lib/stdlib-shims -intf-suffix .ml -no-alias-deps -open Ezjs_min__ -o src/.ezjs_min.objs/native/ezjs_min__Js.cmx -c -impl src/js.pp.ml)
- File "src/js.ml", line 4, characters 17-36:
- 4 | module Firebug = Js_of_ocaml.Firebug
-                      ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/js.ml", line 10, characters 20-25:
- 10 | exception JsError = Error
-                          ^^^^^
- Alert deprecated: Error
- [since 4.0] Use [Js_error.Exn] instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/.ezjs_min.objs/byte -I src/.ezjs_min.objs/native -I /home/opam/.opam/4.14/lib/js_of_ocaml -I /home/opam/.opam/4.14/lib/js_of_ocaml-compiler/runtime -I /home/opam/.opam/4.14/lib/stdlib-shims -intf-suffix .ml -no-alias-deps -open Ezjs_min__ -o src/.ezjs_min.objs/native/ezjs_min__BigInt.cmx -c -impl src/bigInt.pp.ml)
- File "src/bigInt.ml", line 11, characters 33-48:
- 11 | let bigInt : (Unsafe.any -> t) = Unsafe.variable "BigInt"
-                                       ^^^^^^^^^^^^^^^
- Alert deprecated: Ezjs_min__.Js.Unsafe.variable
- [since 2.6] use Js.Unsafe.pure_js_expr instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/.ezjs_min.objs/byte -I src/.ezjs_min.objs/native -I /home/opam/.opam/4.14/lib/js_of_ocaml -I /home/opam/.opam/4.14/lib/js_of_ocaml-compiler/runtime -I /home/opam/.opam/4.14/lib/stdlib-shims -intf-suffix .ml -no-alias-deps -open Ezjs_min__ -o src/.ezjs_min.objs/native/ezjs_min__Log.cmx -c -impl src/log.pp.ml)
- File "src/log.ml", line 3, characters 12-27:
- 3 | let log o = Firebug.console##log o
-                 ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 5, characters 17-32:
- 5 | let log2 o1 o2 = Firebug.console##log_2 o1 o2
-                      ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 7, characters 20-35:
- 7 | let log3 o1 o2 o3 = Firebug.console##log_3 o1 o2 o3
-                         ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 9, characters 16-31:
- 9 | let log_str s = Firebug.console##log (Js.string s)
-                     ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 11, characters 21-36:
- 11 | let log_str2 s1 s2 = Firebug.console##log_2 (Js.string s1) (Js.string s2)
-                           ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 14, characters 2-17:
- 14 |   Firebug.console##log_3 (Js.string s1) (Js.string s2) (Js.string s3)
-        ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 16, characters 14-29:
- 16 | let debug o = Firebug.console##debug o
-                    ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 18, characters 19-34:
- 18 | let debug2 o1 o2 = Firebug.console##debug_2 o1 o2
-                         ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 20, characters 22-37:
- 20 | let debug3 o1 o2 o3 = Firebug.console##debug_3 o1 o2 o3
-                            ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 22, characters 18-33:
- 22 | let debug_str s = Firebug.console##debug (Js.string s)
-                        ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 24, characters 23-38:
- 24 | let debug_str2 s1 s2 = Firebug.console##debug_2 (Js.string s1) (Js.string s2)
-                             ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 27, characters 2-17:
- 27 |   Firebug.console##debug_3 (Js.string s1) (Js.string s2) (Js.string s3)
-        ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 29, characters 13-28:
- 29 | let warn o = Firebug.console##warn o
-                   ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 31, characters 18-33:
- 31 | let warn2 o1 o2 = Firebug.console##warn_2 o1 o2
-                        ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 33, characters 21-36:
- 33 | let warn3 o1 o2 o3 = Firebug.console##warn_3 o1 o2 o3
-                           ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 35, characters 17-32:
- 35 | let warn_str s = Firebug.console##warn (Js.string s)
-                       ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 37, characters 22-37:
- 37 | let warn_str2 s1 s2 = Firebug.console##warn_2 (Js.string s1) (Js.string s2)
-                            ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 40, characters 2-17:
- 40 |   Firebug.console##warn_3 (Js.string s1) (Js.string s2) (Js.string s3)
-        ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 42, characters 14-29:
- 42 | let error o = Firebug.console##error o
-                    ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 44, characters 19-34:
- 44 | let error2 o1 o2 = Firebug.console##error_2 o1 o2
-                         ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 46, characters 22-37:
- 46 | let error3 o1 o2 o3 = Firebug.console##error_3 o1 o2 o3
-                            ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 48, characters 18-33:
- 48 | let error_str s = Firebug.console##error (Js.string s)
-                        ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 50, characters 23-38:
- 50 | let error_str2 s1 s2 = Firebug.console##error_2 (Js.string s1) (Js.string s2)
-                             ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- File "src/log.ml", line 53, characters 2-17:
- 53 |   Firebug.console##error_3 (Js.string s1) (Js.string s2) (Js.string s3)
-        ^^^^^^^^^^^^^^^
- Alert deprecated: module Js_of_ocaml.Firebug
- [since 6.0] Use Js_of_ocaml.Console instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/.ezjs_min.objs/byte -I src/.ezjs_min.objs/native -I /home/opam/.opam/4.14/lib/js_of_ocaml -I /home/opam/.opam/4.14/lib/js_of_ocaml-compiler/runtime -I /home/opam/.opam/4.14/lib/stdlib-shims -intf-suffix .ml -no-alias-deps -open Ezjs_min__ -o src/.ezjs_min.objs/native/ezjs_min__Dom.cmx -c -impl src/dom.pp.ml)
- File "src/dom.ml", lines 69-70, characters 5-42:
- 69 | .....Dom.addEventListener elt (Dom.Event.make ev)
- 70 |        (Dom.handler (fun e -> bool (f e)))
- Warning 5 [ignored-partial-application]: this function application is partial,
- maybe some arguments are missing.
-> compiled  ezjs_min.0.2.3
-> removed   ezjs_min.0.2.3
-> installed ezjs_min.0.2.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-06 23:45.31 ---> saved as "3a79ffa4496a298c69dd3fd4823b1f5367bf2160fd73cae0e02bb0b915cc0600"
Job succeeded
2026-02-06 23:45.36: Job succeeded