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

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

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

2026-01-26 12:27.45: Waiting for resource in pool OCluster
2026-01-26 12:27.45: Waiting for worker…
2026-01-26 12:29.45: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at f9f7db30fd Merge pull request #29275 from EruEri/shakuhachi-0.2.0
Updating f9f7db30fd..6086bf8ff9
Fast-forward
 packages/miou/miou.0.5.0/opam | 1 +
 packages/miou/miou.0.5.1/opam | 1 +
 2 files changed, 2 insertions(+)

(from ocaml/opam:debian-13-ocaml-5.4-afl@sha256:c5b5e3fca50734b6e22bf8abb795bebfc0775feecbcd9f93e3ae99c581cb1787)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4-afl@sha256:c5b5e3fca50734b6e22bf8abb795bebfc0775feecbcd9f93e3ae99c581cb1787' locally
docker.io/ocaml/opam@sha256:c5b5e3fca50734b6e22bf8abb795bebfc0775feecbcd9f93e3ae99c581cb1787: Pulling from ocaml/opam
5c66f9e43b9c: Pulling fs layer
5c66f9e43b9c: Verifying Checksum
5c66f9e43b9c: Download complete
5c66f9e43b9c: Pull complete
Digest: sha256:c5b5e3fca50734b6e22bf8abb795bebfc0775feecbcd9f93e3ae99c581cb1787
Status: Downloaded newer image for ocaml/opam@sha256:c5b5e3fca50734b6e22bf8abb795bebfc0775feecbcd9f93e3ae99c581cb1787
2026-01-26 12:44.58 ---> saved as "d13cfc55b8aed9e699c10c8142ca15259d636be774158cb8cea3b7dc38a6c7bf"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-26 12:44.58 ---> saved as "7fb7c7c37f5240dcdb12a6960a8daa0c9aaf85cef3bcb098923db045639e6c5e"

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

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

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

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-26 12:45.18 ---> saved as "3a199a20d844f74780fe5a7e6cf429db84f5e20c2a878911ab36ab469a275318"

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-variants" {= "5.4.0+options"}]
# compiler-packages    ocaml-compiler.5.4.0, ocaml-option-afl.1, ocaml-options-only-afl.1, ocaml-variants.5.4.0+options
# 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.0+options+afl
2026-01-26 12:45.19 ---> saved as "a52981aba7a55b24fc0c606adf1b6646e1e70cf06b6813ec323fe562150bfc8d"

/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-26 12:45.27 ---> saved as "36d66556ac75deeb2960529497b6344ca5dec0ac91c08e8c2dea43d408cdf0b8"

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-26 12:45.33 ---> saved as "9d0824d03cba7376b57061dfc3e29e54b2306326589f25440362fce6f77faf0f"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-26 12:45.49 ---> saved as "dd8baad9acce7a163e137ebbb4690a35699d79bdf88cbcff69b01d22ebb7d50d"

/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]
- Fetched 90.7 kB in 0s (717 kB/s)
- Reading package lists...
2026-01-26 12:45.50 ---> saved as "8629385081293496ae6df1b86fcf4c100ae9623dae57eb51eed0b99ba05ac5fb"

/home/opam: (run (shell "opam pin add -k version -yn miou.0.5.1 0.5.1"))
miou is now pinned to version 0.5.1
2026-01-26 12:45.51 ---> saved as "c4a904e7b358dd8f34b22d05cb857197c0910188393a99388edebad0c723ffb1"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.21.0, dune-configurator.3.21.0  (cached)
-> retrieved miou.0.5.1  (cached)
-> installed dune.3.21.0
-> installed csexp.1.5.2
-> installed dune-configurator.3.21.0
-> installed miou.0.5.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-26 12:46.22 ---> saved as "26742ad97f426debae9d745ba2b90f8d3cb58625fd62b7615d17192743e97eb2"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test miou.0.5.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile miou              0.5.1 (pinned)
=== install 33 packages
  - install   base64            3.5.2          [required by dns]
  - install   cmdliner          2.1.0          [required by dscheck, hxd]
  - install   containers        3.17           [required by dscheck]
  - install   digestif          1.3.0          [required by miou]
  - install   dns               10.2.3         [required by miou]
  - install   dns-client        10.2.3         [required by miou]
  - install   domain-name       0.5.0          [required by dns-client, dns, happy-eyeballs]
  - install   dscheck           0.5.0          [required by miou]
  - install   duration          0.2.1          [required by dns, happy-eyeballs]
  - install   either            1.0.0          [required by containers]
  - install   eqaf              0.10           [required by digestif]
  - install   fmt               0.11.0         [required by dns-client, dns, happy-eyeballs]
  - install   gmap              0.3.0          [required by dns]
  - install   happy-eyeballs    2.0.1          [required by miou]
  - install   hxd               0.3.6          [required by miou]
  - install   ipaddr            5.6.1          [required by miou]
  - install   logs              0.10.0         [required by miou]
  - install   lru               0.3.1          [required by dns]
  - install   macaddr           5.6.1          [required by ipaddr]
  - install   metrics           0.5.0          [required by dns]
  - install   mirage-crypto     2.0.2          [required by mirage-crypto-rng]
  - install   mirage-crypto-rng 2.0.2          [required by miou]
  - install   mtime             2.1.0          [required by miou]
  - install   ocamlbuild        0.16.1         [required by ptime, fmt, logs, mtime]
  - install   ocamlfind         1.9.8          [required by ptime, fmt, logs, mtime]
  - install   ohex              0.2.0          [required by dns]
  - install   oseq              0.5.1          [required by dscheck]
  - install   psq               0.2.1          [required by lru]
  - install   ptime             1.2.0          [required by dns]
  - install   randomconv        0.2.0          [required by dns-client]
  - install   seq               base           [required by psq]
  - install   topkg             1.1.1          [required by ptime, fmt, logs, mtime]
  - install   tsort             2.2.0          [required by dscheck]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base64.3.5.2  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> installed base64.3.5.2
