Build:
  1. 0
2026-03-29 20:20.01: New job: test google-drive-ocamlfuse.0.8.1, using opam 2.5
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29615/head (582f8e0b2a85975a1edb816451fdb64a8f8ee73e)
                              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/29615/head" && git reset --hard 582f8e0b
git fetch origin master
git merge --no-edit 747f3dca281b5ae6275dfa41069f059ae517126f
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.5 /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 google-drive-ocamlfuse.0.8.1 0.8.1
RUN opam reinstall google-drive-ocamlfuse.0.8.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" != 'google-drive-ocamlfuse.0.8.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 google-drive-ocamlfuse.0.8.1) || true
RUN opam reinstall --with-test --verbose google-drive-ocamlfuse.0.8.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" != 'google-drive-ocamlfuse.0.8.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-03-29 20:20.01: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-google-drive-ocamlfuse.0.8.1-582f8e0b2a85975a1edb816451fdb64a8f8ee73e"
2026-03-29 20:20.01: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.5 /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 google-drive-ocamlfuse.0.8.1 0.8.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall google-drive-ocamlfuse.0.8.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\" != 'google-drive-ocamlfuse.0.8.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 google-drive-ocamlfuse.0.8.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose google-drive-ocamlfuse.0.8.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\" != 'google-drive-ocamlfuse.0.8.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-03-29 20:20.01: Waiting for resource in pool OCluster
2026-03-29 20:20.01: Waiting for worker…
2026-03-29 20:20.03: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
HEAD is now at 747f3dca28 Merge pull request #29614 from ocaml/use-setup-ocaml-for-windows-ci
Updating 747f3dca28..582f8e0b2a
Fast-forward
 .../google-drive-ocamlfuse.0.8.1/opam              | 35 ++++++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 packages/google-drive-ocamlfuse/google-drive-ocamlfuse.0.8.1/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e' locally
docker.io/ocaml/opam@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e: Pulling from ocaml/opam
866771c43bf5: Already exists
1e49bea09367: Already exists
e793768537e6: Already exists
ed323d3d481a: Already exists
7df34a5cd5f1: Already exists
fd712d3eb935: Already exists
4b9fb8c99118: Already exists
9d9a01948b94: Already exists
0f1514f90b32: Already exists
e1ec5a753447: Already exists
03cc323e2f71: Already exists
c09c08ea9749: Already exists
b36b619f8e6b: Already exists
195344ca5274: Already exists
228ee78582a6: Already exists
504bde1c25b3: Already exists
9d8b1356c89f: Already exists
9d8b1356c89f: Already exists
568fb6dda155: Already exists
c499c9198aea: Already exists
048e5e358118: Already exists
871ca48eb45d: Already exists
4f4fb700ef54: Already exists
a5a2568b9df9: Already exists
068cf3106ac8: Already exists
559f54ec9b29: Already exists
798ffd96fde5: Already exists
e9a891bf80d7: Already exists
d720cfe12674: Already exists
c81c932f4a91: Already exists
79f24fa3bb11: Already exists
8c1debcd8c20: Already exists
1bb2cfea7250: Already exists
2b3d3ca75e4c: Already exists
557cacaf263c: Already exists
d10483022eef: Already exists
7b62a90d8223: Already exists
28ce8ea66e72: Already exists
d975909ea717: Already exists
5c215c69c247: Already exists
e7c082452a54: Already exists
d1a4c61b613c: Already exists
0195a6679dc6: Already exists
410dfa46d7be: Already exists
b7b221f39cbe: Already exists
Digest: sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
Status: Downloaded newer image for ocaml/opam@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
2026-03-29 20:20.56 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam"))
2026-03-29 20:20.56 ---> using "9e5c155e5cfd6651b3c89b7e9ed87482c354f9828254e1d42c21548ed08ef72f" 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-03-29 20:21.22 ---> saved as "179df2456be45512156f62e23bf0934788f0ca95e84f0e43cd83e57359f1770a"

