Build:
  1. 0
2026-01-19 20:51.37: New job: test archetype.1.4.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29222/head (ad79ca9644feb512edcb7b55f7521e075b88d976)
                              on ubuntu-24.04-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/29222/head" && git reset --hard ad79ca96
git fetch origin master
git merge --no-edit 1c997ec9e6ebc6ea699547000cb8dfa44e52efaa
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:fc1696ad5151b0a8f5ba0985f6ee601abb1a45eceb3d2cd4c759f3d09110011b
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 archetype.1.4.2 1.4.2
RUN opam reinstall archetype.1.4.2; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"ubuntu-24.04\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'archetype.1.4.2' && 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 archetype.1.4.2) || true
RUN opam reinstall --with-test --verbose archetype.1.4.2; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"ubuntu-24.04\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'archetype.1.4.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-01-19 20:51.37: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:fc1696ad5151b0a8f5ba0985f6ee601abb1a45eceb3d2cd4c759f3d09110011b-archetype.1.4.2-ad79ca9644feb512edcb7b55f7521e075b88d976"
2026-01-19 20:51.37: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:fc1696ad5151b0a8f5ba0985f6ee601abb1a45eceb3d2cd4c759f3d09110011b)
 (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 archetype.1.4.2 1.4.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall archetype.1.4.2;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-24.04\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'archetype.1.4.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test archetype.1.4.2) || true"))
 (run (shell  "opam reinstall --with-test --verbose archetype.1.4.2;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-24.04\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'archetype.1.4.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-01-19 20:51.37: Waiting for resource in pool OCluster
2026-01-19 22:43.10: Waiting for worker…
2026-01-19 22:46.59: Got resource from pool OCluster
Building on eumache
All commits already cached
HEAD is now at 1c997ec9e6 Merge pull request #29241 from polytypic/release-multicore-magic-2.3.2
Updating 1c997ec9e6..ad79ca9644
Fast-forward
 packages/archetype/archetype.0.1.10/opam                     |  2 +-
 packages/archetype/archetype.0.1.11/opam                     |  2 +-
 packages/archetype/archetype.0.1.12/opam                     |  2 +-
 packages/archetype/archetype.0.1.13/opam                     |  2 +-
 packages/archetype/archetype.0.1.14/opam                     |  2 +-
 packages/archetype/archetype.0.1.3/opam                      |  2 +-
 packages/archetype/archetype.0.1.4/opam                      |  2 +-
 packages/archetype/archetype.0.1.5/opam                      |  2 +-
 packages/archetype/archetype.0.1.6/opam                      |  2 +-
 packages/archetype/archetype.0.1.8/opam                      |  2 +-
 packages/archetype/archetype.0.1.9/opam                      |  2 +-
 packages/archetype/archetype.1.0.0/opam                      |  2 +-
 packages/archetype/archetype.1.1.0/opam                      |  2 +-
 packages/archetype/archetype.1.1.1/opam                      |  2 +-
 packages/archetype/archetype.1.1.2/opam                      |  2 +-
 packages/archetype/archetype.1.2.0/opam                      |  2 +-
 packages/archetype/archetype.1.2.1/opam                      |  2 +-
 packages/archetype/archetype.1.2.10/opam                     |  2 +-
 packages/archetype/archetype.1.2.11/opam                     |  2 +-
 packages/archetype/archetype.1.2.12/opam                     |  2 +-
 packages/archetype/archetype.1.2.13/opam                     |  2 +-
 packages/archetype/archetype.1.2.14/opam                     |  2 +-
 packages/archetype/archetype.1.2.15/opam                     |  2 +-
 packages/archetype/archetype.1.2.16/opam                     |  2 +-
 packages/archetype/archetype.1.2.2/opam                      |  2 +-
 packages/archetype/archetype.1.2.3/opam                      |  2 +-
 packages/archetype/archetype.1.2.4/opam                      |  2 +-
 packages/archetype/archetype.1.2.5/opam                      |  2 +-
 packages/archetype/archetype.1.2.6/opam                      |  2 +-
 packages/archetype/archetype.1.2.7/opam                      |  2 +-
 packages/archetype/archetype.1.2.8/opam                      |  2 +-
 packages/archetype/archetype.1.2.9/opam                      |  2 +-
 packages/archetype/archetype.1.3.0/opam                      |  2 +-
 packages/archetype/archetype.1.3.1/opam                      |  2 +-
 packages/archetype/archetype.1.3.2/opam                      |  2 +-
 packages/archetype/archetype.1.3.3/opam                      |  2 +-
 packages/archetype/archetype.1.3.4/opam                      |  2 +-
 packages/archetype/archetype.1.3.5/opam                      |  2 +-
 packages/archetype/archetype.1.3.6/opam                      |  2 +-
 packages/archetype/archetype.1.4.0/opam                      |  2 +-
 packages/archetype/archetype.1.4.1/opam                      |  2 +-
 packages/archetype/archetype.1.4.2/opam                      |  2 +-
 packages/archetype/archetype.1.4.3/opam                      |  2 +-
 packages/archetype/archetype.1.5.0/opam                      |  2 +-
 packages/archetype/archetype.1.5.1/opam                      |  2 +-
 packages/archetype/archetype.1.5.2/opam                      |  2 +-
 packages/archetype/archetype.1.5.3/opam                      |  2 +-
 packages/bnfgen/bnfgen.4.0.0/opam                            |  2 +-
 packages/catala/catala.0.10.0/opam                           |  2 +-
 packages/catala/catala.0.3.0/opam                            |  2 +-
 packages/catala/catala.0.5.0/opam                            |  2 +-
 packages/catala/catala.0.6.0/opam                            |  2 +-
 packages/catala/catala.0.7.0/opam                            |  2 +-
 packages/catala/catala.0.8.0/opam                            |  2 +-
 packages/catala/catala.0.9.0/opam                            |  2 +-
 packages/catala/catala.1.0.0/opam                            |  2 +-
 packages/catala/catala.1.0.0~alpha/opam                      |  2 +-
 packages/catala/catala.1.0.0~beta/opam                       |  2 +-
 packages/dolmen/dolmen.0.1/opam                              |  2 +-
 packages/dolmen/dolmen.0.10/opam                             |  2 +-
 packages/dolmen/dolmen.0.2/opam                              |  2 +-
 packages/dolmen/dolmen.0.4.1/opam                            |  2 +-
 packages/dolmen/dolmen.0.4/opam                              |  2 +-
 packages/dolmen/dolmen.0.5/opam                              |  2 +-
 packages/dolmen/dolmen.0.6/opam                              |  4 ++--
 packages/dolmen/dolmen.0.7/opam                              |  2 +-
 packages/dolmen/dolmen.0.8.1/opam                            |  2 +-
 packages/dolmen/dolmen.0.8/opam                              |  2 +-
 packages/dolmen/dolmen.0.9/opam                              |  2 +-
 .../embedded_ocaml_templates.0.1.4/opam                      | 12 ++++++------
 .../embedded_ocaml_templates.0.2/opam                        | 12 ++++++------
 .../embedded_ocaml_templates.0.3.1/opam                      |  8 ++++----
 .../embedded_ocaml_templates.0.4/opam                        | 10 +++++-----
 .../embedded_ocaml_templates.0.5.1/opam                      | 10 +++++-----
 .../embedded_ocaml_templates.0.6/opam                        |  2 +-
 .../embedded_ocaml_templates.0.7/opam                        |  2 +-
 packages/morbig/morbig.0.10.3/opam                           |  2 +-
 packages/morbig/morbig.0.10.4/opam                           |  2 +-
 packages/morbig/morbig.0.11.0/opam                           |  2 +-
 packages/morbig/morbig.0.9.1/opam                            |  2 +-
 packages/morbig/morbig.0.9/opam                              |  2 +-
 packages/otoml/otoml.0.9.0/opam                              |  2 +-
 packages/otoml/otoml.0.9.1/opam                              |  2 +-
 packages/otoml/otoml.0.9.2/opam                              |  2 +-
 packages/otoml/otoml.0.9.3/opam                              |  2 +-
 packages/otoml/otoml.1.0.0/opam                              |  2 +-
 packages/otoml/otoml.1.0.1/opam                              |  2 +-
 packages/otoml/otoml.1.0.2/opam                              |  2 +-
 packages/otoml/otoml.1.0.3/opam                              |  2 +-
 packages/otoml/otoml.1.0.4/opam                              |  2 +-
 packages/otoml/otoml.1.0.5/opam                              |  2 +-
 packages/touist/touist.3.0.0/opam                            |  2 +-
 packages/touist/touist.3.1.0/opam                            |  2 +-
 packages/touist/touist.3.2.0/opam                            |  2 +-
 packages/touist/touist.3.2.1/opam                            |  2 +-
 packages/touist/touist.3.5.0/opam                            |  2 +-
 packages/unionFind/unionFind.20250818/opam                   |  2 +-
 97 files changed, 119 insertions(+), 119 deletions(-)

(from ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:fc1696ad5151b0a8f5ba0985f6ee601abb1a45eceb3d2cd4c759f3d09110011b)
2026-01-19 22:47.00 ---> using "9620c324edd435dd4267237a0af5eb9fe0dd58ee44815a5fcf1faa2b711b865b" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-19 22:47.00 ---> using "3062771a342bc2cbe6c995d119ef5b5e7e30284bdbb870c96d009caa81fce724" 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.

Continue? [Y/n] y
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.

Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-19 22:47.00 ---> using "1ae3c2fb731372fb14e9c90a6df3b259605ccac8ed549c1c24b721503550bb18" 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=ubuntu os-version=24.04
# 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-01-19 22:47.00 ---> using "d3e861ef2fb82aea5080dc98e44a2dde45ab2ec95d70132604e3a87ecf95bd3c" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-01-19 22:47.00 ---> using "edbb740cd4d6b45996213f5f0b6ce064efdc7d76c7879915201be5e2ab54dcae" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-19 22:47.02 ---> saved as "5cecf86a3fc76981b96a27262ca9a2e9856dfe6991d8fb819de530b52bc4114a"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-19 22:47.24 ---> saved as "e54806dfed1973f300e670e3112835645cf173e599527bdf21feb23bf51d94ac"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://security.ubuntu.com/ubuntu noble-security InRelease [126 kB]
- Hit:2 http://archive.ubuntu.com/ubuntu noble InRelease
- Get:3 http://archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB]
- Get:4 http://archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB]
- Get:5 http://security.ubuntu.com/ubuntu noble-security/universe amd64 Packages [1193 kB]
- Get:6 http://security.ubuntu.com/ubuntu noble-security/restricted amd64 Packages [2919 kB]
- Get:7 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages [3077 kB]
- Get:8 http://security.ubuntu.com/ubuntu noble-security/main amd64 Packages [1773 kB]
- Get:9 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [2146 kB]
- Get:10 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [1961 kB]
- Fetched 13.4 MB in 1s (12.7 MB/s)
- Reading package lists...
- 
2026-01-19 22:47.27 ---> saved as "da77fab70af49e3161cb171bc000306de7bd02f98369275ecbfefc86a24e59c5"

/home/opam: (run (shell "opam pin add -k version -yn archetype.1.4.2 1.4.2"))
archetype is now pinned to version 1.4.2
2026-01-19 22:47.28 ---> saved as "130f4ffee6c00e5d0f126e29800236f939323f6e294ac204f648d00992380e8f"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall archetype.1.4.2;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-24.04\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'archetype.1.4.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
archetype.1.4.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 43 packages
  - install alcotest             1.9.1          [required by archetype]
  - install angstrom             0.16.1         [required by uri]
  - install archetype            1.4.2 (pinned)
  - install astring              0.8.5          [required by alcotest]
  - install bigstringaf          0.10.0         [required by angstrom]
  - install cmdliner             2.1.0          [required by alcotest]
  - install cppo                 1.8.0          [required by ppx_deriving]
  - install csexp                1.5.2          [required by dune-configurator]
  - install cstruct              6.2.0          [required by hex]
  - install dune                 3.21.0         [required by archetype]
  - install dune-configurator    3.21.0         [required by bigstringaf]
  - install fmt                  0.11.0         [required by alcotest]
  - install gen                  1.1            [required by sedlex]
  - install hex                  1.5.0          [required by archetype]
  - install js_of_ocaml          6.2.0          [required by archetype]
  - install js_of_ocaml-compiler 6.2.0          [required by js_of_ocaml]
  - install js_of_ocaml-ppx      6.2.0          [required by archetype]
  - install menhir               20250912       [required by archetype]
  - install menhirCST            20250912       [required by menhir]
  - install menhirLib            20250912       [required by js_of_ocaml-compiler]
  - install menhirSdk            20250912       [required by js_of_ocaml-compiler]
  - install num                  1.6            [required by archetype]
  - install ocaml-compiler-libs  v0.12.4        [required by ppxlib]
  - install ocaml-syntax-shims   1.0.0          [required by alcotest]
  - install ocamlbuild           0.16.1         [required by xmlm]
  - install ocamlfind            1.9.8          [required by ppx_deriving, xmlm]
  - install ppx_derivers         1.2.1          [required by ppx_deriving]
  - install ppx_deriving         6.1.1          [required by archetype]
  - install ppx_deriving_yojson  3.10.0         [required by archetype]
  - install ppxlib               0.37.0         [required by ppx_deriving_yojson, js_of_ocaml-ppx, js_of_ocaml, etc.]
  - install re                   1.14.0         [required by alcotest]
  - install result               1.5            [required by visitors]
  - 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 alcotest]
  - install stringext            1.6.0          [required by uri]
  - install topkg                1.1.1          [required by xmlm]
  - install uri                  4.4.0          [required by archetype]
  - install uutf                 1.0.4          [required by alcotest]
  - install visitors             20251114       [required by archetype]
  - install xmlm                 1.4.0          [required by archetype]
  - install yojson               3.0.0          [required by archetype]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (cached)
-> retrieved angstrom.0.16.1  (cached)
-> retrieved archetype.1.4.2  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved cstruct.6.2.0  (cached)
-> retrieved dune.3.21.0, dune-configurator.3.21.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved hex.1.5.0  (cached)
-> installed cmdliner.2.1.0
-> retrieved js_of_ocaml.6.2.0, js_of_ocaml-compiler.6.2.0, js_of_ocaml-ppx.6.2.0  (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> retrieved ppx_deriving_yojson.3.10.0  (cached)
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved result.1.5  (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 stringext.1.6.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uri.4.4.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved visitors.20251114  (cached)
-> retrieved xmlm.1.4.0  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed xmlm.1.4.0
-> installed astring.0.8.5
-> installed dune.3.21.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed cstruct.6.2.0
-> installed gen.1.1
-> installed menhirCST.20250912
-> installed menhirLib.20250912
-> installed menhirSdk.20250912
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed result.1.5
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed yojson.3.0.0
-> installed hex.1.5.0
-> installed alcotest.1.9.1
-> installed dune-configurator.3.21.0
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed uri.4.4.0
-> installed menhir.20250912
-> installed ppxlib.0.37.0
-> installed ppx_deriving.6.1.1
-> installed sedlex.3.7
-> installed ppx_deriving_yojson.3.10.0
-> installed visitors.20251114
-> installed js_of_ocaml-compiler.6.2.0
-> installed js_of_ocaml.6.2.0
-> installed js_of_ocaml-ppx.6.2.0
-> installed archetype.1.4.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 22:50.31 ---> saved as "a749b5d139d7be0b5297144f324d1a41f6fdfc129dc5d887aaaa914523a8e0fd"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved archetype.1.4.2  (https://opam.ocaml.org/cache)
-> removed   archetype.1.4.2
-> installed archetype.1.4.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 22:51.19 ---> saved as "bbdaee22d7d0974d1d9ec8f0908ec03abadbee5759c37ecb6137d4ad2a92878f"

/home/opam: (run (shell  "opam reinstall --with-test --verbose archetype.1.4.2;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-24.04\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'archetype.1.4.2' && 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 archetype 1.4.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [archetype.1.4.2: extract]
-> retrieved archetype.1.4.2  (cached)
Processing  2/4: [archetype: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "archetype" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/archetype.1.4.2)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -rectypes -w -20 -w -30 -w -7 -w -17 -g -bin-annot -I src/.archetype.objs/byte -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_deriving_yojson/runtime -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/visitors/runtime -I /home/opam/.opam/4.14/lib/xmlm -I /home/opam/.opam/4.14/lib/yojson -no-alias-deps -open Archetype -o src/.archetype.objs/byte/archetype__Model.cmo -c -impl src/model.pp.ml)
- File "src/model.ml", line 2026, characters 4-28:
- 2026 |     { fun_ with node = node}
-            ^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 23 [useless-record-with]: all the fields are explicitly listed in this record:
- the 'with' clause is useless.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -rectypes -w -20 -w -30 -w -7 -w -17 -g -bin-annot -I src/.archetype.objs/byte -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_deriving_yojson/runtime -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/visitors/runtime -I /home/opam/.opam/4.14/lib/xmlm -I /home/opam/.opam/4.14/lib/yojson -no-alias-deps -open Archetype -o src/.archetype.objs/byte/archetype__Gen_transform.cmo -c -impl src/gen_transform.pp.ml)
- File "src/gen_transform.ml", lines 1432-1446, characters 8-9:
- 1432 | ........{f with
- 1433 |          node = (
- 1434 |            let process_fs (fs : function_struct) =
- 1435 |              {fs with
- 1436 |               args = fs.args |> List.map (fun (id, t, dv) -> (id, process_type t, Option.map process_mterm dv));
- ...
- 1443 |            | View (fs, ret, vv) -> View     (process_fs fs, process_type ret, vv)
- 1444 |            | Entry fs           -> Entry    (process_fs fs)
- 1445 |          );
- 1446 |         }.
- Warning 23 [useless-record-with]: all the fields are explicitly listed in this record:
- the 'with' clause is useless.
- File "src/gen_transform.ml", lines 1935-1937, characters 4-5:
- 1935 | ....{ f__ with
- 1936 |       node = nnode;
- 1937 |     }......
- Warning 23 [useless-record-with]: all the fields are explicitly listed in this record:
- the 'with' clause is useless.
- File "src/gen_transform.ml", lines 3951-3953, characters 4-5:
- 3951 | ....{ f__ with
- 3952 |       node = for_function_node f__.node;
- 3953 |     }
- Warning 23 [useless-record-with]: all the fields are explicitly listed in this record:
- the 'with' clause is useless.
- File "src/gen_transform.ml", lines 4223-4225, characters 4-5:
- 4223 | ....{ f__ with
- 4224 |       node = for_function_node f__.node;
- 4225 |     }
- Warning 23 [useless-record-with]: all the fields are explicitly listed in this record:
- the 'with' clause is useless.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -rectypes -w -20 -w -30 -w -7 -w -17 -g -bin-annot -I src/.archetype.objs/byte -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_deriving_yojson/runtime -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/visitors/runtime -I /home/opam/.opam/4.14/lib/xmlm -I /home/opam/.opam/4.14/lib/yojson -no-alias-deps -open Archetype -o src/.archetype.objs/byte/archetype__Typing.cmo -c -impl src/typing.pp.ml)
- File "src/typing.ml", line 426, characters 37-51:
- 426 |   let distance ?(autoview = false) ?(for_eq = false) ~(from_ : A.ptyp) ~(to_ : A.ptyp) =
-                                            ^^^^^^^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- File "src/typing.ml", line 426, characters 17-33:
- 426 |   let distance ?(autoview = false) ?(for_eq = false) ~(from_ : A.ptyp) ~(to_ : A.ptyp) =
-                        ^^^^^^^^^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- File "src/typing.ml", line 475, characters 28-34:
- 475 |   let compatible ?autoview ?for_eq ~(from_ : A.ptyp) ~(to_ : A.ptyp) =
-                                   ^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- File "src/typing.ml", line 475, characters 18-26:
- 475 |   let compatible ?autoview ?for_eq ~(from_ : A.ptyp) ~(to_ : A.ptyp) =
-                         ^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -rectypes -w -20 -g -bin-annot -I src/.api.eobjs/byte -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/hex -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/menhirLib -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_deriving_yojson/runtime -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/visitors/runtime -I /home/opam/.opam/4.14/lib/xmlm -I /home/opam/.opam/4.14/lib/yojson -I src/.archetype.objs/byte -no-alias-deps -o src/.api.eobjs/byte/dune__exe__Api.cmo -c -impl src/api.pp.ml)
- File "src/api.ml", line 104, characters 32-50:
- 104 |         match Js.Opt.to_option (Js.js_error_of_exn exn) with
-                                       ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Js_of_ocaml.Js.js_error_of_exn
- [since 4.0] Use [Js_error.of_exn] instead.
- File "src/api.ml", line 106, characters 22-39:
- 106 |         | Some err -> Js.raise_js_error err
-                             ^^^^^^^^^^^^^^^^^
- Alert deprecated: Js_of_ocaml.Js.raise_js_error
- [since 4.0] Use [Js_error.raise_] instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -rectypes -w -20 -w -30 -w -7 -w -17 -g -I src/.archetype.objs/byte -I src/.archetype.objs/native -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_deriving_yojson/runtime -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/visitors/runtime -I /home/opam/.opam/4.14/lib/xmlm -I /home/opam/.opam/4.14/lib/yojson -intf-suffix .ml -no-alias-deps -open Archetype -o src/.archetype.objs/native/archetype__Model.cmx -c -impl src/model.pp.ml)
- File "src/model.ml", line 2026, characters 4-28:
- 2026 |     { fun_ with node = node}
-            ^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 23 [useless-record-with]: all the fields are explicitly listed in this record:
- the 'with' clause is useless.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -rectypes -w -20 -w -30 -w -7 -w -17 -g -I src/.archetype.objs/byte -I src/.archetype.objs/native -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_deriving_yojson/runtime -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/visitors/runtime -I /home/opam/.opam/4.14/lib/xmlm -I /home/opam/.opam/4.14/lib/yojson -intf-suffix .ml -no-alias-deps -open Archetype -o src/.archetype.objs/native/archetype__Gen_transform.cmx -c -impl src/gen_transform.pp.ml)
- File "src/gen_transform.ml", lines 1432-1446, characters 8-9:
- 1432 | ........{f with
- 1433 |          node = (
- 1434 |            let process_fs (fs : function_struct) =
- 1435 |              {fs with
- 1436 |               args = fs.args |> List.map (fun (id, t, dv) -> (id, process_type t, Option.map process_mterm dv));
- ...
- 1443 |            | View (fs, ret, vv) -> View     (process_fs fs, process_type ret, vv)
- 1444 |            | Entry fs           -> Entry    (process_fs fs)
- 1445 |          );
- 1446 |         }.
- Warning 23 [useless-record-with]: all the fields are explicitly listed in this record:
- the 'with' clause is useless.
- File "src/gen_transform.ml", lines 1935-1937, characters 4-5:
- 1935 | ....{ f__ with
- 1936 |       node = nnode;
- 1937 |     }......
- Warning 23 [useless-record-with]: all the fields are explicitly listed in this record:
- the 'with' clause is useless.
- File "src/gen_transform.ml", lines 3951-3953, characters 4-5:
- 3951 | ....{ f__ with
- 3952 |       node = for_function_node f__.node;
- 3953 |     }
- Warning 23 [useless-record-with]: all the fields are explicitly listed in this record:
- the 'with' clause is useless.
- File "src/gen_transform.ml", lines 4223-4225, characters 4-5:
- 4223 | ....{ f__ with
- 4224 |       node = for_function_node f__.node;
- 4225 |     }
- Warning 23 [useless-record-with]: all the fields are explicitly listed in this record:
- the 'with' clause is useless.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -rectypes -w -20 -w -30 -w -7 -w -17 -g -I src/.archetype.objs/byte -I src/.archetype.objs/native -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_deriving_yojson/runtime -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/visitors/runtime -I /home/opam/.opam/4.14/lib/xmlm -I /home/opam/.opam/4.14/lib/yojson -intf-suffix .ml -no-alias-deps -open Archetype -o src/.archetype.objs/native/archetype__Typing.cmx -c -impl src/typing.pp.ml)
- File "src/typing.ml", line 426, characters 37-51:
- 426 |   let distance ?(autoview = false) ?(for_eq = false) ~(from_ : A.ptyp) ~(to_ : A.ptyp) =
-                                            ^^^^^^^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- File "src/typing.ml", line 426, characters 17-33:
- 426 |   let distance ?(autoview = false) ?(for_eq = false) ~(from_ : A.ptyp) ~(to_ : A.ptyp) =
-                        ^^^^^^^^^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- File "src/typing.ml", line 475, characters 28-34:
- 475 |   let compatible ?autoview ?for_eq ~(from_ : A.ptyp) ~(to_ : A.ptyp) =
-                                   ^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- File "src/typing.ml", line 475, characters 18-26:
- 475 |   let compatible ?autoview ?for_eq ~(from_ : A.ptyp) ~(to_ : A.ptyp) =
-                         ^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -rectypes -w -20 -g -I src/.api.eobjs/byte -I src/.api.eobjs/native -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/hex -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/menhirLib -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_deriving_yojson/runtime -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/visitors/runtime -I /home/opam/.opam/4.14/lib/xmlm -I /home/opam/.opam/4.14/lib/yojson -I src/.archetype.objs/byte -I src/.archetype.objs/native -intf-suffix .ml -no-alias-deps -o src/.api.eobjs/native/dune__exe__Api.cmx -c -impl src/api.pp.ml)
- File "src/api.ml", line 104, characters 32-50:
- 104 |         match Js.Opt.to_option (Js.js_error_of_exn exn) with
-                                       ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Js_of_ocaml.Js.js_error_of_exn
- [since 4.0] Use [Js_error.of_exn] instead.
- File "src/api.ml", line 106, characters 22-39:
- 106 |         | Some err -> Js.raise_js_error err
-                             ^^^^^^^^^^^^^^^^^
- Alert deprecated: Js_of_ocaml.Js.raise_js_error
- [since 4.0] Use [Js_error.raise_] instead.
-> compiled  archetype.1.4.2
-> removed   archetype.1.4.2
-> installed archetype.1.4.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 22:52.17 ---> saved as "04dbc19af620f0fdff994b293076e41d043e1bff3a7e3071fcd1d7cb3db77601"
Job succeeded
2026-01-19 22:52.30: Job succeeded