Build:
  1. 0
2026-01-19 20:51.50: New job: test embedded_ocaml_templates.0.1.4, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29222/head (ad79ca9644feb512edcb7b55f7521e075b88d976)
                              on ubuntu-24.04-ocaml-4.14/riscv64

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:f20ef09e777da135c4ee8d0398873c087223035afd7a128f8bfd33dd9b8f4966
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 embedded_ocaml_templates.0.1.4 0.1.4
RUN opam reinstall embedded_ocaml_templates.0.1.4; \
    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" != 'embedded_ocaml_templates.0.1.4' && 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 embedded_ocaml_templates.0.1.4) || true
RUN opam reinstall --with-test --verbose embedded_ocaml_templates.0.1.4; \
    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" != 'embedded_ocaml_templates.0.1.4' && 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.50: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:f20ef09e777da135c4ee8d0398873c087223035afd7a128f8bfd33dd9b8f4966-embedded_ocaml_templates.0.1.4-ad79ca9644feb512edcb7b55f7521e075b88d976"
2026-01-19 20:51.50: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:f20ef09e777da135c4ee8d0398873c087223035afd7a128f8bfd33dd9b8f4966)
 (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 embedded_ocaml_templates.0.1.4 0.1.4"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall embedded_ocaml_templates.0.1.4;\
             \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\" != 'embedded_ocaml_templates.0.1.4' && 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 embedded_ocaml_templates.0.1.4) || true"))
 (run (shell  "opam reinstall --with-test --verbose embedded_ocaml_templates.0.1.4;\
             \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\" != 'embedded_ocaml_templates.0.1.4' && 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.50: Waiting for resource in pool OCluster
2026-01-19 22:08.58: Waiting for worker…
2026-01-20 06:01.24: Got resource from pool OCluster
Building on riscv-bm-03.sw.ci.dev
All commits already cached
Updating files:  12% (2387/19232)
Updating files:  13% (2501/19232)
Updating files:  14% (2693/19232)
Updating files:  15% (2885/19232)
Updating files:  16% (3078/19232)
Updating files:  17% (3270/19232)
Updating files:  18% (3462/19232)
Updating files:  19% (3655/19232)
Updating files:  20% (3847/19232)
Updating files:  21% (4039/19232)
Updating files:  22% (4232/19232)
Updating files:  23% (4424/19232)
Updating files:  24% (4616/19232)
Updating files:  24% (4706/19232)
Updating files:  25% (4808/19232)
Updating files:  26% (5001/19232)
Updating files:  27% (5193/19232)
Updating files:  28% (5385/19232)
Updating files:  29% (5578/19232)
Updating files:  30% (5770/19232)
Updating files:  31% (5962/19232)
Updating files:  32% (6155/19232)
Updating files:  33% (6347/19232)
Updating files:  34% (6539/19232)
Updating files:  35% (6732/19232)
Updating files:  36% (6924/19232)
Updating files:  37% (7116/19232)
Updating files:  37% (7295/19232)
Updating files:  38% (7309/19232)
Updating files:  39% (7501/19232)
Updating files:  40% (7693/19232)
Updating files:  41% (7886/19232)
Updating files:  42% (8078/19232)
Updating files:  43% (8270/19232)
Updating files:  44% (8463/19232)
Updating files:  45% (8655/19232)
Updating files:  46% (8847/19232)
Updating files:  47% (9040/19232)
Updating files:  48% (9232/19232)
Updating files:  49% (9424/19232)
Updating files:  49% (9558/19232)
Updating files:  50% (9616/19232)
Updating files:  51% (9809/19232)
Updating files:  52% (10001/19232)
Updating files:  53% (10193/19232)
Updating files:  54% (10386/19232)
Updating files:  55% (10578/19232)
Updating files:  56% (10770/19232)
Updating files:  57% (10963/19232)
Updating files:  58% (11155/19232)
Updating files:  59% (11347/19232)
Updating files:  60% (11540/19232)
Updating files:  61% (11732/19232)
Updating files:  61% (11833/19232)
Updating files:  62% (11924/19232)
Updating files:  63% (12117/19232)
Updating files:  64% (12309/19232)
Updating files:  65% (12501/19232)
Updating files:  66% (12694/19232)
Updating files:  67% (12886/19232)
Updating files:  68% (13078/19232)
Updating files:  69% (13271/19232)
Updating files:  70% (13463/19232)
Updating files:  71% (13655/19232)
Updating files:  72% (13848/19232)
Updating files:  72% (14036/19232)
Updating files:  73% (14040/19232)
Updating files:  74% (14232/19232)
Updating files:  75% (14424/19232)
Updating files:  76% (14617/19232)
Updating files:  77% (14809/19232)
Updating files:  78% (15001/19232)
Updating files:  79% (15194/19232)
Updating files:  80% (15386/19232)
Updating files:  81% (15578/19232)
Updating files:  82% (15771/19232)
Updating files:  83% (15963/19232)
Updating files:  84% (16155/19232)
Updating files:  84% (16305/19232)
Updating files:  85% (16348/19232)
Updating files:  86% (16540/19232)
Updating files:  87% (16732/19232)
Updating files:  88% (16925/19232)
Updating files:  89% (17117/19232)
Updating files:  90% (17309/19232)
Updating files:  91% (17502/19232)
Updating files:  92% (17694/19232)
Updating files:  93% (17886/19232)
Updating files:  94% (18079/19232)
Updating files:  95% (18271/19232)
Updating files:  96% (18463/19232)
Updating files:  97% (18656/19232)
Updating files:  97% (18677/19232)
Updating files:  98% (18848/19232)
Updating files:  99% (19040/19232)
Updating files: 100% (19232/19232)
Updating files: 100% (19232/19232), done.
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:f20ef09e777da135c4ee8d0398873c087223035afd7a128f8bfd33dd9b8f4966)
2026-01-20 06:01.36 ---> using "4626d4a5a131a88d02479f5c3b21defc447f75fbe8e0dea7762a8bf70d192939" 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-20 06:01.36 ---> using "2cf77de0c9217b9f307fb96292f7e750553dddea1ae1c3af3d877c5064cd48be" 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-01-20 06:01.36 ---> using "e97b1f5b3923c1d4406517373572055c44243d2c7e5d515860195f8caac29ab2" 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=riscv64 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                 3
# 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-20 06:01.36 ---> using "7446a1617c0a540a3bcb1fa66767241aea48568e6441847fecb4c62276a88c16" 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-20 06:01.36 ---> using "6a1c59d3cd71ed778ec1a09ca3f6c9b8135cf735686be40ac73fa2d2fb3e5849" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-20 06:01.42 ---> using "03709c3a51782b07f452d798195de0c89700be00dc1b24177022634bb9579ece" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-20 06:01.42 ---> using "9d772a000f8e5e666d7b1f6f7b42649492d0f7206eec1c8974a37ee0683e5482" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://ports.ubuntu.com/ubuntu-ports noble InRelease
- Get:2 http://ports.ubuntu.com/ubuntu-ports noble-updates InRelease [126 kB]
- Get:3 http://ports.ubuntu.com/ubuntu-ports noble-backports InRelease [126 kB]
- Get:4 http://ports.ubuntu.com/ubuntu-ports noble-security InRelease [126 kB]
- Get:5 http://ports.ubuntu.com/ubuntu-ports noble-updates/main riscv64 Packages [908 kB]
- Get:6 http://ports.ubuntu.com/ubuntu-ports noble-updates/universe riscv64 Packages [1475 kB]
- Get:7 http://ports.ubuntu.com/ubuntu-ports noble-security/main riscv64 Packages [585 kB]
- Get:8 http://ports.ubuntu.com/ubuntu-ports noble-security/universe riscv64 Packages [931 kB]
- Fetched 4278 kB in 2s (1772 kB/s)
- Reading package lists...
- 
2026-01-20 06:01.42 ---> using "2f127a1c095cbef5caba1bd102b9c355a20f1b9b9232628fd1867c45b5100a6b" from cache

/home/opam: (run (shell "opam pin add -k version -yn embedded_ocaml_templates.0.1.4 0.1.4"))
embedded_ocaml_templates is now pinned to version 0.1.4
2026-01-20 06:01.42 ---> using "ee8c9fd17cf3034f28b01e94e3cd4166b18df372a633efd967094961d2800079" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall embedded_ocaml_templates.0.1.4;\
                        \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\" != 'embedded_ocaml_templates.0.1.4' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
embedded_ocaml_templates.0.1.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 72 packages
  - install base                     v0.14.3        [required by core_kernel]
  - install base_bigstring           v0.14.0        [required by core_kernel]
  - install base_quickcheck          v0.14.1        [required by core_kernel]
  - install bin_prot                 v0.14.1        [required by core_kernel]
  - install containers               3.17           [required by embedded_ocaml_templates]
  - install core                     v0.14.1        [required by embedded_ocaml_templates]
  - install core_kernel              v0.14.2        [required by core]
  - install csexp                    1.5.2          [required by dune-configurator]
  - install dune                     3.21.0         [required by embedded_ocaml_templates]
  - install dune-configurator        3.21.0         [required by containers]
  - install either                   1.0.0          [required by containers]
  - install embedded_ocaml_templates 0.1.4 (pinned)
  - install fieldslib                v0.14.0        [required by core_kernel]
  - install gen                      1.1            [required by sedlex]
  - install jane-street-headers      v0.14.0        [required by core_kernel]
  - install jst-config               v0.14.1        [required by core]
  - install menhir                   20250912       [required by embedded_ocaml_templates]
  - install menhirCST                20250912       [required by menhir]
  - install menhirLib                20250912       [required by menhir]
  - install menhirSdk                20250912       [required by menhir]
  - install num                      1.6            [required by sexplib]
  - install ocaml-compiler-libs      v0.12.4        [required by ppxlib]
  - install ocamlbuild               0.16.1         [required by uutf]
  - install ocamlfind                1.9.8          [required by uutf]
  - install octavius                 1.2.2          [required by ppx_js_style]
  - install parsexp                  v0.14.2        [required by sexplib]
  - install ppx_assert               v0.14.0        [required by core_kernel]
  - install ppx_base                 v0.14.0        [required by core_kernel]
  - install ppx_bench                v0.14.1        [required by ppx_jane]
  - install ppx_bin_prot             v0.14.0        [required by ppx_jane]
  - install ppx_cold                 v0.14.0        [required by ppx_base]
  - install ppx_compare              v0.14.0        [required by ppx_base, bin_prot]
  - install ppx_custom_printf        v0.14.1        [required by ppx_jane]
  - install ppx_derivers             1.2.1          [required by ppxlib]
  - install ppx_enumerate            v0.14.0        [required by ppx_base]
  - install ppx_expect               v0.14.2        [required by ppx_jane]
  - install ppx_fields_conv          v0.14.2        [required by ppx_jane]
  - install ppx_fixed_literal        v0.14.0        [required by ppx_jane]
  - install ppx_hash                 v0.14.0        [required by core_kernel]
  - install ppx_here                 v0.14.0        [required by ppx_jane]
  - install ppx_inline_test          v0.14.1        [required by core_kernel]
  - install ppx_jane                 v0.14.0        [required by core]
  - install ppx_js_style             v0.14.1        [required by ppx_base]
  - install ppx_let                  v0.14.0        [required by ppx_jane]
  - install ppx_module_timer         v0.14.0        [required by ppx_jane]
  - install ppx_optcomp              v0.14.3        [required by core_kernel]
  - install ppx_optional             v0.14.0        [required by ppx_jane]
  - install ppx_pipebang             v0.14.0        [required by ppx_jane]
  - install ppx_sexp_conv            v0.14.3        [required by core_kernel]
  - install ppx_sexp_message         v0.14.1        [required by core_kernel]
  - install ppx_sexp_value           v0.14.0        [required by ppx_jane]
  - install ppx_stable               v0.14.1        [required by ppx_jane]
  - install ppx_string               v0.14.1        [required by ppx_jane]
  - install ppx_typerep_conv         v0.14.2        [required by ppx_jane]
  - install ppx_variants_conv        v0.14.2        [required by ppx_jane]
  - install ppxlib                   0.25.1         [required by embedded_ocaml_templates]
  - install re                       1.14.0         [required by ppx_expect]
  - install sedlex                   2.5            [required by embedded_ocaml_templates]
  - install seq                      base           [required by gen]
  - install sexplib                  v0.14.0        [required by core]
  - install sexplib0                 v0.14.0        [required by base, sexplib]
  - install spawn                    v0.17.0        [required by core]
  - install splittable_random        v0.14.0        [required by core_kernel]
  - install stdio                    v0.14.0        [required by core_kernel]
  - install stdlib-shims             0.3.0          [required by ppxlib]
  - install time_now                 v0.14.0        [required by core_kernel]
  - install timezone                 v0.14.0        [required by core]
  - install topkg                    1.1.1          [required by uutf]
  - install typerep                  v0.14.0        [required by core_kernel]
  - install uchar                    0.0.2          [required by sedlex]
  - install uutf                     1.0.4          [required by embedded_ocaml_templates]
  - install variantslib              v0.14.0        [required by core_kernel]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.14.3  (cached)
-> retrieved base_bigstring.v0.14.0  (cached)
-> retrieved base_quickcheck.v0.14.1  (cached)
-> retrieved bin_prot.v0.14.1  (cached)
-> retrieved containers.3.17  (cached)
-> retrieved core.v0.14.1  (cached)
-> retrieved core_kernel.v0.14.2  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.21.0, dune-configurator.3.21.0  (cached)
-> retrieved either.1.0.0  (cached)
-> retrieved embedded_ocaml_templates.0.1.4  (https://opam.ocaml.org/cache)
-> retrieved fieldslib.v0.14.0  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved jane-street-headers.v0.14.0  (cached)
-> retrieved jst-config.v0.14.1  (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 ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved octavius.1.2.2  (cached)
-> retrieved parsexp.v0.14.2  (cached)
-> retrieved ppx_assert.v0.14.0  (cached)
-> retrieved ppx_base.v0.14.0  (cached)
-> retrieved ppx_bench.v0.14.1  (cached)
-> retrieved ppx_bin_prot.v0.14.0  (cached)
-> retrieved ppx_cold.v0.14.0  (cached)
-> retrieved ppx_compare.v0.14.0  (cached)
-> retrieved ppx_custom_printf.v0.14.1  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_enumerate.v0.14.0  (cached)
-> retrieved ppx_expect.v0.14.2  (cached)
-> retrieved ppx_fields_conv.v0.14.2  (cached)
-> retrieved ppx_fixed_literal.v0.14.0  (cached)
-> retrieved ppx_hash.v0.14.0  (cached)
-> retrieved ppx_here.v0.14.0  (cached)
-> retrieved ppx_inline_test.v0.14.1  (cached)
-> retrieved ppx_jane.v0.14.0  (cached)
-> retrieved ppx_js_style.v0.14.1  (cached)
-> retrieved ppx_let.v0.14.0  (cached)
-> retrieved ppx_module_timer.v0.14.0  (cached)
-> retrieved ppx_optcomp.v0.14.3  (cached)
-> retrieved ppx_optional.v0.14.0  (cached)
-> retrieved ppx_pipebang.v0.14.0  (cached)
-> retrieved ppx_sexp_conv.v0.14.3  (cached)
-> retrieved ppx_sexp_message.v0.14.1  (cached)
-> retrieved ppx_sexp_value.v0.14.0  (cached)
-> retrieved ppx_stable.v0.14.1  (cached)
-> retrieved ppx_string.v0.14.1  (cached)
-> retrieved ppx_typerep_conv.v0.14.2  (cached)
-> retrieved ppx_variants_conv.v0.14.2  (cached)
-> retrieved ppxlib.0.25.1  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved sedlex.2.5  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (cached)
-> retrieved sexplib.v0.14.0  (cached)
-> retrieved sexplib0.v0.14.0  (cached)
-> retrieved spawn.v0.17.0  (cached)
-> retrieved splittable_random.v0.14.0  (cached)
-> retrieved stdio.v0.14.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved time_now.v0.14.0  (cached)
-> retrieved timezone.v0.14.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved typerep.v0.14.0  (cached)
-> retrieved uchar.0.0.2  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved variantslib.v0.14.0  (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed seq.base
-> installed ocamlbuild.0.16.1
-> installed uchar.0.0.2
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed dune.3.21.0
-> installed csexp.1.5.2
-> installed either.1.0.0
-> installed gen.1.1
-> installed jane-street-headers.v0.14.0
-> installed menhirCST.20250912
-> installed menhirLib.20250912
-> installed menhirSdk.20250912
-> installed dune-configurator.3.21.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed octavius.1.2.2
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed sexplib0.v0.14.0
-> installed spawn.v0.17.0
-> installed containers.3.17
-> installed stdlib-shims.0.3.0
-> installed base.v0.14.3
-> installed fieldslib.v0.14.0
-> installed menhir.20250912
-> installed stdio.v0.14.0
-> installed parsexp.v0.14.2
-> installed variantslib.v0.14.0
-> installed typerep.v0.14.0
-> installed sexplib.v0.14.0
-> installed ppxlib.0.25.1
-> installed ppx_cold.v0.14.0
-> installed ppx_enumerate.v0.14.0
-> installed ppx_compare.v0.14.0
-> installed ppx_fields_conv.v0.14.2
-> installed ppx_here.v0.14.0
-> installed ppx_fixed_literal.v0.14.0
-> installed ppx_optcomp.v0.14.3
-> installed ppx_let.v0.14.0
-> installed ppx_js_style.v0.14.1
-> installed ppx_pipebang.v0.14.0
-> installed ppx_optional.v0.14.0
-> installed ppx_sexp_conv.v0.14.3
-> installed ppx_stable.v0.14.1
-> installed ppx_typerep_conv.v0.14.2
-> installed ppx_variants_conv.v0.14.2
-> installed ppx_hash.v0.14.0
-> installed ppx_assert.v0.14.0
-> installed ppx_custom_printf.v0.14.1
-> installed ppx_base.v0.14.0
-> installed ppx_sexp_message.v0.14.1
-> installed jst-config.v0.14.1
-> installed bin_prot.v0.14.1
-> installed ppx_sexp_value.v0.14.0
-> installed ppx_string.v0.14.1
-> installed time_now.v0.14.0
-> installed ppx_bin_prot.v0.14.0
-> installed sedlex.2.5
-> installed ppx_module_timer.v0.14.0
-> installed ppx_inline_test.v0.14.1
-> installed ppx_bench.v0.14.1
-> installed ppx_expect.v0.14.2
-> installed splittable_random.v0.14.0
-> installed base_quickcheck.v0.14.1
-> installed ppx_jane.v0.14.0
-> installed base_bigstring.v0.14.0
-> installed core_kernel.v0.14.2
-> installed timezone.v0.14.0
-> installed core.v0.14.1
-> installed embedded_ocaml_templates.0.1.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-20 06:01.42 ---> using "d64cd71fb393776581fbca09c6b383688cff897ef26fd1399af837e652fdf751" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[ERROR] At /home/opam/.opam/4.14/.opam-switch/sources/embedded_ocaml_templates/embedded_ocaml_templates.opam:16:16-16:17::
        '.' is not a valid token [skipped]

-> retrieved embedded_ocaml_templates.0.1.4  (https://opam.ocaml.org/cache)
-> removed   embedded_ocaml_templates.0.1.4
-> installed embedded_ocaml_templates.0.1.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-20 06:02.34 ---> saved as "0942750679a70e1902db2c4db6c57ded5ea8ff97efee9b2ce0cc2a191cfdbdf3"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[ERROR] At /home/opam/.opam/4.14/.opam-switch/sources/embedded_ocaml_templates/embedded_ocaml_templates.opam:16:16-16:17::
        '.' is not a valid token [skipped]

Processing  1/4: [embedded_ocaml_templates.0.1.4: extract]
-> retrieved embedded_ocaml_templates.0.1.4  (cached)
Processing  2/4: [embedded_ocaml_templates: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "embedded_ocaml_templates" "-j" "3" (CWD=/home/opam/.opam/4.14/.opam-switch/build/embedded_ocaml_templates.0.1.4)
- File "embedded_ocaml_templates.opam", line 1, characters 0-0:
- Warning: Unable to read opam file. Some information about this package such
- as its version will be ignored.
- Reason: File "embedded_ocaml_templates.opam", line 16, characters
- 16-17:
- Error: '.' is not a valid token
- 
-> compiled  embedded_ocaml_templates.0.1.4
-> removed   embedded_ocaml_templates.0.1.4
-> installed embedded_ocaml_templates.0.1.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-20 06:03.23 ---> saved as "b28f7e22c032fbe0ad0eb66b38c1da2752dff40336a84902faa8740ce9779c52"
Job succeeded
2026-01-20 06:04.00: Job succeeded