-> retrieved containers.3.17  (https://opam.ocaml.org/cache)
-> retrieved digestif.1.3.0  (https://opam.ocaml.org/cache)
-> retrieved dns.10.2.3, dns-client.10.2.3  (https://opam.ocaml.org/cache)
-> retrieved domain-name.0.5.0  (https://opam.ocaml.org/cache)
-> retrieved dscheck.0.5.0  (https://opam.ocaml.org/cache)
-> retrieved duration.0.2.1  (https://opam.ocaml.org/cache)
-> retrieved either.1.0.0  (https://opam.ocaml.org/cache)
-> installed domain-name.0.5.0
-> installed duration.0.2.1
-> retrieved eqaf.0.10  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> installed either.1.0.0
-> retrieved gmap.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved happy-eyeballs.2.0.1  (https://opam.ocaml.org/cache)
-> installed gmap.0.3.0
-> retrieved hxd.0.3.6  (https://opam.ocaml.org/cache)
-> installed eqaf.0.10
-> retrieved ipaddr.5.6.1, macaddr.5.6.1  (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0  (https://opam.ocaml.org/cache)
-> retrieved lru.0.3.1  (https://opam.ocaml.org/cache)
-> installed macaddr.5.6.1
-> retrieved metrics.0.5.0  (https://opam.ocaml.org/cache)
-> installed digestif.1.3.0
-> installed ipaddr.5.6.1
-> retrieved mirage-crypto.2.0.2, mirage-crypto-rng.2.0.2  (https://opam.ocaml.org/cache)
-> retrieved mtime.2.1.0  (https://opam.ocaml.org/cache)
-> installed containers.3.17
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8  (https://opam.ocaml.org/cache)
-> retrieved ohex.0.2.0  (https://opam.ocaml.org/cache)
-> retrieved oseq.0.5.1  (https://opam.ocaml.org/cache)
-> installed cmdliner.2.1.0
-> installed mirage-crypto.2.0.2
-> retrieved psq.0.2.1  (https://opam.ocaml.org/cache)
-> installed ohex.0.2.0
-> retrieved ptime.1.2.0  (https://opam.ocaml.org/cache)
-> retrieved randomconv.0.2.0  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> installed randomconv.0.2.0
-> installed oseq.0.5.1
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved tsort.2.2.0  (https://opam.ocaml.org/cache)
-> installed psq.0.2.1
-> installed tsort.2.2.0
-> installed lru.0.3.1
-> installed hxd.0.3.6
-> installed dscheck.0.5.0
-> installed ocamlfind.1.9.8
-> removed   miou.0.5.1
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed mtime.2.1.0
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed metrics.0.5.0
-> installed logs.0.10.0
-> installed happy-eyeballs.2.0.1
-> installed mirage-crypto-rng.2.0.2
-> installed dns.10.2.3
-> installed dns-client.10.2.3
-> installed miou.0.5.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-26 12:46.49 ---> saved as "401011bee7a8ba8a1de066311b753ee25278b831bc7779768414e09a8683aaf4"

/home/opam: (run (shell  "opam reinstall --with-test --verbose miou.0.5.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'miou.0.5.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile miou 0.5.1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [miou: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "miou" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/miou.0.5.1)
Processing  2/4: [miou: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "miou" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/miou.0.5.1)
- (cd _build/default/test/sync && ./test_sync.exe)
- Run tests into /home/opam/.opam/5.4/.opam-switch/build/miou.0.5.1/_build/default/test/sync/_tests/run-i2fR
- test01: ....ok
- test02: ..ok
- test03: ok
- (cd _build/default/test && ./test_core.exe)
- Run tests into /home/opam/.opam/5.4/.opam-switch/build/miou.0.5.1/_build/default/test/_tests/run-IFBV
- test01: .ok
- test02: .ok
- test03: .ok
- test04: .ok
- test05: .ok
- test06: .ok
- test07: .ok
- test08: .ok
- test09: .ok
- test10: .ok
- test11: .ok
- test12: .ok
- test13: .ok
- test14: .ok
- test15: .ok
- test16: .ok
- test17: .ok
- test18: .ok
- test19: .ok
- test20: .ok
- test21: .ok
- test22: ..ok
- test23: .ok
- test24: ..ok
- test25: ..ok
- test26: .ok
- test27: .ok
- test28: .ok
- test29: .ok
- test30: .ok
- test31: .ok
- test32: .ok
- test33: .ok
- test34: .ok
- test35: ..ok
- test36: ..ok
- test37: .ok
- test38: .ok
- test39: .ok
- test40: .ok
- test41: .ok
- test42: .ok
- test43: .ok
- test44: ....ok
- test45: ....ok
- (cd _build/default/test && ./test_unix.exe)
- Run tests into /home/opam/.opam/5.4/.opam-switch/build/miou.0.5.1/_build/default/test/_tests/run-pS8s
- eof on pipe: .ok
-> compiled  miou.0.5.1
-> removed   miou.0.5.1
-> installed miou.0.5.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-26 12:46.57 ---> saved as "e41930c2621304bc00bc9e75aaa162826b48f51a0afe05d4d18ab545953f0b87"
Job succeeded
2026-01-26 12:47.02: Job succeeded