Build:
  1. 0
2026-04-22 19:51.37: New job: test aws-ec2.1.2 with digestif.1.3.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29791/head (d9cabb4c55a3783be3e85ea4b8aa97d9d5c13ab5)
                              on debian-13-ocaml-5.4/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/29791/head" && git reset --hard d9cabb4c
git fetch origin master
git merge --no-edit 80ba534fc64fc4e0dec42047f5b25e1207407794
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bf89bb8b0840f9e6d96c6319caca58b5a9cb053dc6ba317d449ef09a67ea4117
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 digestif.1.3.0 1.3.0
RUN opam reinstall digestif.1.3.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'digestif.1.3.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall aws-ec2.1.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 "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'aws-ec2.1.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 aws-ec2.1.2) || true
RUN opam reinstall --with-test --verbose aws-ec2.1.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 "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'aws-ec2.1.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-04-22 19:51.37: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bf89bb8b0840f9e6d96c6319caca58b5a9cb053dc6ba317d449ef09a67ea4117-digestif.1.3.0-aws-ec2.1.2-d9cabb4c55a3783be3e85ea4b8aa97d9d5c13ab5"
2026-04-22 19:51.37: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bf89bb8b0840f9e6d96c6319caca58b5a9cb053dc6ba317d449ef09a67ea4117)
 (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 digestif.1.3.0 1.3.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall digestif.1.3.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'digestif.1.3.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall aws-ec2.1.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 \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'aws-ec2.1.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 aws-ec2.1.2) || true"))
 (run (shell  "opam reinstall --with-test --verbose aws-ec2.1.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 \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'aws-ec2.1.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-04-22 19:51.37: Waiting for resource in pool OCluster
2026-04-22 22:44.50: Waiting for worker…
2026-04-22 22:47.12: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files:  58% (10997/18809)
Updating files:  59% (11098/18809)
Updating files:  60% (11286/18809)
Updating files:  61% (11474/18809)
Updating files:  62% (11662/18809)
Updating files:  63% (11850/18809)
Updating files:  64% (12038/18809)
Updating files:  65% (12226/18809)
Updating files:  66% (12414/18809)
Updating files:  67% (12603/18809)
Updating files:  68% (12791/18809)
Updating files:  69% (12979/18809)
Updating files:  70% (13167/18809)
Updating files:  71% (13355/18809)
Updating files:  72% (13543/18809)
Updating files:  73% (13731/18809)
Updating files:  74% (13919/18809)
Updating files:  75% (14107/18809)
Updating files:  76% (14295/18809)
Updating files:  77% (14483/18809)
Updating files:  78% (14672/18809)
Updating files:  79% (14860/18809)
Updating files:  80% (15048/18809)
Updating files:  81% (15236/18809)
Updating files:  82% (15424/18809)
Updating files:  83% (15612/18809)
Updating files:  84% (15800/18809)
Updating files:  85% (15988/18809)
Updating files:  86% (16176/18809)
Updating files:  87% (16364/18809)
Updating files:  88% (16552/18809)
Updating files:  89% (16741/18809)
Updating files:  90% (16929/18809)
Updating files:  91% (17117/18809)
Updating files:  92% (17305/18809)
Updating files:  93% (17493/18809)
Updating files:  94% (17681/18809)
Updating files:  95% (17869/18809)
Updating files:  96% (18057/18809)
Updating files:  97% (18245/18809)
Updating files:  98% (18433/18809)
Updating files:  99% (18621/18809)
Updating files: 100% (18809/18809)
Updating files: 100% (18809/18809), done.
HEAD is now at 80ba534fc6 Merge pull request #29786 from samoht/release-wire-0.9.0
Updating 80ba534fc6..d9cabb4c55
Fast-forward
 .../bigarray-overlap/bigarray-overlap.0.1.0/opam   |  2 +-
 .../bigarray-overlap/bigarray-overlap.0.2.0/opam   |  2 +-
 .../bigarray-overlap/bigarray-overlap.0.2.1/opam   |  2 +-
 packages/bos/bos.0.3.0/opam                        | 52 ++++++++++++++++++++++
 .../camlp5-buildscripts.0.06/opam                  |  2 +-
 packages/checkseum/checkseum.0.2.1/opam            |  2 +-
 packages/checkseum/checkseum.0.3.1/opam            |  2 +-
 packages/checkseum/checkseum.0.3.2/opam            |  2 +-
 packages/checkseum/checkseum.0.3.3/opam            |  2 +-
 packages/checkseum/checkseum.0.3.4/opam            |  2 +-
 packages/checkseum/checkseum.0.4.0/opam            |  2 +-
 packages/checkseum/checkseum.0.5.1/opam            |  2 +-
 packages/checkseum/checkseum.0.5.2/opam            |  2 +-
 packages/checkseum/checkseum.0.5.3/opam            |  2 +-
 packages/digestif/digestif.0.9.0/opam              |  2 +-
 packages/digestif/digestif.1.1.2/opam              |  2 +-
 packages/digestif/digestif.1.3.0/opam              |  2 +-
 packages/dkml-install/dkml-install.0.1.0/opam      |  2 +-
 packages/dkml-workflows/dkml-workflows.1.2.0/opam  |  2 +-
 packages/minima-theme/minima-theme.1.0.0/opam      |  2 +-
 packages/opam-compiler/opam-compiler.0.1.0/opam    |  2 +-
 packages/opam-compiler/opam-compiler.0.1.1/opam    |  2 +-
 packages/opam-compiler/opam-compiler.0.2.0/opam    |  2 +-
 packages/opam-compiler/opam-compiler.0.2.1/opam    |  2 +-
 packages/smtml/smtml.0.20.0/opam                   |  2 +-
 packages/smtml/smtml.0.21.0/opam                   |  2 +-
 packages/smtml/smtml.0.22.0/opam                   |  2 +-
 packages/smtml/smtml.0.23.0/opam                   |  2 +-
 packages/smtml/smtml.0.24.0/opam                   |  2 +-
 packages/smtml/smtml.0.25.0/opam                   |  2 +-
 packages/vif/vif.0.0.1~beta1/opam                  |  2 +-
 packages/vif/vif.0.0.1~beta2/opam                  |  2 +-
 packages/waylaunch/waylaunch.0.1.0/opam            |  2 +-
 packages/yaml-sexp/yaml-sexp.3.0.1/opam            |  2 +-
 packages/yaml-sexp/yaml-sexp.3.1.0/opam            |  2 +-
 packages/yaml/yaml.3.0.1/opam                      |  2 +-
 packages/yaml/yaml.3.1.0/opam                      |  2 +-
 37 files changed, 88 insertions(+), 36 deletions(-)
 create mode 100644 packages/bos/bos.0.3.0/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bf89bb8b0840f9e6d96c6319caca58b5a9cb053dc6ba317d449ef09a67ea4117)
2026-04-22 22:47.32 ---> using "87b761d57f8bd11e681423bdf4eccf2ad5197c80c37c136b18e55ecadd1dcf8e" 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-04-22 22:47.32 ---> using "811e645634c51bf2e36df44395bb5058f5ddc991c075f1dce25e0130d9d6d58a" 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-04-22 22:47.32 ---> using "ad9b8f4e23eb86d9ca2620a99c2ac3e22ad117638526b53e60830a1fc5247967" 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=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       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-04-22 22:47.32 ---> using "fa610c5b6cf010ca5267c81f982d823a8d07ca0993da68330dadec514fa4ddca" 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-04-22 22:47.32 ---> using "77bd01109261a815e94dbab189bedbba1e2cc45f00af65b780c95f4595a515d9" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-22 22:47.34 ---> using "694420a19ecb3760b3075c1dd39d249d4f7b8fccb790cc82d5309765548b7ab0" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-22 22:47.34 ---> using "752dae9fa801686afbeeb097a5252a053865923be226491a044b7d8bc850214b" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [127 kB]
- Fetched 217 kB in 0s (651 kB/s)
- Reading package lists...
- 
2026-04-22 22:47.34 ---> using "550af129f8175506134abe27a3947eeb33545cb9b9118a51b438c643ac59117c" from cache

/home/opam: (run (shell "opam pin add -k version -yn digestif.1.3.0 1.3.0"))
digestif is now pinned to version 1.3.0
2026-04-22 22:47.34 ---> using "13fafcece96bcd45704c55cef1a00e20fa9729e317dfe8c7d1bc23d38592e9b6" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved digestif.1.3.0  (cached)
-> retrieved dune.3.22.2  (cached)
-> retrieved eqaf.0.10  (cached)
-> installed dune.3.22.2
-> installed eqaf.0.10
-> installed digestif.1.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-22 22:47.34 ---> using "bbbf7cac331eba786091e87f6dc9e160cc93e1c6b1af92e11035a68d4a0d6887" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall aws-ec2.1.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 \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'aws-ec2.1.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
aws-ec2.1.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 17 packages
  - install angstrom           0.16.1 [required by uri]
  - install aws                1.2    [required by aws-ec2]
  - install aws-ec2            1.2
  - install base64             3.5.2  [required by aws]
  - install bigstringaf        0.10.0 [required by angstrom]
  - install calendar           3.0.0  [required by aws]
  - install csexp              1.5.2  [required by dune-configurator]
  - install dune-configurator  3.22.2 [required by bigstringaf]
  - install ezxmlm             1.1.0  [required by aws]
  - install ocaml-syntax-shims 1.0.0  [required by angstrom]
  - install ocamlbuild         0.16.1 [required by xmlm]
  - install ocamlfind          1.9.8  [required by xmlm]
  - install re                 1.14.0 [required by calendar]
  - install stringext          1.6.0  [required by uri]
  - install topkg              1.1.1  [required by xmlm]
  - install uri                4.4.0  [required by aws]
  - install xmlm               1.4.0  [required by ezxmlm]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved aws.1.2, aws-ec2.1.2  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved calendar.3.0.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed base64.3.5.2
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.22.2  (cached)
-> retrieved ezxmlm.1.1.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uri.4.4.0  (cached)
-> retrieved xmlm.1.4.0  (cached)
-> installed stringext.1.6.0
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed dune-configurator.3.22.2
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed calendar.3.0.0
-> installed ocamlfind.1.9.8
-> installed uri.4.4.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed xmlm.1.4.0
-> installed ezxmlm.1.1.0
-> installed aws.1.2
-> installed aws-ec2.1.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-22 22:58.04 ---> saved as "53d8a0c4075fb2f0e01bd3209e17928d6cca4aab58f0b3cdb277d672050cc611"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved aws-ec2.1.2  (https://opam.ocaml.org/cache)
-> removed   aws-ec2.1.2
-> installed aws-ec2.1.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-22 23:05.51 ---> saved as "5f461e6a57b3ab66b750efaac510a600e805564ba95debb7bbe0d5a3109f046c"

/home/opam: (run (shell  "opam reinstall --with-test --verbose aws-ec2.1.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 \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'aws-ec2.1.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 aws-ec2 1.2

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [aws-ec2.1.2: extract]
-> retrieved aws-ec2.1.2  (cached)
Processing  2/4: [aws-ec2: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "aws-ec2" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/aws-ec2.1.2)
-> compiled  aws-ec2.1.2
-> removed   aws-ec2.1.2
-> installed aws-ec2.1.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-22 23:08.32 ---> saved as "e08b2d217c7f140963329a3bca396bcebed0abfb01cf87e639073ad360bc0074"
Job succeeded
2026-04-22 23:08.40: Job succeeded