/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.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-03-29 20:21.22 ---> saved as "7dba77f5ff0d2d128ecfebc9b1ac35232f9f179382ff94f5b2cde733dc6f0342"

/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-03-29 20:21.32 ---> saved as "2265b898cde0f74a0b2afee68a7031aca70e9564e08059402e40c6e232316dd0"

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-29 20:21.39 ---> saved as "60bd5b21ba5eeae738bdb94d7f6804feaeddf301b5b4bf03022715b113b4f9fd"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-29 20:22.01 ---> saved as "cdda9cbf1642424fdd169f40439a2a1200e3f4ee8f471e012a5d847b8afeb4b8"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
- Fetched 10.0 MB in 1s (7089 kB/s)
- Reading package lists...
- 
2026-03-29 20:22.03 ---> saved as "cc1bcf39c3bff924985805041643f6213217498a4154ddd526f09968d1f8ab9e"

/home/opam: (run (shell "opam pin add -k version -yn google-drive-ocamlfuse.0.8.1 0.8.1"))
google-drive-ocamlfuse is now pinned to version 0.8.1
2026-03-29 20:22.04 ---> saved as "5068c0e46123465ab5422f0c023b25cb8cc2f7747821316119262788933649c3"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall google-drive-ocamlfuse.0.8.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\" != 'google-drive-ocamlfuse.0.8.1' && 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.8.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 48 packages
  - install astring                0.8.5          [required by fpath]
  - install camlidl                1.13           [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-pkg-config        4              [required by conf-libfuse, conf-zlib, zarith, conf-sqlite3]
  - install conf-sqlite3           1              [required by sqlite3]
  - 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 csexp                  1.5.2          [required by dune-configurator]
  - install cstruct                6.2.0          [required by hex]
  - install dune                   3.22.0         [required by google-drive-ocamlfuse]
  - install dune-compiledb         0.6.0          [required by sqlite3]
  - install dune-configurator      3.22.0         [required by ocamlfuse, cryptokit, sqlite3]
  - install extlib                 1.8.0          [required by google-drive-ocamlfuse]
  - 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 gapi-ocaml             0.4.9          [required by google-drive-ocamlfuse]
  - install google-drive-ocamlfuse 0.8.1 (pinned)
  - install hex                    1.5.0          [required by ezjsonm]
  - install hmap                   0.8.1          [required by tiny_httpd]
  - install iostream               0.3            [required by tiny_httpd]
  - install jsonm                  1.0.2          [required by ezjsonm]
  - install menhir                 20250912       [required by otoml]
  - install menhirCST              20250912       [required by menhir]
  - install menhirLib              20250912       [required by otoml]
  - install menhirSdk              20250912       [required by menhir]
  - install num                    1.6            [required by sexplib]
  - install ocamlbuild             0.16.1         [required by uutf, hmap]
  - install ocamlfind              1.9.8          [required by uutf, zarith, ocurl, hmap]
  - install ocamlfuse              2.7.2          [required by google-drive-ocamlfuse]
  - install ocurl                  0.9.2          [required by gapi-ocaml]
  - install otoml                  1.0.5          [required by google-drive-ocamlfuse]
  - install parsexp                v0.16.0        [required by sexplib]
  - install result                 1.5            [required by tiny_httpd]
  - install seq                    base           [required by tiny_httpd]
  - install sexplib                v0.16.0        [required by dune-compiledb]
  - install sexplib0               v0.16.0        [required by dune-compiledb]
  - install sqlite3                5.4.0          [required by google-drive-ocamlfuse]
  - install tiny_httpd             0.20           [required by google-drive-ocamlfuse]
  - install topkg                  1.1.1          [required by uutf, hmap]
  - install uutf                   1.0.4          [required by otoml]
  - 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 libsqlite3-dev pkg-config 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" "libsqlite3-dev" "pkg-config" "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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../libsqlite3-0_3.46.1-7+deb13u1_amd64.deb ...
- Unpacking libsqlite3-0:amd64 (3.46.1-7+deb13u1) over (3.46.1-7) ...
- Setting up libsqlite3-0:amd64 (3.46.1-7+deb13u1) ...
- (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 .../openssl-provider-legacy_3.5.5-1~deb13u1_amd64.deb ...
- Unpacking openssl-provider-legacy (3.5.5-1~deb13u1) over (3.5.4-1~deb13u2) ...
- Setting up openssl-provider-legacy (3.5.5-1~deb13u1) ...
- (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 .../libssl3t64_3.5.5-1~deb13u1_amd64.deb ...
- Unpacking libssl3t64:amd64 (3.5.5-1~deb13u1) over (3.5.4-1~deb13u2) ...
- Setting up libssl3t64:amd64 (3.5.5-1~deb13u1) ...
- (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 .../00-libcom-err2_1.47.2-3+b10_amd64.deb ...
- Unpacking libcom-err2:amd64 (1.47.2-3+b10) over (1.47.2-3+b7) ...
- Selecting previously unselected package comerr-dev:amd64.
- Preparing to unpack .../01-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 .../02-libgssrpc4t64_1.21.3-5_amd64.deb ...
- Unpacking libgssrpc4t64:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkadm5clnt-mit12:amd64.
- Preparing to unpack .../03-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 .../04-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 .../05-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 .../06-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 .../07-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 .../08-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 .../09-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 .../10-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 .../11-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 .../12-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 .../13-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 .../14-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 .../15-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 .../16-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 .../17-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 .../18-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 .../19-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 .../20-libldap-dev_2.6.10+dfsg-1_amd64.deb ...
- Unpacking libldap-dev:amd64 (2.6.10+dfsg-1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../21-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../22-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../23-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package libnghttp2-dev:amd64.
- Preparing to unpack .../24-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 .../25-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 .../26-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 .../27-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 .../28-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 .../29-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 .../30-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 .../31-libssl-dev_3.5.5-1~deb13u1_amd64.deb ...
- Unpacking libssl-dev:amd64 (3.5.5-1~deb13u1) ...
- Selecting previously unselected package libssh2-1-dev:amd64.
- Preparing to unpack .../32-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 .../33-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 .../34-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 .../35-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 .../36-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 .../37-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 .../38-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 .../39-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 .../40-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 .../41-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 .../42-libfuse-dev_2.9.9-9_amd64.deb ...
- Unpacking libfuse-dev:amd64 (2.9.9-9) ...
- Selecting previously unselected package libsqlite3-dev:amd64.
- Preparing to unpack .../43-libsqlite3-dev_3.46.1-7+deb13u1_amd64.deb ...
- Unpacking libsqlite3-dev:amd64 (3.46.1-7+deb13u1) ...
- Selecting previously unselected package libtasn1-doc.
- Preparing to unpack .../44-libtasn1-doc_4.20.0-2_all.deb ...
- Unpacking libtasn1-doc (4.20.0-2) ...
- Preparing to unpack .../45-openssl_3.5.5-1~deb13u1_amd64.deb ...
- Unpacking openssl (3.5.5-1~deb13u1) over (3.5.4-1~deb13u2) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../46-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libgnutls-openssl27t64:amd64 (3.8.9-3+deb13u2) ...
- 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 libcom-err2:amd64 (1.47.2-3+b10) ...
- 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 libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libgnutls-dane0t64:amd64 (3.8.9-3+deb13u2) ...
- Setting up libsqlite3-dev:amd64 (3.46.1-7+deb13u1) ...
- 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~deb13u1) ...
- Setting up libsepol-dev:amd64 (3.8.1-1) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- 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~deb13u1) ...
- 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 pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- 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 libnghttp2-dev:amd64 (1.64.0-1.1) ...
- 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+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved camlidl.1.13  (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)
-> retrieved cryptokit.1.21.1  (cached)
-> installed conf-gmp.5
-> installed conf-libcurl.2
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2  (cached)
-> installed conf-gmp-powm-sec.4
-> installed conf-zlib.1
-> installed conf-libfuse.1
-> installed conf-sqlite3.1
-> retrieved cstruct.6.2.0  (cached)
-> retrieved dune.3.22.0, dune-configurator.3.22.0  (cached)
-> installed camlidl.1.13
-> retrieved dune-compiledb.0.6.0  (cached)
-> retrieved extlib.1.8.0  (cached)
-> retrieved ezjsonm.1.3.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved gapi-ocaml.0.4.9  (cached)
-> retrieved google-drive-ocamlfuse.0.8.1  (cached)
-> retrieved hex.1.5.0  (cached)
-> retrieved hmap.0.8.1  (cached)
-> retrieved iostream.0.3  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocamlfuse.2.7.2  (cached)
-> retrieved ocurl.0.9.2  (cached)
-> retrieved otoml.1.0.5  (cached)
-> retrieved parsexp.v0.16.0  (cached)
-> retrieved result.1.5  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib.v0.16.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved sqlite3.5.4.0  (cached)
-> retrieved tiny_httpd.0.20  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved yojson.3.0.0  (cached)
-> retrieved zarith.1.14  (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed hmap.0.8.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.0
-> installed camlp-streams.5.0.1
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed cstruct.6.2.0
-> installed iostream.0.3
-> installed menhirCST.20250912
-> installed menhirLib.20250912
-> installed menhirSdk.20250912
-> installed result.1.5
-> installed sexplib0.v0.16.0
-> installed yojson.3.0.0
-> installed hex.1.5.0
-> installed extlib.1.8.0
-> installed ezjsonm.1.3.0
-> installed dune-configurator.3.22.0
-> installed parsexp.v0.16.0
-> installed tiny_httpd.0.20
-> installed sexplib.v0.16.0
-> installed ocurl.0.9.2
-> installed ocamlfuse.2.7.2
-> installed dune-compiledb.0.6.0
-> installed cryptokit.1.21.1
-> installed sqlite3.5.4.0
-> installed menhir.20250912
-> installed otoml.1.0.5
-> installed gapi-ocaml.0.4.9
-> installed google-drive-ocamlfuse.0.8.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-29 20:23.34 ---> saved as "731c2af6470b6228e0b7089d34e6342b40b8cf01d83d161ec36dc94c903e2b9b"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test google-drive-ocamlfuse.0.8.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile google-drive-ocamlfuse 0.8.1 (pinned)
=== 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.8.1  (https://github.com/astrada/google-drive-ocamlfuse/archive/v0.8.1.tar.gz)
-> 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.8.1
-> installed stdlib-shims.0.3.0
-> installed ounit2.2.2.7
-> installed google-drive-ocamlfuse.0.8.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-29 20:23.49 ---> saved as "c7a1d82a0648db69440755ff8294c9e60a259303410f7443d6f7016989944e71"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [google-drive-ocamlfuse.0.8.1: extract]
-> retrieved google-drive-ocamlfuse.0.8.1  (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.8.1)
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.8.1)
- (cd _build/default/test && ./testSuite.exe)
- ....................................Clearing cache...done
- ................
- Ran: 52 tests in: 0.22 seconds.
- OK
- Thread 14 killed on uncaught exception Failure("expected worker failure")
- Raised at Stdlib.failwith in file "stdlib.ml", line 29, characters 17-33
- Called from ThreadPool.add_work.(fun).f'.(fun) in file "src/threadPool.ml", line 34, characters 28-33
- Called from Utils.try_finally in file "src/utils.ml", line 23, characters 17-21
- Re-raised at Utils.try_finally in file "src/utils.ml", line 36, characters 4-11
- Called from Thread.create.(fun) in file "thread.ml", line 49, characters 8-14
-> compiled  google-drive-ocamlfuse.0.8.1
-> removed   google-drive-ocamlfuse.0.8.1
-> installed google-drive-ocamlfuse.0.8.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-29 20:24.00 ---> saved as "9a83da60d456aead03759294c25a7fd4c89ba9c8299621c1ab5e72d2c40330a7"
Job succeeded
2026-03-29 20:24.04: Job succeeded