(not at the head of any monitored branch or PR)
2026-05-04 18:49.02: New job: test dockerfile-cmd.8.3.8, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29843/head (d050d0001516b25d1ccda860cb4e9f79161ace3a)
                              on ubuntu-24.04-ocaml-5.4/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/29843/head" && git reset --hard d050d000
git fetch origin master
git merge --no-edit ade76687fbc9001333af45d7dd28419a7869b2ae
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:dc51e43301e96cd9f3cbb9165cfc2d504861bd7a1f7dbb213c49a6e9b70ae2e4
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 dockerfile-cmd.8.3.8 8.3.8
RUN opam reinstall dockerfile-cmd.8.3.8; \
    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" != 'dockerfile-cmd.8.3.8' && 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 dockerfile-cmd.8.3.8) || true
RUN opam reinstall --with-test --verbose dockerfile-cmd.8.3.8; \
    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" != 'dockerfile-cmd.8.3.8' && 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-05-04 18:49.02: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:dc51e43301e96cd9f3cbb9165cfc2d504861bd7a1f7dbb213c49a6e9b70ae2e4-dockerfile-cmd.8.3.8-d050d0001516b25d1ccda860cb4e9f79161ace3a"
2026-05-04 18:49.02: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:dc51e43301e96cd9f3cbb9165cfc2d504861bd7a1f7dbb213c49a6e9b70ae2e4)
 (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 dockerfile-cmd.8.3.8 8.3.8"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dockerfile-cmd.8.3.8;\
             \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\" != 'dockerfile-cmd.8.3.8' && 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 dockerfile-cmd.8.3.8) || true"))
 (run (shell  "opam reinstall --with-test --verbose dockerfile-cmd.8.3.8;\
             \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\" != 'dockerfile-cmd.8.3.8' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-05-04 18:49.02: Waiting for resource in pool OCluster
2026-05-04 18:49.02: Waiting for worker…
2026-05-04 19:10.47: Got resource from pool OCluster
Building on riscv-bm-04.sw.ci.dev
All commits already cached
Updating files:  11% (2149/18908)
Updating files:  12% (2269/18908)
Updating files:  13% (2459/18908)
Updating files:  14% (2648/18908)
Updating files:  15% (2837/18908)
Updating files:  16% (3026/18908)
Updating files:  17% (3215/18908)
Updating files:  18% (3404/18908)
Updating files:  19% (3593/18908)
Updating files:  20% (3782/18908)
Updating files:  21% (3971/18908)
Updating files:  22% (4160/18908)
Updating files:  23% (4349/18908)
Updating files:  23% (4520/18908)
Updating files:  24% (4538/18908)
Updating files:  25% (4727/18908)
Updating files:  26% (4917/18908)
Updating files:  27% (5106/18908)
Updating files:  28% (5295/18908)
Updating files:  29% (5484/18908)
Updating files:  30% (5673/18908)
Updating files:  31% (5862/18908)
Updating files:  32% (6051/18908)
Updating files:  33% (6240/18908)
Updating files:  34% (6429/18908)
Updating files:  35% (6618/18908)
Updating files:  36% (6807/18908)
Updating files:  36% (6808/18908)
Updating files:  37% (6996/18908)
Updating files:  38% (7186/18908)
Updating files:  39% (7375/18908)
Updating files:  40% (7564/18908)
Updating files:  41% (7753/18908)
Updating files:  42% (7942/18908)
Updating files:  43% (8131/18908)
Updating files:  44% (8320/18908)
Updating files:  45% (8509/18908)
Updating files:  46% (8698/18908)
Updating files:  47% (8887/18908)
Updating files:  48% (9076/18908)
Updating files:  48% (9082/18908)
Updating files:  49% (9265/18908)
Updating files:  50% (9454/18908)
Updating files:  51% (9644/18908)
Updating files:  52% (9833/18908)
Updating files:  53% (10022/18908)
Updating files:  54% (10211/18908)
Updating files:  55% (10400/18908)
Updating files:  56% (10589/18908)
Updating files:  57% (10778/18908)
Updating files:  58% (10967/18908)
Updating files:  59% (11156/18908)
Updating files:  60% (11345/18908)
Updating files:  60% (11453/18908)
Updating files:  61% (11534/18908)
Updating files:  62% (11723/18908)
Updating files:  63% (11913/18908)
Updating files:  64% (12102/18908)
Updating files:  65% (12291/18908)
Updating files:  66% (12480/18908)
Updating files:  67% (12669/18908)
Updating files:  68% (12858/18908)
Updating files:  69% (13047/18908)
Updating files:  70% (13236/18908)
Updating files:  71% (13425/18908)
Updating files:  72% (13614/18908)
Updating files:  72% (13799/18908)
Updating files:  73% (13803/18908)
Updating files:  74% (13992/18908)
Updating files:  75% (14181/18908)
Updating files:  76% (14371/18908)
Updating files:  77% (14560/18908)
Updating files:  78% (14749/18908)
Updating files:  79% (14938/18908)
Updating files:  80% (15127/18908)
Updating files:  81% (15316/18908)
Updating files:  82% (15505/18908)
Updating files:  83% (15694/18908)
Updating files:  84% (15883/18908)
Updating files:  85% (16072/18908)
Updating files:  85% (16241/18908)
Updating files:  86% (16261/18908)
Updating files:  87% (16450/18908)
Updating files:  88% (16640/18908)
Updating files:  89% (16829/18908)
Updating files:  90% (17018/18908)
Updating files:  91% (17207/18908)
Updating files:  92% (17396/18908)
Updating files:  93% (17585/18908)
Updating files:  94% (17774/18908)
Updating files:  95% (17963/18908)
Updating files:  96% (18152/18908)
Updating files:  97% (18341/18908)
Updating files:  98% (18530/18908)
Updating files:  98% (18635/18908)
Updating files:  99% (18719/18908)
Updating files: 100% (18908/18908)
Updating files: 100% (18908/18908), done.
HEAD is now at ade76687fb Merge pull request #29842 from dinosaure/release-stem-v0.0.1
Updating ade76687fb..d050d00015
Fast-forward
 packages/dockerfile-cmd/dockerfile-cmd.8.3.8/opam  | 73 ++++++++++++++++++++++
 .../dockerfile-opam/dockerfile-opam.8.3.8/opam     | 71 +++++++++++++++++++++
 packages/dockerfile/dockerfile.8.3.8/opam          | 67 ++++++++++++++++++++
 3 files changed, 211 insertions(+)
 create mode 100644 packages/dockerfile-cmd/dockerfile-cmd.8.3.8/opam
 create mode 100644 packages/dockerfile-opam/dockerfile-opam.8.3.8/opam
 create mode 100644 packages/dockerfile/dockerfile.8.3.8/opam

(from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:dc51e43301e96cd9f3cbb9165cfc2d504861bd7a1f7dbb213c49a6e9b70ae2e4)
Unable to find image 'ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:dc51e43301e96cd9f3cbb9165cfc2d504861bd7a1f7dbb213c49a6e9b70ae2e4' locally
docker.io/ocaml/opam@sha256:dc51e43301e96cd9f3cbb9165cfc2d504861bd7a1f7dbb213c49a6e9b70ae2e4: Pulling from ocaml/opam
a7f0c7437445: Already exists
fddf64034bdf: Already exists
8bcc0cebb154: Already exists
17db527e2678: Already exists
ffc7d46bbfe3: Already exists
d444216cc223: Already exists
35ccda2e37b5: Already exists
b7a62a3f41b7: Already exists
d21be009b0d0: Already exists
bf7b43591e4d: Already exists
ad54a0d70830: Already exists
15be24f3365a: Already exists
79a755d7d87d: Already exists
7d42c1e05671: Already exists
0de055226c9b: Already exists
617114ce2280: Already exists
46d6570373b6: Already exists
46d6570373b6: Already exists
f19b4218b194: Already exists
82af3daee049: Already exists
43ff58c4b7f8: Already exists
7a72bf922983: Already exists
4f4fb700ef54: Already exists
c41b3117001d: Already exists
ab8ba8701128: Already exists
59c4302f5e2b: Already exists
259da3191c38: Already exists
ce0e1bd28c74: Already exists
1a629e666377: Already exists
4f4175edc580: Already exists
4c26e528374a: Already exists
51eceac24d13: Already exists
8976ab9a0df6: Already exists
84eddc6d2760: Already exists
5a84a7466e39: Already exists
889dc4003ff5: Already exists
7cf6e5384890: Already exists
4b887c6558f5: Already exists
3028cbcb5d4d: Already exists
e11dccce60d0: Already exists
3260392018df: Already exists
aeedbd6323eb: Pulling fs layer
f2cd165c8213: Pulling fs layer
800a8290d5ea: Pulling fs layer
3d30e14dd71f: Pulling fs layer
9be8c8d023bf: Pulling fs layer
e8c4dcbcf9f9: Pulling fs layer
3d30e14dd71f: Waiting
9be8c8d023bf: Waiting
e8c4dcbcf9f9: Waiting
f6f40c1335ee: Pulling fs layer
f6f40c1335ee: Waiting
f2cd165c8213: Download complete
aeedbd6323eb: Verifying Checksum
aeedbd6323eb: Download complete
800a8290d5ea: Verifying Checksum
800a8290d5ea: Download complete
aeedbd6323eb: Pull complete
f2cd165c8213: Pull complete
9be8c8d023bf: Verifying Checksum
9be8c8d023bf: Download complete
f6f40c1335ee: Verifying Checksum
f6f40c1335ee: Download complete
e8c4dcbcf9f9: Verifying Checksum
e8c4dcbcf9f9: Download complete
800a8290d5ea: Pull complete
3d30e14dd71f: Verifying Checksum
3d30e14dd71f: Download complete
3d30e14dd71f: Pull complete
9be8c8d023bf: Pull complete
e8c4dcbcf9f9: Pull complete
f6f40c1335ee: Pull complete
Digest: sha256:dc51e43301e96cd9f3cbb9165cfc2d504861bd7a1f7dbb213c49a6e9b70ae2e4
Status: Downloaded newer image for ocaml/opam@sha256:dc51e43301e96cd9f3cbb9165cfc2d504861bd7a1f7dbb213c49a6e9b70ae2e4
2026-05-04 19:10.59 ---> using "707560050ad9b0c890bcc6f4f60bff3716d19cd6fc50da95384e605427042ee0" 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-05-04 19:10.59 ---> using "54a222fde3a35ed3830f2550127260c43e5d3222a9d19ad31eb59a62a3359fbe" 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-05-04 19:10.59 ---> using "b410e0a59cf0b6fb3cf627ffc1548411b886fc95769f6d6799d474ea2c01c4b0" 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.1
# 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       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages    ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.1
2026-05-04 19:10.59 ---> using "c1b6d6c078ed991d77fdf240239d89ef60a7309ac383e0e5d756993bb7fe7ffb" 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-05-04 19:10.59 ---> using "7a7266bf0fe225a081e2b141090fc8188699daf03cd6a0e7dcf9b36fbe220f5f" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-05-04 19:11.05 ---> using "6c4cb964569e6ea62d51ce0a083aa29cf1649c16e9496069acbb62c0ff53d932" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-04 19:11.05 ---> using "c23d86f71355848f2896968c33f7fefe305f3c230af31dd682f949d730f4b41b" 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/universe riscv64 Packages [1596 kB]
- Get:6 http://ports.ubuntu.com/ubuntu-ports noble-updates/main riscv64 Packages [959 kB]
- Get:7 http://ports.ubuntu.com/ubuntu-ports noble-updates/restricted riscv64 Packages [11.5 kB]
- Get:8 http://ports.ubuntu.com/ubuntu-ports noble-backports/main riscv64 Packages [48.9 kB]
- Get:9 http://ports.ubuntu.com/ubuntu-ports noble-backports/universe riscv64 Packages [29.3 kB]
- Get:10 http://ports.ubuntu.com/ubuntu-ports noble-security/universe riscv64 Packages [1119 kB]
- Get:11 http://ports.ubuntu.com/ubuntu-ports noble-security/main riscv64 Packages [644 kB]
- Fetched 4786 kB in 2s (2093 kB/s)
- Reading package lists...
- 
2026-05-04 19:11.05 ---> using "33c7f29c82014a395024de09cd1146d150bd5e529e8a350b9b1b3ab3c8a0c5b0" from cache

/home/opam: (run (shell "opam pin add -k version -yn dockerfile-cmd.8.3.8 8.3.8"))
dockerfile-cmd is now pinned to version 8.3.8
2026-05-04 19:11.05 ---> using "b86269b2449575a428a843a0ecf13bbba99cb37fcad3040d241b21654b401bd0" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dockerfile-cmd.8.3.8;\
                        \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\" != 'dockerfile-cmd.8.3.8' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dockerfile-cmd.8.3.8 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 26 packages
  - install astring                 0.8.5          [required by dockerfile-cmd]
  - install base                    v0.17.3        [required by ppx_sexp_conv]
  - install bos                     0.3.0          [required by dockerfile-cmd]
  - install cmdliner                2.1.1          [required by dockerfile-cmd]
  - install csexp                   1.5.2          [required by dune-configurator]
  - install dockerfile              8.3.8          [required by dockerfile-opam]
  - install dockerfile-cmd          8.3.8 (pinned)
  - install dockerfile-opam         8.3.8          [required by dockerfile-cmd]
  - install dune                    3.22.2         [required by dockerfile-cmd]
  - install dune-configurator       3.22.2         [required by base]
  - install fmt                     0.11.0         [required by dockerfile-cmd]
  - install fpath                   0.7.3          [required by bos]
  - install logs                    0.10.0         [required by dockerfile-cmd]
  - install ocaml-compiler-libs     v0.17.0        [required by ppxlib]
  - install ocaml-version           4.1.0          [required by dockerfile-opam]
  - install ocaml_intrinsics_kernel v0.17.1        [required by base]
  - install ocamlbuild              0.16.1         [required by astring, bos]
  - install ocamlfind               1.9.8          [required by astring, bos]
  - install ppx_derivers            1.2.1          [required by ppxlib]
  - install ppx_sexp_conv           v0.17.1        [required by dockerfile-cmd]
  - install ppxlib                  0.38.0         [required by ppx_sexp_conv]
  - install ppxlib_jane             v0.17.4        [required by ppx_sexp_conv]
  - install rresult                 0.7.0          [required by bos]
  - install sexplib0                v0.17.0        [required by dockerfile-cmd]
  - install stdlib-shims            0.3.0          [required by ppxlib]
  - install topkg                   1.1.1          [required by astring, bos]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.17.3  (cached)
-> retrieved bos.0.3.0  (cached)
-> retrieved cmdliner.2.1.1  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dockerfile.8.3.8, dockerfile-cmd.8.3.8, dockerfile-opam.8.3.8  (https://github.com/ocurrent/ocaml-dockerfile/releases/download/8.3.8/ocaml-dockerfile-8.3.8.tbz)
-> retrieved dune.3.22.2, dune-configurator.3.22.2  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml-version.4.1.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> installed cmdliner.2.1.1
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_sexp_conv.v0.17.1  (cached)
-> retrieved ppxlib.0.38.0  (cached)
-> retrieved ppxlib_jane.v0.17.4  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed rresult.0.7.0
-> installed fpath.0.7.3
-> installed logs.0.10.0
-> installed bos.0.3.0
-> installed dune.3.22.2
-> installed csexp.1.5.2
-> installed ocaml-version.4.1.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ppx_derivers.1.2.1
-> installed ocaml-compiler-libs.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed dune-configurator.3.22.2
-> installed base.v0.17.3
-> installed ppxlib.0.38.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_sexp_conv.v0.17.1
-> installed dockerfile.8.3.8
-> installed dockerfile-opam.8.3.8
-> installed dockerfile-cmd.8.3.8
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-04 19:11.05 ---> using "2cc303ea068844965eb4f3927a8fca2929faeb47f96d8b1709c5e16afb4ae5e6" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dockerfile-cmd.8.3.8  (https://github.com/ocurrent/ocaml-dockerfile/releases/download/8.3.8/ocaml-dockerfile-8.3.8.tbz)
-> removed   dockerfile-cmd.8.3.8
-> installed dockerfile-cmd.8.3.8
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-04 19:11.43 ---> saved as "dae6447ee39405d2ae91dc49a32c0ccf04b17274076a157722396b8e0a520ccc"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [dockerfile-cmd.8.3.8: extract]
-> retrieved dockerfile-cmd.8.3.8  (cached)
Processing  2/4: [dockerfile-cmd: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "dockerfile-cmd" "-j" "3" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/dockerfile-cmd.8.3.8)
-> compiled  dockerfile-cmd.8.3.8
-> removed   dockerfile-cmd.8.3.8
-> installed dockerfile-cmd.8.3.8
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-04 19:12.18 ---> saved as "322d2e0cfbb452312cedd72f4a1a30a496eb2647864d7788a15ff2ba7ded0fd2"
Job succeeded
2026-05-04 19:12.51: Job succeeded