Build:
  1. 0
2026-04-16 22:58.37: New job: test google-drive-ocamlfuse.0.7.32 with sqlite3.5.4.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29737/head (fb4005fd6217d2a6a88f6af2a1faf624c9e020ad)
                              on debian-13-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29737/head" && git reset --hard fb4005fd
git fetch origin master
git merge --no-edit ba1ca7509cb2617776f017673de0f2a48be67105
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126
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 sqlite3.5.4.1 5.4.1
RUN opam reinstall sqlite3.5.4.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" != 'sqlite3.5.4.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall google-drive-ocamlfuse.0.7.32; \
    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" != 'google-drive-ocamlfuse.0.7.32' && 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 google-drive-ocamlfuse.0.7.32) || true
RUN opam reinstall --with-test --verbose google-drive-ocamlfuse.0.7.32; \
    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" != 'google-drive-ocamlfuse.0.7.32' && 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-16 22:58.37: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126-sqlite3.5.4.1-google-drive-ocamlfuse.0.7.32-fb4005fd6217d2a6a88f6af2a1faf624c9e020ad"
2026-04-16 22:58.37: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126)
 (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 sqlite3.5.4.1 5.4.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall sqlite3.5.4.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\" != 'sqlite3.5.4.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall google-drive-ocamlfuse.0.7.32;\
             \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\" != 'google-drive-ocamlfuse.0.7.32' && 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 google-drive-ocamlfuse.0.7.32) || true"))
 (run (shell  "opam reinstall --with-test --verbose google-drive-ocamlfuse.0.7.32;\
             \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\" != 'google-drive-ocamlfuse.0.7.32' && 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-16 22:58.37: Waiting for resource in pool OCluster
2026-04-16 22:58.39: Waiting for worker…
2026-04-16 22:58.40: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
Updating files:  50% (9564/18758)
Updating files:  51% (9567/18758)
Updating files:  52% (9755/18758)
Updating files:  53% (9942/18758)
Updating files:  54% (10130/18758)
Updating files:  55% (10317/18758)
Updating files:  56% (10505/18758)
Updating files:  57% (10693/18758)
Updating files:  58% (10880/18758)
Updating files:  59% (11068/18758)
Updating files:  60% (11255/18758)
Updating files:  61% (11443/18758)
Updating files:  62% (11630/18758)
Updating files:  63% (11818/18758)
Updating files:  64% (12006/18758)
Updating files:  65% (12193/18758)
Updating files:  66% (12381/18758)
Updating files:  67% (12568/18758)
Updating files:  68% (12756/18758)
Updating files:  69% (12944/18758)
Updating files:  70% (13131/18758)
Updating files:  71% (13319/18758)
Updating files:  72% (13506/18758)
Updating files:  73% (13694/18758)
Updating files:  74% (13881/18758)
Updating files:  75% (14069/18758)
Updating files:  76% (14257/18758)
Updating files:  77% (14444/18758)
Updating files:  78% (14632/18758)
Updating files:  79% (14819/18758)
Updating files:  80% (15007/18758)
Updating files:  81% (15194/18758)
Updating files:  82% (15382/18758)
Updating files:  83% (15570/18758)
Updating files:  84% (15757/18758)
Updating files:  85% (15945/18758)
Updating files:  86% (16132/18758)
Updating files:  87% (16320/18758)
Updating files:  88% (16508/18758)
Updating files:  89% (16695/18758)
Updating files:  90% (16883/18758)
Updating files:  91% (17070/18758)
Updating files:  92% (17258/18758)
Updating files:  93% (17445/18758)
Updating files:  94% (17633/18758)
Updating files:  95% (17821/18758)
Updating files:  96% (18008/18758)
Updating files:  97% (18196/18758)
Updating files:  98% (18383/18758)
Updating files:  99% (18571/18758)
Updating files: 100% (18758/18758)
Updating files: 100% (18758/18758), done.
HEAD is now at ba1ca7509c Merge pull request #29732 from vscoqbot/opam-publish-vscoq-language-server.2.4.3
Updating ba1ca7509c..fb4005fd62
Fast-forward
 packages/sqlite3/sqlite3.5.4.1/opam | 49 +++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)
 create mode 100644 packages/sqlite3/sqlite3.5.4.1/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126)
