Build:
  1. 0
2026-03-02 19:24.08: New job: test BetterErrors.0.0.1 with dune.3.22.0~alpha0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29497/head (118a690db616b1df5c53d5fa00eb70791a80ae2c)
                              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/29497/head" && git reset --hard 118a690d
git fetch origin master
git merge --no-edit a7b8d1036328cf727af175b657f3d2b732b4d868
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.22.0~alpha0 3.22.0~alpha0
RUN opam reinstall dune.3.22.0~alpha0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune.3.22.0~alpha0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall BetterErrors.0.0.1; \
    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" != 'BetterErrors.0.0.1' && 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 BetterErrors.0.0.1) || true
RUN opam reinstall --with-test --verbose BetterErrors.0.0.1; \
    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" != 'BetterErrors.0.0.1' && 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-02 19:24.08: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a-dune.3.22.0~alpha0-BetterErrors.0.0.1-118a690db616b1df5c53d5fa00eb70791a80ae2c"
2026-03-02 19:24.08: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn dune.3.22.0~alpha0 3.22.0~alpha0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.22.0~alpha0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dune.3.22.0~alpha0' && 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 BetterErrors.0.0.1;\
             \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\" != 'BetterErrors.0.0.1' && 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 BetterErrors.0.0.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose BetterErrors.0.0.1;\
             \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\" != 'BetterErrors.0.0.1' && 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-02 19:24.08: Waiting for resource in pool OCluster
2026-03-03 06:29.56: Waiting for worker…
2026-03-03 06:43.40: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at a7b8d10363 Merge pull request #29489 from anuragsoni/opam-publish-kqueue.0.7.0
Updating a7b8d10363..118a690db6
Fast-forward
 .../chrome-trace/chrome-trace.3.22.0~alpha0/opam   | 39 +++++++++++
 .../dune-action-plugin.3.22.0~alpha0/opam          | 52 +++++++++++++++
 .../dune-action-trace.3.22.0~alpha0/opam           | 40 ++++++++++++
 .../dune-build-info.3.22.0~alpha0/opam             | 45 +++++++++++++
 .../dune-configurator.3.22.0~alpha0/opam           | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.0~alpha0/opam    | 42 ++++++++++++
 .../dune-private-libs.3.22.0~alpha0/opam           | 50 +++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha0/opam   | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.0~alpha0/opam      | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.0~alpha0/opam    | 37 +++++++++++
 packages/dune/dune.3.22.0~alpha0/opam              | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.0~alpha0/opam                | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.0~alpha0/opam            | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha0/opam  | 43 +++++++++++++
 packages/ordering/ordering.3.22.0~alpha0/opam      | 38 +++++++++++
 packages/stdune/stdune.3.22.0~alpha0/opam          | 46 +++++++++++++
 .../top-closure/top-closure.3.22.0~alpha0/opam     | 38 +++++++++++
 packages/xdg/xdg.3.22.0~alpha0/opam                | 39 +++++++++++
 18 files changed, 797 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.0~alpha0/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.0~alpha0/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.0~alpha0/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.0~alpha0/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.0~alpha0/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.0~alpha0/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.0~alpha0/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha0/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.0~alpha0/opam
 create mode 100644 packages/dune-site/dune-site.3.22.0~alpha0/opam
 create mode 100644 packages/dune/dune.3.22.0~alpha0/opam
 create mode 100644 packages/dyn/dyn.3.22.0~alpha0/opam
 create mode 100644 packages/fs-io/fs-io.3.22.0~alpha0/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha0/opam
 create mode 100644 packages/ordering/ordering.3.22.0~alpha0/opam
 create mode 100644 packages/stdune/stdune.3.22.0~alpha0/opam
 create mode 100644 packages/top-closure/top-closure.3.22.0~alpha0/opam
 create mode 100644 packages/xdg/xdg.3.22.0~alpha0/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a)
2026-03-03 06:43.39 ---> using "40de8e47c13dd397f7466181b47c70cd31f6d05f624f7f51643a7089a29a5322" 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-03 06:43.39 ---> using "11e955cadb21ab08a7e8407d7e49d7e8b8232723aa9e80323bab6a7d993e9a38" from cache

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

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

Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-03 06:43.39 ---> using "b84411f14b612833c97eea3b0fb49d7afb0294cf8c4774caaff1f8b0f1bd5849" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-03-03 06:43.39 ---> using "bc1392749f7c1b1568053e91f3061e53f54f3bf6892fcf3fa14761d0f2fabccc" 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-03 06:43.39 ---> using "0f88aad717079fee185cb5f7b0853d5dede0158dafac18dc05292641ad1318aa" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-03 06:43.40 ---> using "cf2f29575da4e00ad2c0e3200eaf5375ace45ec778f515d81ffd2e5eb96c41f1" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-03 06:43.40 ---> using "c517023779902244dbe5c8fbf440d1dd4569daf367c1e2ee7dd7eb370c41d91c" 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 [113 kB]
- Fetched 203 kB in 0s (1833 kB/s)
- Reading package lists...
2026-03-03 06:43.40 ---> using "a2e6599fe15f34bfd0a71de19dbfccfacdc1f910f7a37fea793bb8ff67d4ba47" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.0~alpha0 3.22.0~alpha0"))
dune is now pinned to version 3.22.0~alpha0
2026-03-03 06:43.40 ---> using "9ecf7f496eb9b328aa3c8f7333a40a30e123b33b9d8b5606b7ac6bfc2b62fac7" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.22.0~alpha0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dune.3.22.0~alpha0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.22.0~alpha0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.22.0~alpha0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0~alpha0  (cached)
-> installed dune.3.22.0~alpha0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 06:43.40 ---> using "1d093925996c7908c33a8109d0c1a7be5172d79d6a00aabc511d552ee2499f33" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall BetterErrors.0.0.1;\
                        \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\" != 'BetterErrors.0.0.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
BetterErrors.0.0.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
  - install ANSITerminal 0.8.5  [required by BetterErrors]
  - install BetterErrors 0.0.1
  - install base-bytes   base   [required by ANSITerminal]
  - install ocamlbuild   0.16.1 [required by BetterErrors]
  - install ocamlfind    1.9.8  [required by BetterErrors]
  - install re           1.14.0 [required by BetterErrors]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ANSITerminal.0.8.5  (cached)