2026-04-16 23:01.47 ---> using "d0e330c08fa445d83f06df86dbe749aac73c20b9c3be340824d01a143f189b82" 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-16 23:01.47 ---> using "3ec7ac935151f5277a236626f366bf7f6f18395cb01e6e86eff2abeffc750f69" 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-16 23:01.47 ---> using "b5a0847c35501fd963cedc3388b00c999e5617a9db85df5529c240a6fc10a617" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=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       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages    ocaml-base-compiler.4.14.3, 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.3
2026-04-16 23:01.47 ---> using "28464b62e165a839b63b1c2ae024a4b4fcbe23c1802c3adf881d35db6bc1d4c2" 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-16 23:01.47 ---> using "4dfd69403557bd9c8ecec7a8b2fdd9b50feea12943fd8b9150cd347ede8d5f38" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-16 23:01.49 ---> using "03b77d3bda42aa7a2baf25ccf4b4fbe8f6a4ff7d18ab473e3e0764a1cdb2bada" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
default (at file:///home/opam/opam-repository): 
    [WARNING] opam is out-of-date. Please consider updating it (https://opam.ocaml.org/doc/Install.html)

default (at file:///home/opam/opam-repository): 
    [INFO] opam 2.5.1 includes security fixes; please consider upgrading (https://opam.ocaml.org/doc/Install.html)

2026-04-16 23:01.49 ---> using "53641f3c49ad1ff6351781c84dd982d1816ba02d2ca888f7e33155ca2c8ef941" 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 [123 kB]
- Fetched 213 kB in 0s (1340 kB/s)
- Reading package lists...
- 
2026-04-16 23:01.49 ---> saved as "4c9b04b4f8fda5a6cc73d53bcfb73ae3d1c37330caf3a4e554baea23cfee8793"

/home/opam: (run (shell "opam pin add -k version -yn sqlite3.5.4.1 5.4.1"))
sqlite3 is now pinned to version 5.4.1
2026-04-16 23:01.50 ---> saved as "6695c7a6de0f36b2cdef7e72a310596ddc529b0117aa7a1531c71112c0666d5b"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall sqlite3.5.4.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\" != 'sqlite3.5.4.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
sqlite3.5.4.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 22 packages
  - install astring           0.8.5          [required by fpath]
  - install conf-pkg-config   4              [required by conf-sqlite3]
  - install conf-sqlite3      1              [required by sqlite3]
  - install csexp             1.5.2          [required by dune-configurator]
  - install cstruct           6.2.0          [required by hex]
  - install dune              3.22.2         [required by sqlite3]
  - install dune-compiledb    0.6.0          [required by sqlite3]
  - install dune-configurator 3.22.2         [required by sqlite3]
  - install ezjsonm           1.3.0          [required by dune-compiledb]
  - install fmt               0.11.0         [required by cstruct]
  - install fpath             0.7.3          [required by dune-compiledb]
  - install hex               1.5.0          [required by ezjsonm]
  - install jsonm             1.0.2          [required by ezjsonm]
  - install num               1.6            [required by sexplib]
  - install ocamlbuild        0.16.1         [required by fpath]
  - install ocamlfind         1.9.8          [required by fpath]
  - install parsexp           v0.16.0        [required by sexplib]
  - install sexplib           v0.16.0        [required by dune-compiledb]
  - install sexplib0          v0.16.0        [required by dune-compiledb]
  - install sqlite3           5.4.1 (pinned)
  - install topkg             1.1.1          [required by fpath]
  - install uutf              1.0.4          [required by ezjsonm]

The following system packages will first need to be installed:
    libsqlite3-dev pkg-config

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libsqlite3-dev" "pkg-config"
- Selecting previously unselected package libpkgconf3:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20623 files and directories currently installed.)
- Preparing to unpack .../libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package libsqlite3-dev:amd64.
- Preparing to unpack .../libsqlite3-dev_3.46.1-7+deb13u1_amd64.deb ...
- Unpacking libsqlite3-dev:amd64 (3.46.1-7+deb13u1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libsqlite3-dev:amd64 (3.46.1-7+deb13u1) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-pkg-config.4
-> retrieved cstruct.6.2.0  (cached)
-> installed conf-sqlite3.1
-> retrieved dune.3.22.2, dune-configurator.3.22.2  (cached)
-> retrieved dune-compiledb.0.6.0  (cached)
-> retrieved ezjsonm.1.3.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved hex.1.5.0  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved parsexp.v0.16.0  (cached)
-> retrieved sexplib.v0.16.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved sqlite3.5.4.1  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uutf.1.0.4  (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed dune.3.22.2
-> installed csexp.1.5.2
-> installed cstruct.6.2.0
-> installed sexplib0.v0.16.0
-> installed hex.1.5.0
-> installed ezjsonm.1.3.0
-> installed parsexp.v0.16.0
-> installed dune-configurator.3.22.2
-> installed sexplib.v0.16.0
-> installed dune-compiledb.0.6.0
-> installed sqlite3.5.4.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-16 23:02.36 ---> saved as "c0200323547d3c3345be7bb569d6799f58157b2713ab622d133af968ba8c6284"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall google-drive-ocamlfuse.0.7.32;\
                        \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\" != 'google-drive-ocamlfuse.0.7.32' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
google-drive-ocamlfuse.0.7.32 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 21 packages
  - install camlidl                1.13-1 [required by google-drive-ocamlfuse]
  - install camlp-streams          5.0.1  [required by gapi-ocaml]
  - install conf-gmp               5      [required by conf-gmp-powm-sec, zarith]
  - install conf-gmp-powm-sec      4      [required by cryptokit]
  - install conf-libcurl           2      [required by ocurl]
  - install conf-libfuse           1      [required by ocamlfuse]
  - install conf-zlib              1      [required by cryptokit]
  - install cppo                   1.8.0  [required by extlib, gapi-ocaml]
  - install cryptokit              1.21.1 [required by google-drive-ocamlfuse]
  - install extlib                 1.8.0  [required by google-drive-ocamlfuse]
  - install gapi-ocaml             0.4.9  [required by google-drive-ocamlfuse]
  - install google-drive-ocamlfuse 0.7.32
  - install hmap                   0.8.1  [required by tiny_httpd]
  - install iostream               0.3    [required by tiny_httpd]
  - install ocamlfuse              2.7.2  [required by google-drive-ocamlfuse]
  - install ocurl                  0.9.2  [required by gapi-ocaml]
  - install result                 1.5    [required by tiny_httpd]
  - install seq                    base   [required by tiny_httpd]
  - install tiny_httpd             0.20   [required by google-drive-ocamlfuse]
  - install yojson                 3.0.0  [required by gapi-ocaml]
  - install zarith                 1.14   [required by cryptokit]

The following system packages will first need to be installed:
    libcurl4-gnutls-dev libfuse-dev libgmp-dev zlib1g-dev

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libcurl4-gnutls-dev" "libfuse-dev" "libgmp-dev" "zlib1g-dev"
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20670 files and directories currently installed.)
- Preparing to unpack .../openssl-provider-legacy_3.5.5-1~deb13u2_amd64.deb ...
- Unpacking openssl-provider-legacy (3.5.5-1~deb13u2) over (3.5.5-1~deb13u1) ...
- Setting up openssl-provider-legacy (3.5.5-1~deb13u2) ...
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20670 files and directories currently installed.)
- Preparing to unpack .../libssl3t64_3.5.5-1~deb13u2_amd64.deb ...
- Unpacking libssl3t64:amd64 (3.5.5-1~deb13u2) over (3.5.5-1~deb13u1) ...
- Setting up libssl3t64:amd64 (3.5.5-1~deb13u2) ...
- Selecting previously unselected package comerr-dev:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20670 files and directories currently installed.)
- Preparing to unpack .../00-comerr-dev_2.1-1.47.2-3+b10_amd64.deb ...
- Unpacking comerr-dev:amd64 (2.1-1.47.2-3+b10) ...
- Selecting previously unselected package libgssrpc4t64:amd64.
- Preparing to unpack .../01-libgssrpc4t64_1.21.3-5_amd64.deb ...
- Unpacking libgssrpc4t64:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkadm5clnt-mit12:amd64.
- Preparing to unpack .../02-libkadm5clnt-mit12_1.21.3-5_amd64.deb ...
- Unpacking libkadm5clnt-mit12:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkdb5-10t64:amd64.
- Preparing to unpack .../03-libkdb5-10t64_1.21.3-5_amd64.deb ...
- Unpacking libkdb5-10t64:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkadm5srv-mit12:amd64.
- Preparing to unpack .../04-libkadm5srv-mit12_1.21.3-5_amd64.deb ...
- Unpacking libkadm5srv-mit12:amd64 (1.21.3-5) ...
- Selecting previously unselected package krb5-multidev:amd64.
- Preparing to unpack .../05-krb5-multidev_1.21.3-5_amd64.deb ...
- Unpacking krb5-multidev:amd64 (1.21.3-5) ...
- Selecting previously unselected package libbrotli-dev:amd64.
- Preparing to unpack .../06-libbrotli-dev_1.1.0-2+b7_amd64.deb ...
- Unpacking libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Selecting previously unselected package libevent-2.1-7t64:amd64.
- Preparing to unpack .../07-libevent-2.1-7t64_2.1.12-stable-10+b1_amd64.deb ...
- Unpacking libevent-2.1-7t64:amd64 (2.1.12-stable-10+b1) ...
- Selecting previously unselected package libunbound8:amd64.
- Preparing to unpack .../08-libunbound8_1.22.0-2+deb13u1_amd64.deb ...
- Unpacking libunbound8:amd64 (1.22.0-2+deb13u1) ...
- Selecting previously unselected package libgnutls-dane0t64:amd64.
- Preparing to unpack .../09-libgnutls-dane0t64_3.8.9-3+deb13u2_amd64.deb ...
- Unpacking libgnutls-dane0t64:amd64 (3.8.9-3+deb13u2) ...
- Selecting previously unselected package libgnutls-openssl27t64:amd64.
- Preparing to unpack .../10-libgnutls-openssl27t64_3.8.9-3+deb13u2_amd64.deb ...
- Unpacking libgnutls-openssl27t64:amd64 (3.8.9-3+deb13u2) ...
- Selecting previously unselected package libidn2-dev:amd64.
- Preparing to unpack .../11-libidn2-dev_2.3.8-2_amd64.deb ...
- Unpacking libidn2-dev:amd64 (2.3.8-2) ...
- Selecting previously unselected package libp11-kit-dev:amd64.
- Preparing to unpack .../12-libp11-kit-dev_0.25.5-3_amd64.deb ...
- Unpacking libp11-kit-dev:amd64 (0.25.5-3) ...
- Selecting previously unselected package libtasn1-6-dev:amd64.
- Preparing to unpack .../13-libtasn1-6-dev_4.20.0-2_amd64.deb ...
- Unpacking libtasn1-6-dev:amd64 (4.20.0-2) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../14-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../15-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package nettle-dev:amd64.
- Preparing to unpack .../16-nettle-dev_3.10.1-1_amd64.deb ...
- Unpacking nettle-dev:amd64 (3.10.1-1) ...
- Selecting previously unselected package libgnutls28-dev:amd64.
- Preparing to unpack .../17-libgnutls28-dev_3.8.9-3+deb13u2_amd64.deb ...
- Unpacking libgnutls28-dev:amd64 (3.8.9-3+deb13u2) ...
- Selecting previously unselected package libkrb5-dev:amd64.
- Preparing to unpack .../18-libkrb5-dev_1.21.3-5_amd64.deb ...
- Unpacking libkrb5-dev:amd64 (1.21.3-5) ...
- Selecting previously unselected package libldap-dev:amd64.
- Preparing to unpack .../19-libldap-dev_2.6.10+dfsg-1_amd64.deb ...
- Unpacking libldap-dev:amd64 (2.6.10+dfsg-1) ...
- Selecting previously unselected package libnghttp2-dev:amd64.
- Preparing to unpack .../20-libnghttp2-dev_1.64.0-1.1_amd64.deb ...
- Unpacking libnghttp2-dev:amd64 (1.64.0-1.1) ...
- Selecting previously unselected package libnghttp3-dev:amd64.
- Preparing to unpack .../21-libnghttp3-dev_1.8.0-1_amd64.deb ...
- Unpacking libnghttp3-dev:amd64 (1.8.0-1) ...
- Selecting previously unselected package libngtcp2-crypto-gnutls-dev:amd64.
- Preparing to unpack .../22-libngtcp2-crypto-gnutls-dev_1.11.0-1_amd64.deb ...
- Unpacking libngtcp2-crypto-gnutls-dev:amd64 (1.11.0-1) ...
- Selecting previously unselected package libngtcp2-dev:amd64.
- Preparing to unpack .../23-libngtcp2-dev_1.11.0-1_amd64.deb ...
- Unpacking libngtcp2-dev:amd64 (1.11.0-1) ...
- Selecting previously unselected package libpsl-dev:amd64.
- Preparing to unpack .../24-libpsl-dev_0.21.2-1.1+b1_amd64.deb ...
- Unpacking libpsl-dev:amd64 (0.21.2-1.1+b1) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../25-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Selecting previously unselected package librtmp-dev:amd64.
- Preparing to unpack .../26-librtmp-dev_2.4+20151223.gitfa8646d.1-2+b5_amd64.deb ...
- Unpacking librtmp-dev:amd64 (2.4+20151223.gitfa8646d.1-2+b5) ...
- Selecting previously unselected package libssl-dev:amd64.
- Preparing to unpack .../27-libssl-dev_3.5.5-1~deb13u2_amd64.deb ...
- Unpacking libssl-dev:amd64 (3.5.5-1~deb13u2) ...
- Selecting previously unselected package libssh2-1-dev:amd64.
- Preparing to unpack .../28-libssh2-1-dev_1.11.1-1_amd64.deb ...
- Unpacking libssh2-1-dev:amd64 (1.11.1-1) ...
- Selecting previously unselected package libzstd-dev:amd64.
- Preparing to unpack .../29-libzstd-dev_1.5.7+dfsg-1_amd64.deb ...
- Unpacking libzstd-dev:amd64 (1.5.7+dfsg-1) ...
- Selecting previously unselected package libcurl4-gnutls-dev:amd64.
- Preparing to unpack .../30-libcurl4-gnutls-dev_8.14.1-2+deb13u2_amd64.deb ...
- Unpacking libcurl4-gnutls-dev:amd64 (8.14.1-2+deb13u2) ...
- Selecting previously unselected package libfuse2t64:amd64.
- Preparing to unpack .../31-libfuse2t64_2.9.9-9_amd64.deb ...
- Adding 'diversion of /lib/x86_64-linux-gnu/libfuse.so.2 to /lib/x86_64-linux-gnu/libfuse.so.2.usr-is-merged by libfuse2t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libfuse.so.2.9.9 to /lib/x86_64-linux-gnu/libfuse.so.2.9.9.usr-is-merged by libfuse2t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libulockmgr.so.1 to /lib/x86_64-linux-gnu/libulockmgr.so.1.usr-is-merged by libfuse2t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libulockmgr.so.1.0.1 to /lib/x86_64-linux-gnu/libulockmgr.so.1.0.1.usr-is-merged by libfuse2t64'
- Unpacking libfuse2t64:amd64 (2.9.9-9) ...
- Selecting previously unselected package libsepol-dev:amd64.
- Preparing to unpack .../32-libsepol-dev_3.8.1-1_amd64.deb ...
- Unpacking libsepol-dev:amd64 (3.8.1-1) ...
- Selecting previously unselected package libpcre2-16-0:amd64.
- Preparing to unpack .../33-libpcre2-16-0_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-16-0:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libpcre2-32-0:amd64.
- Preparing to unpack .../34-libpcre2-32-0_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-32-0:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libpcre2-posix3:amd64.
- Preparing to unpack .../35-libpcre2-posix3_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-posix3:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libpcre2-dev:amd64.
- Preparing to unpack .../36-libpcre2-dev_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-dev:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libselinux1-dev:amd64.
- Preparing to unpack .../37-libselinux1-dev_3.8.1-1_amd64.deb ...
- Unpacking libselinux1-dev:amd64 (3.8.1-1) ...
- Selecting previously unselected package libfuse-dev:amd64.
- Preparing to unpack .../38-libfuse-dev_2.9.9-9_amd64.deb ...
- Unpacking libfuse-dev:amd64 (2.9.9-9) ...
- Selecting previously unselected package libtasn1-doc.
- Preparing to unpack .../39-libtasn1-doc_4.20.0-2_all.deb ...
- Unpacking libtasn1-doc (4.20.0-2) ...
- Preparing to unpack .../40-openssl_3.5.5-1~deb13u2_amd64.deb ...
- Unpacking openssl (3.5.5-1~deb13u2) over (3.5.5-1~deb13u1) ...
- Setting up libgnutls-openssl27t64:amd64 (3.8.9-3+deb13u2) ...
- Setting up libnghttp2-dev:amd64 (1.64.0-1.1) ...
- Setting up libzstd-dev:amd64 (1.5.7+dfsg-1) ...
- Setting up libtasn1-doc (4.20.0-2) ...
- Setting up libevent-2.1-7t64:amd64 (2.1.12-stable-10+b1) ...
- Setting up libngtcp2-crypto-gnutls-dev:amd64 (1.11.0-1) ...
- Setting up libngtcp2-dev:amd64 (1.11.0-1) ...
- Setting up libpcre2-16-0:amd64 (10.46-1~deb13u1) ...
- Setting up libpsl-dev:amd64 (0.21.2-1.1+b1) ...
- Setting up libpcre2-32-0:amd64 (10.46-1~deb13u1) ...
- Setting up libunbound8:amd64 (1.22.0-2+deb13u1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libgnutls-dane0t64:amd64 (3.8.9-3+deb13u2) ...
- Setting up libgssrpc4t64:amd64 (1.21.3-5) ...
- Setting up libldap-dev:amd64 (2.6.10+dfsg-1) ...
- Setting up comerr-dev:amd64 (2.1-1.47.2-3+b10) ...
- Setting up libssl-dev:amd64 (3.5.5-1~deb13u2) ...
- Setting up libsepol-dev:amd64 (3.8.1-1) ...
- Setting up libidn2-dev:amd64 (2.3.8-2) ...
- Setting up libnghttp3-dev:amd64 (1.8.0-1) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libpcre2-posix3:amd64 (10.46-1~deb13u1) ...
- Setting up libtasn1-6-dev:amd64 (4.20.0-2) ...
- Setting up openssl (3.5.5-1~deb13u2) ...
- Setting up libfuse2t64:amd64 (2.9.9-9) ...
- Removing 'diversion of /lib/x86_64-linux-gnu/libfuse.so.2 to /lib/x86_64-linux-gnu/libfuse.so.2.usr-is-merged by libfuse2t64'
- Removing 'diversion of /lib/x86_64-linux-gnu/libfuse.so.2.9.9 to /lib/x86_64-linux-gnu/libfuse.so.2.9.9.usr-is-merged by libfuse2t64'
- Removing 'diversion of /lib/x86_64-linux-gnu/libulockmgr.so.1 to /lib/x86_64-linux-gnu/libulockmgr.so.1.usr-is-merged by libfuse2t64'
- Removing 'diversion of /lib/x86_64-linux-gnu/libulockmgr.so.1.0.1 to /lib/x86_64-linux-gnu/libulockmgr.so.1.0.1.usr-is-merged by libfuse2t64'
- Setting up libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Setting up libp11-kit-dev:amd64 (0.25.5-3) ...
- Setting up libkadm5clnt-mit12:amd64 (1.21.3-5) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libpcre2-dev:amd64 (10.46-1~deb13u1) ...
- Setting up nettle-dev:amd64 (3.10.1-1) ...
- Setting up libkdb5-10t64:amd64 (1.21.3-5) ...
- Setting up libselinux1-dev:amd64 (3.8.1-1) ...
- Setting up libfuse-dev:amd64 (2.9.9-9) ...
- Setting up libssh2-1-dev:amd64 (1.11.1-1) ...
- Setting up libkadm5srv-mit12:amd64 (1.21.3-5) ...
- Setting up krb5-multidev:amd64 (1.21.3-5) ...
- Setting up libgnutls28-dev:amd64 (3.8.9-3+deb13u2) ...
- Setting up libkrb5-dev:amd64 (1.21.3-5) ...
- Setting up librtmp-dev:amd64 (2.4+20151223.gitfa8646d.1-2+b5) ...
- Setting up libcurl4-gnutls-dev:amd64 (8.14.1-2+deb13u2) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved camlidl.1.13-1  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> retrieved cppo.1.8.0  (cached)
-> installed conf-gmp.5
-> installed conf-libcurl.2
-> installed conf-libfuse.1
-> installed conf-zlib.1
-> retrieved cryptokit.1.21.1  (cached)
-> retrieved extlib.1.8.0  (cached)
-> installed conf-gmp-powm-sec.4
-> retrieved gapi-ocaml.0.4.9  (cached)
-> installed camlp-streams.5.0.1
-> retrieved google-drive-ocamlfuse.0.7.32  (https://opam.ocaml.org/cache)
-> retrieved hmap.0.8.1  (cached)
-> retrieved iostream.0.3  (cached)
-> retrieved ocamlfuse.2.7.2  (cached)
-> retrieved ocurl.0.9.2  (cached)
-> retrieved result.1.5  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved tiny_httpd.0.20  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed result.1.5
-> retrieved zarith.1.14  (cached)
-> installed hmap.0.8.1
-> installed iostream.0.3
-> installed cppo.1.8.0
-> installed camlidl.1.13-1
-> installed extlib.1.8.0
-> installed yojson.3.0.0
-> installed tiny_httpd.0.20
-> installed ocamlfuse.2.7.2
-> installed zarith.1.14
-> installed cryptokit.1.21.1
-> installed ocurl.0.9.2
-> installed gapi-ocaml.0.4.9
-> installed google-drive-ocamlfuse.0.7.32
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-16 23:03.57 ---> saved as "14a97d0382654b3e766fdeed2e3049092cc8605e625bcac6255438689510d2e3"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test google-drive-ocamlfuse.0.7.32) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile google-drive-ocamlfuse 0.7.32
=== install 2 packages
  - install   ounit2                 2.2.7  [required by google-drive-ocamlfuse]
  - install   stdlib-shims           0.3.0  [required by ounit2]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved google-drive-ocamlfuse.0.7.32  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> removed   google-drive-ocamlfuse.0.7.32
-> installed stdlib-shims.0.3.0
-> installed ounit2.2.2.7
-> installed google-drive-ocamlfuse.0.7.32
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-16 23:04.07 ---> saved as "2a72ae6701fdf936b925506afbd20e0849a76ba47e4a26d3f537708bb76f7861"

/home/opam: (run (shell  "opam reinstall --with-test --verbose google-drive-ocamlfuse.0.7.32;\
                        \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\" != 'google-drive-ocamlfuse.0.7.32' && 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 google-drive-ocamlfuse 0.7.32

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [google-drive-ocamlfuse.0.7.32: extract]
-> retrieved google-drive-ocamlfuse.0.7.32  (cached)
Processing  2/4: [google-drive-ocamlfuse: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "google-drive-ocamlfuse" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/google-drive-ocamlfuse.0.7.32)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w -3-27-32-58 -g -bin-annot -I src/.google_drive_ocamlfuse.objs/byte -I /home/opam/.opam/4.14/lib/camlidl -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cryptokit -I /home/opam/.opam/4.14/lib/curl -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/gapi-ocaml -I /home/opam/.opam/4.14/lib/gapi-ocaml/netstring-local -I /home/opam/.opam/4.14/lib/gapi-ocaml/netsys-local -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/iostream -I /home/opam/.opam/4.14/lib/iostream/types -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlfuse -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sqlite3 -I /home/opam/.opam/4.14/lib/tiny_httpd -I /home/opam/.opam/4.14/lib/tiny_httpd/core -I /home/opam/.opam/4.14/lib/tiny_httpd/html -I /home/opam/.opam/4.14/lib/tiny_httpd/unix -I /home/opam/.opam/4.14/lib/yojson -I /home/opam/.opam/4.14/lib/zarith -no-alias-deps -o src/.google_drive_ocamlfuse.objs/byte/oauth2.cmo -c -impl src/oauth2.ml)
- File "src/oauth2.ml", line 46, characters 10-33:
- 46 |           ExtString.String.exists message "CURLE_COULDNT_RESOLVE_HOST"
-                ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sub was omitted in the application of this function.
- File "src/oauth2.ml", line 47, characters 13-36:
- 47 |           || ExtString.String.exists message "CURLE_COULDNT_RESOLVE_PROXY"
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sub was omitted in the application of this function.
- File "src/oauth2.ml", line 50, characters 10-33:
- 50 |           ExtString.String.exists message "CURLE_OPERATION_TIMEOUTED"
-                ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sub was omitted in the application of this function.
- File "src/oauth2.ml", line 51, characters 13-36:
- 51 |           || ExtString.String.exists message "CURLE_COULDNT_CONNECT"
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sub was omitted in the application of this function.
- File "src/oauth2.ml", line 52, characters 13-36:
- 52 |           || ExtString.String.exists message "CURLE_SSL_CONNECT_ERROR"
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sub was omitted in the application of this function.
- File "src/oauth2.ml", line 53, characters 13-36:
- 53 |           || ExtString.String.exists message "CURLE_SEND_ERROR"
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sub was omitted in the application of this function.
- File "src/oauth2.ml", line 54, characters 13-36:
- 54 |           || ExtString.String.exists message "CURLE_RECV_ERROR"
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sub was omitted in the application of this function.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w -3-27-32-58 -g -I src/.google_drive_ocamlfuse.objs/byte -I src/.google_drive_ocamlfuse.objs/native -I /home/opam/.opam/4.14/lib/camlidl -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cryptokit -I /home/opam/.opam/4.14/lib/curl -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/gapi-ocaml -I /home/opam/.opam/4.14/lib/gapi-ocaml/netstring-local -I /home/opam/.opam/4.14/lib/gapi-ocaml/netsys-local -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/iostream -I /home/opam/.opam/4.14/lib/iostream/types -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlfuse -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sqlite3 -I /home/opam/.opam/4.14/lib/tiny_httpd -I /home/opam/.opam/4.14/lib/tiny_httpd/core -I /home/opam/.opam/4.14/lib/tiny_httpd/html -I /home/opam/.opam/4.14/lib/tiny_httpd/unix -I /home/opam/.opam/4.14/lib/yojson -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -o src/.google_drive_ocamlfuse.objs/native/cacheData.cmx -c -impl src/cacheData.ml)
- File "src/cacheData.ml", line 310, characters 24-52:
- 310 |          (fun (n, _) -> ExtString.String.starts_with n "x-")
-                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w -3-27-32-58 -g -bin-annot -I src/.google_drive_ocamlfuse.objs/byte -I /home/opam/.opam/4.14/lib/camlidl -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cryptokit -I /home/opam/.opam/4.14/lib/curl -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/gapi-ocaml -I /home/opam/.opam/4.14/lib/gapi-ocaml/netstring-local -I /home/opam/.opam/4.14/lib/gapi-ocaml/netsys-local -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/iostream -I /home/opam/.opam/4.14/lib/iostream/types -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlfuse -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sqlite3 -I /home/opam/.opam/4.14/lib/tiny_httpd -I /home/opam/.opam/4.14/lib/tiny_httpd/core -I /home/opam/.opam/4.14/lib/tiny_httpd/html -I /home/opam/.opam/4.14/lib/tiny_httpd/unix -I /home/opam/.opam/4.14/lib/yojson -I /home/opam/.opam/4.14/lib/zarith -no-alias-deps -o src/.google_drive_ocamlfuse.objs/byte/drive.cmo -c -impl src/drive.ml)
- File "src/drive.ml", line 85, characters 12-30:
- 85 |   let md5 = Cryptokit.Hash.md5 () in
-                  ^^^^^^^^^^^^^^^^^^
- Alert crypto: Cryptokit.Hash.md5
- MD5 is broken
- File "src/drive.ml", line 105, characters 13-39:
- 105 |           && ExtString.String.ends_with filename full_file_extension
-                    ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label suffix was omitted in the application of this function.
- File "src/drive.ml", line 147, characters 7-35:
- 147 |   else ExtString.String.starts_with path trash_directory_base_path
-              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
- File "src/drive.ml", line 155, characters 7-35:
- 155 |   else ExtString.String.starts_with path lost_and_found_directory
-              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
- File "src/drive.ml", line 162, characters 7-35:
- 162 |   else ExtString.String.starts_with path shared_with_me_directory
-              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
- File "src/drive.ml", line 1398, characters 16-34:
- 1398 |       let md5 = Cryptokit.Hash.md5 () in
-                        ^^^^^^^^^^^^^^^^^^
- Alert crypto: Cryptokit.Hash.md5
- MD5 is broken
- File "src/drive.ml", line 1729, characters 16-42:
- 1729 |             (if ExtString.String.ends_with mountpoint_path Filename.dir_sep then
-                        ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label suffix was omitted in the application of this function.
- File "src/drive.ml", line 2371, characters 9-35:
- 2371 |       if ExtString.String.ends_with mountpoint_path Filename.dir_sep then
-                 ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label suffix was omitted in the application of this function.
- File "src/drive.ml", line 2389, characters 12-40:
- 2389 |             ExtString.String.starts_with tp mountpoint_path
-                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
- File "src/drive.ml", line 2420, characters 13-41:
- 2420 |           if ExtString.String.starts_with target_path mountpoint_path then
-                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
- File "src/drive.ml", line 2427, characters 13-39:
- 2427 |           if ExtString.String.ends_with target_path Filename.dir_sep then
-                     ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label suffix was omitted in the application of this function.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w -3-27-58 -g -bin-annot -I bin/.gdfuse.eobjs/byte -I /home/opam/.opam/4.14/lib/camlidl -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cryptokit -I /home/opam/.opam/4.14/lib/curl -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/gapi-ocaml -I /home/opam/.opam/4.14/lib/gapi-ocaml/netstring-local -I /home/opam/.opam/4.14/lib/gapi-ocaml/netsys-local -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/iostream -I /home/opam/.opam/4.14/lib/iostream/types -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlfuse -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sqlite3 -I /home/opam/.opam/4.14/lib/tiny_httpd -I /home/opam/.opam/4.14/lib/tiny_httpd/core -I /home/opam/.opam/4.14/lib/tiny_httpd/html -I /home/opam/.opam/4.14/lib/tiny_httpd/unix -I /home/opam/.opam/4.14/lib/yojson -I /home/opam/.opam/4.14/lib/zarith -I src/.google_drive_ocamlfuse.objs/byte -no-alias-deps -o bin/.gdfuse.eobjs/byte/gdfuse.cmo -c -impl bin/gdfuse.ml)
- File "bin/gdfuse.ml", line 631, characters 28-56:
- 631 |       List.filter (fun o -> ExtString.String.starts_with o "gdfroot") opts
-                                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
- File "bin/gdfuse.ml", line 642, characters 33-61:
- 642 |       List.filter (fun o -> not (ExtString.String.starts_with o "gdfroot")) opts
-                                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w -3-27-32-58 -g -I src/.google_drive_ocamlfuse.objs/byte -I src/.google_drive_ocamlfuse.objs/native -I /home/opam/.opam/4.14/lib/camlidl -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cryptokit -I /home/opam/.opam/4.14/lib/curl -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/gapi-ocaml -I /home/opam/.opam/4.14/lib/gapi-ocaml/netstring-local -I /home/opam/.opam/4.14/lib/gapi-ocaml/netsys-local -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/iostream -I /home/opam/.opam/4.14/lib/iostream/types -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlfuse -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sqlite3 -I /home/opam/.opam/4.14/lib/tiny_httpd -I /home/opam/.opam/4.14/lib/tiny_httpd/core -I /home/opam/.opam/4.14/lib/tiny_httpd/html -I /home/opam/.opam/4.14/lib/tiny_httpd/unix -I /home/opam/.opam/4.14/lib/yojson -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -o src/.google_drive_ocamlfuse.objs/native/oauth2.cmx -c -impl src/oauth2.ml)
- File "src/oauth2.ml", line 46, characters 10-33:
- 46 |           ExtString.String.exists message "CURLE_COULDNT_RESOLVE_HOST"
-                ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sub was omitted in the application of this function.
- File "src/oauth2.ml", line 47, characters 13-36:
- 47 |           || ExtString.String.exists message "CURLE_COULDNT_RESOLVE_PROXY"
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sub was omitted in the application of this function.
- File "src/oauth2.ml", line 50, characters 10-33:
- 50 |           ExtString.String.exists message "CURLE_OPERATION_TIMEOUTED"
-                ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sub was omitted in the application of this function.
- File "src/oauth2.ml", line 51, characters 13-36:
- 51 |           || ExtString.String.exists message "CURLE_COULDNT_CONNECT"
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sub was omitted in the application of this function.
- File "src/oauth2.ml", line 52, characters 13-36:
- 52 |           || ExtString.String.exists message "CURLE_SSL_CONNECT_ERROR"
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sub was omitted in the application of this function.
- File "src/oauth2.ml", line 53, characters 13-36:
- 53 |           || ExtString.String.exists message "CURLE_SEND_ERROR"
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sub was omitted in the application of this function.
- File "src/oauth2.ml", line 54, characters 13-36:
- 54 |           || ExtString.String.exists message "CURLE_RECV_ERROR"
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sub was omitted in the application of this function.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w -3-27-32-58 -g -I src/.google_drive_ocamlfuse.objs/byte -I src/.google_drive_ocamlfuse.objs/native -I /home/opam/.opam/4.14/lib/camlidl -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cryptokit -I /home/opam/.opam/4.14/lib/curl -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/gapi-ocaml -I /home/opam/.opam/4.14/lib/gapi-ocaml/netstring-local -I /home/opam/.opam/4.14/lib/gapi-ocaml/netsys-local -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/iostream -I /home/opam/.opam/4.14/lib/iostream/types -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlfuse -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sqlite3 -I /home/opam/.opam/4.14/lib/tiny_httpd -I /home/opam/.opam/4.14/lib/tiny_httpd/core -I /home/opam/.opam/4.14/lib/tiny_httpd/html -I /home/opam/.opam/4.14/lib/tiny_httpd/unix -I /home/opam/.opam/4.14/lib/yojson -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -o src/.google_drive_ocamlfuse.objs/native/drive.cmx -c -impl src/drive.ml)
- File "src/drive.ml", line 85, characters 12-30:
- 85 |   let md5 = Cryptokit.Hash.md5 () in
-                  ^^^^^^^^^^^^^^^^^^
- Alert crypto: Cryptokit.Hash.md5
- MD5 is broken
- File "src/drive.ml", line 105, characters 13-39:
- 105 |           && ExtString.String.ends_with filename full_file_extension
-                    ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label suffix was omitted in the application of this function.
- File "src/drive.ml", line 147, characters 7-35:
- 147 |   else ExtString.String.starts_with path trash_directory_base_path
-              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
- File "src/drive.ml", line 155, characters 7-35:
- 155 |   else ExtString.String.starts_with path lost_and_found_directory
-              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
- File "src/drive.ml", line 162, characters 7-35:
- 162 |   else ExtString.String.starts_with path shared_with_me_directory
-              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
- File "src/drive.ml", line 1398, characters 16-34:
- 1398 |       let md5 = Cryptokit.Hash.md5 () in
-                        ^^^^^^^^^^^^^^^^^^
- Alert crypto: Cryptokit.Hash.md5
- MD5 is broken
- File "src/drive.ml", line 1729, characters 16-42:
- 1729 |             (if ExtString.String.ends_with mountpoint_path Filename.dir_sep then
-                        ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label suffix was omitted in the application of this function.
- File "src/drive.ml", line 2371, characters 9-35:
- 2371 |       if ExtString.String.ends_with mountpoint_path Filename.dir_sep then
-                 ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label suffix was omitted in the application of this function.
- File "src/drive.ml", line 2389, characters 12-40:
- 2389 |             ExtString.String.starts_with tp mountpoint_path
-                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
- File "src/drive.ml", line 2420, characters 13-41:
- 2420 |           if ExtString.String.starts_with target_path mountpoint_path then
-                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
- File "src/drive.ml", line 2427, characters 13-39:
- 2427 |           if ExtString.String.ends_with target_path Filename.dir_sep then
-                     ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label suffix was omitted in the application of this function.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w -3-27-58 -g -I bin/.gdfuse.eobjs/byte -I bin/.gdfuse.eobjs/native -I /home/opam/.opam/4.14/lib/camlidl -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cryptokit -I /home/opam/.opam/4.14/lib/curl -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/gapi-ocaml -I /home/opam/.opam/4.14/lib/gapi-ocaml/netstring-local -I /home/opam/.opam/4.14/lib/gapi-ocaml/netsys-local -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/iostream -I /home/opam/.opam/4.14/lib/iostream/types -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlfuse -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sqlite3 -I /home/opam/.opam/4.14/lib/tiny_httpd -I /home/opam/.opam/4.14/lib/tiny_httpd/core -I /home/opam/.opam/4.14/lib/tiny_httpd/html -I /home/opam/.opam/4.14/lib/tiny_httpd/unix -I /home/opam/.opam/4.14/lib/yojson -I /home/opam/.opam/4.14/lib/zarith -I src/.google_drive_ocamlfuse.objs/byte -I src/.google_drive_ocamlfuse.objs/native -intf-suffix .ml -no-alias-deps -o bin/.gdfuse.eobjs/native/gdfuse.cmx -c -impl bin/gdfuse.ml)
- File "bin/gdfuse.ml", line 631, characters 28-56:
- 631 |       List.filter (fun o -> ExtString.String.starts_with o "gdfroot") opts
-                                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
- File "bin/gdfuse.ml", line 642, characters 33-61:
- 642 |       List.filter (fun o -> not (ExtString.String.starts_with o "gdfroot")) opts
-                                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
Processing  2/4: [google-drive-ocamlfuse: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "google-drive-ocamlfuse" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/google-drive-ocamlfuse.0.7.32)
- (cd _build/default/test && ./testSuite.exe)
- ...........
- Ran: 11 tests in: 0.16 seconds.
- OK
-> compiled  google-drive-ocamlfuse.0.7.32
-> removed   google-drive-ocamlfuse.0.7.32
-> installed google-drive-ocamlfuse.0.7.32
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-16 23:04.16 ---> saved as "4a98e1979b85e893b1f613fc8f3344f331dd01106ee23c1cc3885ebd14b56b5d"
Job succeeded
2026-04-16 23:04.23: Job succeeded