-> retrieved BetterErrors.0.0.1  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved re.1.14.0  (cached)
-> installed re.1.14.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ANSITerminal.0.8.5
-> installed ocamlbuild.0.16.1
-> installed BetterErrors.0.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 06:43.50 ---> saved as "7a0f05c9ef8d3e69cff27a56f94c539dad6f1783d05b23924f6b5f3068d161e9"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved BetterErrors.0.0.1  (https://opam.ocaml.org/cache)
-> removed   BetterErrors.0.0.1
-> installed BetterErrors.0.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 06:43.56 ---> saved as "5e73906378655c29056c22a199fb31144aa42bd7f9affc9952cc124f9fa2c06b"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [BetterErrors.0.0.1: extract]
-> retrieved BetterErrors.0.0.1  (cached)
[BetterErrors: subst] expanding opam variables in pkg/META.in, generating pkg/META
Processing  2/4: [BetterErrors: ocaml]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "pkg/build.ml" "native=true" "native-dynlink=true" (CWD=/home/opam/.opam/4.14/.opam-switch/build/BetterErrors.0.0.1)
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package 're.pcre ANSITerminal' -modules src/betterErrorsShell.ml > src/betterErrorsShell.ml.depends
- + ocamlfind ocamldep -package 're.pcre ANSITerminal' -modules src/betterErrorsMain.ml > src/betterErrorsMain.ml.depends
- + ocamlfind ocamldep -package 're.pcre ANSITerminal' -modules src/betterErrorsParseError.ml > src/betterErrorsParseError.ml.depends
- + ocamlfind ocamldep -package 're.pcre ANSITerminal' -modules src/betterErrorsTypes.ml > src/betterErrorsTypes.ml.depends
- + ocamlfind ocamldep -package 're.pcre ANSITerminal' -modules src/Atom.ml > src/Atom.ml.depends
- + ocamlfind ocamlc -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/Atom.cmo src/Atom.ml
- + ocamlfind ocamldep -package 're.pcre ANSITerminal' -modules src/helpers.ml > src/helpers.ml.depends
- + ocamlfind ocamlc -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/betterErrorsTypes.cmo src/betterErrorsTypes.ml
- + ocamlfind ocamlc -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/helpers.cmo src/helpers.ml
- + ocamlfind ocamlc -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/helpers.cmo src/helpers.ml
- File "src/helpers.ml", line 122, characters 12-26:
- 122 |   let rex = Re_pcre.regexp pat in
-                   ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 123, characters 2-23:
- 123 |   Re_pcre.get_substring (Re_pcre.exec ~rex str) n
-         ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 123, characters 25-37:
- 123 |   Re_pcre.get_substring (Re_pcre.exec ~rex str) n
-                                ^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 128, characters 12-26:
- 128 |   let rex = Re_pcre.regexp pat in
-                   ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 129, characters 12-33:
- 129 |   try Some (Re_pcre.get_substring (Re_pcre.exec ~rex str) 1)
-                   ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 129, characters 35-47:
- 129 |   try Some (Re_pcre.get_substring (Re_pcre.exec ~rex str) 1)
-                                          ^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 133, characters 12-26:
- 133 |   let rex = Re_pcre.regexp pat in
-                   ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 134, characters 12-33:
- 134 |   try Some (Re_pcre.get_substring (Re_pcre.exec ~rex str) n)
-                   ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 134, characters 35-47:
- 134 |   try Some (Re_pcre.get_substring (Re_pcre.exec ~rex str) n)
-                                          ^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 138, characters 12-26:
- 138 |   let rex = Re_pcre.regexp pat in
-                   ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 139, characters 12-24:
- 139 |   try Some (Re_pcre.exec ~rex str)
-                   ^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 143, characters 12-33:
- 143 |   try Some (Re_pcre.get_substring result n)
-                   ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 147, characters 12-26:
- 147 |   let rex = Re_pcre.regexp sep in
-                   ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 148, characters 2-15:
- 148 |   Re_pcre.split ~rex str
-         ^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamldep -package 're.pcre ANSITerminal' -modules src/parseWarning.ml > src/parseWarning.ml.depends
- + ocamlfind ocamldep -package 're.pcre ANSITerminal' -modules src/terminalReporter.ml > src/terminalReporter.ml.depends
- + ocamlfind ocamldep -package 're.pcre ANSITerminal' -modules src/reportError.ml > src/reportError.ml.depends
- + ocamlfind ocamldep -package 're.pcre ANSITerminal' -modules src/reportWarning.ml > src/reportWarning.ml.depends
- + ocamlfind ocamlc -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/reportError.cmo src/reportError.ml
- + ocamlfind ocamlc -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/reportError.cmo src/reportError.ml
- File "src/reportError.ml", line 71, characters 20-36:
- 71 |       let pckName = String.lowercase unboundModule in
-                          ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- + ocamlfind ocamlc -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/reportWarning.cmo src/reportWarning.ml
- + ocamlfind ocamlc -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/betterErrorsParseError.cmo src/betterErrorsParseError.ml
- + ocamlfind ocamlc -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/betterErrorsParseError.cmo src/betterErrorsParseError.ml
- File "src/betterErrorsParseError.ml", line 33, characters 28-42:
- 33 |   let nestedFunctionTypeR = Re_pcre.regexp {|\([\s\S]+\)|} in
-                                  ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsParseError.ml", line 34, characters 16-34:
- 34 |   let cleaned = Re_pcre.substitute ~rex:nestedFunctionTypeR ~subst:(fun _ -> "|||||") str in
-                      ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsParseError.ml", line 96, characters 26-39:
- 96 |     |> Helpers.optionMap (Re_pcre.split ~rex:(Re_pcre.regexp {|, | or |}))
-                                ^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsParseError.ml", line 96, characters 46-60:
- 96 |     |> Helpers.optionMap (Re_pcre.split ~rex:(Re_pcre.regexp {|, | or |}))
-                                                    ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsParseError.ml", line 163, characters 13-27:
- 163 |   let allR = Re_pcre.regexp {|Syntax error|} in
-                    ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsParseError.ml", line 165, characters 10-24:
- 165 |   if not (Re_pcre.pmatch ~rex:allR err) then
-                 ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlc -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/parseWarning.cmo src/parseWarning.ml
- + ocamlfind ocamlc -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/terminalReporter.cmo src/terminalReporter.ml
- + ocamlfind ocamlc -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/betterErrorsMain.cmo src/betterErrorsMain.ml
- + ocamlfind ocamlc -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/betterErrorsMain.cmo src/betterErrorsMain.ml
- File "src/betterErrorsMain.ml", line 68, characters 37-44:
- 68 | let extractFromFileMatch fileMatch = Re_pcre.(
-                                           ^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 100, characters 2-9:
- 100 |   Re_pcre.(
-         ^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 109, characters 12-26:
- 109 | let fileR = Re_pcre.regexp
-                   ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 110, characters 10-17:
- 110 |   ~flags:[Re_pcre.(`MULTILINE)]
-                 ^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 113, characters 25-39:
- 113 | let hasErrorOrWarningR = Re_pcre.regexp
-                                ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 114, characters 10-17:
- 114 |   ~flags:[Re_pcre.(`MULTILINE)]
-                 ^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 121, characters 10-24:
- 121 |   if not (Re_pcre.pmatch ~rex:hasErrorOrWarningR err) then NoErrorNorWarning err
-                 ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 127, characters 41-53:
- 127 |       |> Helpers.listDropWhile (function Re_pcre.Text _ -> true | _ -> false)
-                                                ^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 125, characters 9-27:
- 125 |       |> Re_pcre.full_split ~rex:fileR
-                ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 134, characters 41-53:
- 134 |       |> Helpers.listDropWhile (function Re_pcre.Text _ -> true | _ -> false)
-                                                ^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 132, characters 9-27:
- 132 |       |> Re_pcre.full_split ~rex:fileR
-                ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlc -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/betterErrorsShell.cmo src/betterErrorsShell.ml
- + ocamlfind ocamlopt -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/Atom.cmx src/Atom.ml
- + ocamlfind ocamlopt -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/betterErrorsTypes.cmx src/betterErrorsTypes.ml
- + ocamlfind ocamlopt -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/helpers.cmx src/helpers.ml
- + ocamlfind ocamlopt -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/helpers.cmx src/helpers.ml
- File "src/helpers.ml", line 122, characters 12-26:
- 122 |   let rex = Re_pcre.regexp pat in
-                   ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 123, characters 2-23:
- 123 |   Re_pcre.get_substring (Re_pcre.exec ~rex str) n
-         ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 123, characters 25-37:
- 123 |   Re_pcre.get_substring (Re_pcre.exec ~rex str) n
-                                ^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 128, characters 12-26:
- 128 |   let rex = Re_pcre.regexp pat in
-                   ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 129, characters 12-33:
- 129 |   try Some (Re_pcre.get_substring (Re_pcre.exec ~rex str) 1)
-                   ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 129, characters 35-47:
- 129 |   try Some (Re_pcre.get_substring (Re_pcre.exec ~rex str) 1)
-                                          ^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 133, characters 12-26:
- 133 |   let rex = Re_pcre.regexp pat in
-                   ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 134, characters 12-33:
- 134 |   try Some (Re_pcre.get_substring (Re_pcre.exec ~rex str) n)
-                   ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 134, characters 35-47:
- 134 |   try Some (Re_pcre.get_substring (Re_pcre.exec ~rex str) n)
-                                          ^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 138, characters 12-26:
- 138 |   let rex = Re_pcre.regexp pat in
-                   ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 139, characters 12-24:
- 139 |   try Some (Re_pcre.exec ~rex str)
-                   ^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 143, characters 12-33:
- 143 |   try Some (Re_pcre.get_substring result n)
-                   ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 147, characters 12-26:
- 147 |   let rex = Re_pcre.regexp sep in
-                   ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/helpers.ml", line 148, characters 2-15:
- 148 |   Re_pcre.split ~rex str
-         ^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlopt -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/reportError.cmx src/reportError.ml
- + ocamlfind ocamlopt -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/reportError.cmx src/reportError.ml
- File "src/reportError.ml", line 71, characters 20-36:
- 71 |       let pckName = String.lowercase unboundModule in
-                          ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- + ocamlfind ocamlopt -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/reportWarning.cmx src/reportWarning.ml
- + ocamlfind ocamlopt -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/betterErrorsParseError.cmx src/betterErrorsParseError.ml
- + ocamlfind ocamlopt -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/betterErrorsParseError.cmx src/betterErrorsParseError.ml
- File "src/betterErrorsParseError.ml", line 33, characters 28-42:
- 33 |   let nestedFunctionTypeR = Re_pcre.regexp {|\([\s\S]+\)|} in
-                                  ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsParseError.ml", line 34, characters 16-34:
- 34 |   let cleaned = Re_pcre.substitute ~rex:nestedFunctionTypeR ~subst:(fun _ -> "|||||") str in
-                      ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsParseError.ml", line 96, characters 26-39:
- 96 |     |> Helpers.optionMap (Re_pcre.split ~rex:(Re_pcre.regexp {|, | or |}))
-                                ^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsParseError.ml", line 96, characters 46-60:
- 96 |     |> Helpers.optionMap (Re_pcre.split ~rex:(Re_pcre.regexp {|, | or |}))
-                                                    ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsParseError.ml", line 163, characters 13-27:
- 163 |   let allR = Re_pcre.regexp {|Syntax error|} in
-                    ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsParseError.ml", line 165, characters 10-24:
- 165 |   if not (Re_pcre.pmatch ~rex:allR err) then
-                 ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlopt -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/parseWarning.cmx src/parseWarning.ml
- + ocamlfind ocamlopt -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/terminalReporter.cmx src/terminalReporter.ml
- + ocamlfind ocamlopt -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/betterErrorsMain.cmx src/betterErrorsMain.ml
- + ocamlfind ocamlopt -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/betterErrorsMain.cmx src/betterErrorsMain.ml
- File "src/betterErrorsMain.ml", line 68, characters 37-44:
- 68 | let extractFromFileMatch fileMatch = Re_pcre.(
-                                           ^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 100, characters 2-9:
- 100 |   Re_pcre.(
-         ^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 109, characters 12-26:
- 109 | let fileR = Re_pcre.regexp
-                   ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 110, characters 10-17:
- 110 |   ~flags:[Re_pcre.(`MULTILINE)]
-                 ^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 113, characters 25-39:
- 113 | let hasErrorOrWarningR = Re_pcre.regexp
-                                ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 114, characters 10-17:
- 114 |   ~flags:[Re_pcre.(`MULTILINE)]
-                 ^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 121, characters 10-24:
- 121 |   if not (Re_pcre.pmatch ~rex:hasErrorOrWarningR err) then NoErrorNorWarning err
-                 ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 127, characters 41-53:
- 127 |       |> Helpers.listDropWhile (function Re_pcre.Text _ -> true | _ -> false)
-                                                ^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 125, characters 9-27:
- 125 |       |> Re_pcre.full_split ~rex:fileR
-                ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 134, characters 41-53:
- 134 |       |> Helpers.listDropWhile (function Re_pcre.Text _ -> true | _ -> false)
-                                                ^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "src/betterErrorsMain.ml", line 132, characters 9-27:
- 132 |       |> Re_pcre.full_split ~rex:fileR
-                ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlopt -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/betterErrorsShell.cmx src/betterErrorsShell.ml
- + ocamlfind ocamlopt -linkpkg -package 're.pcre ANSITerminal' -I src src/Atom.cmx src/betterErrorsTypes.cmx src/helpers.cmx src/betterErrorsParseError.cmx src/parseWarning.cmx src/reportError.cmx src/reportWarning.cmx src/terminalReporter.cmx src/betterErrorsMain.cmx src/betterErrorsShell.cmx -o src/betterErrorsShell.native
- + ocamlfind ocamldep -package 're.pcre ANSITerminal' -modules src/NuclideReporter.ml > src/NuclideReporter.ml.depends
- + ocamlfind ocamlc -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/NuclideReporter.cmo src/NuclideReporter.ml
- + ocamlfind ocamlopt -c -package 're.pcre ANSITerminal' -w @5@8@10@11@12@14@23-24@26@29@40 -I src -o src/NuclideReporter.cmx src/NuclideReporter.ml
- + ocamlfind ocamlopt -a -package 're.pcre ANSITerminal' -I src src/Atom.cmx src/betterErrorsTypes.cmx src/helpers.cmx src/betterErrorsParseError.cmx src/parseWarning.cmx src/reportError.cmx src/reportWarning.cmx src/terminalReporter.cmx src/betterErrorsMain.cmx src/NuclideReporter.cmx src/betterErrorsShell.cmx -o src/BetterErrors.cmxa
- + ocamlfind ocamlc -a -package 're.pcre ANSITerminal' -I src src/Atom.cmo src/betterErrorsTypes.cmo src/helpers.cmo src/betterErrorsParseError.cmo src/parseWarning.cmo src/reportError.cmo src/reportWarning.cmo src/terminalReporter.cmo src/betterErrorsMain.cmo src/NuclideReporter.cmo src/betterErrorsShell.cmo -o src/BetterErrors.cma
- + ocamlfind ocamlopt -shared -linkall -package 're.pcre ANSITerminal' -I src src/BetterErrors.cmxa -o src/BetterErrors.cmxs
-> compiled  BetterErrors.0.0.1
-> removed   BetterErrors.0.0.1
-> installed BetterErrors.0.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 06:44.02 ---> saved as "0f4476ed6364e57ff62dc3069469659bbcb65c41bfcc1de4ea0fa9a4125c6cf5"
Job succeeded
2026-03-03 06:44.14: Job succeeded