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

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

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

2026-01-12 13:20.39: Connecting to build cluster…
2026-01-12 13:20.39: Waiting for resource in pool OCluster
2026-01-13 00:30.59: Waiting for worker…
2026-01-13 00:35.04: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files:  47% (9066/19194)
Updating files:  48% (9214/19194)
Updating files:  49% (9406/19194)
Updating files:  50% (9597/19194)
Updating files:  51% (9789/19194)
Updating files:  52% (9981/19194)
Updating files:  53% (10173/19194)
Updating files:  54% (10365/19194)
Updating files:  55% (10557/19194)
Updating files:  56% (10749/19194)
Updating files:  57% (10941/19194)
Updating files:  58% (11133/19194)
Updating files:  59% (11325/19194)
Updating files:  60% (11517/19194)
Updating files:  61% (11709/19194)
Updating files:  62% (11901/19194)
Updating files:  63% (12093/19194)
Updating files:  64% (12285/19194)
Updating files:  65% (12477/19194)
Updating files:  66% (12669/19194)
Updating files:  67% (12860/19194)
Updating files:  68% (13052/19194)
Updating files:  69% (13244/19194)
Updating files:  70% (13436/19194)
Updating files:  71% (13628/19194)
Updating files:  72% (13820/19194)
Updating files:  73% (14012/19194)
Updating files:  74% (14204/19194)
Updating files:  75% (14396/19194)
Updating files:  76% (14588/19194)
Updating files:  77% (14780/19194)
Updating files:  78% (14972/19194)
Updating files:  79% (15164/19194)
Updating files:  80% (15356/19194)
Updating files:  81% (15548/19194)
Updating files:  82% (15740/19194)
Updating files:  83% (15932/19194)
Updating files:  84% (16123/19194)
Updating files:  85% (16315/19194)
Updating files:  86% (16507/19194)
Updating files:  87% (16699/19194)
Updating files:  88% (16891/19194)
Updating files:  89% (17083/19194)
Updating files:  90% (17275/19194)
Updating files:  91% (17467/19194)
Updating files:  92% (17659/19194)
Updating files:  93% (17851/19194)
Updating files:  94% (18043/19194)
Updating files:  95% (18235/19194)
Updating files:  96% (18427/19194)
Updating files:  97% (18619/19194)
Updating files:  98% (18811/19194)
Updating files:  99% (19003/19194)
Updating files: 100% (19194/19194)
Updating files: 100% (19194/19194), done.
HEAD is now at 2bf2bf6ea0 Merge pull request #29204 from jserot/opam-publish-rfsm.2.3
Updating 2bf2bf6ea0..81910e3197
Fast-forward
 packages/menhir/menhir.20260112/opam       | 32 ++++++++++++++++++++++++++++++
 packages/menhirCST/menhirCST.20260112/opam | 30 ++++++++++++++++++++++++++++
 packages/menhirGLR/menhirGLR.20260112/opam | 30 ++++++++++++++++++++++++++++
 packages/menhirLib/menhirLib.20260112/opam | 31 +++++++++++++++++++++++++++++
 packages/menhirSdk/menhirSdk.20260112/opam | 31 +++++++++++++++++++++++++++++
 5 files changed, 154 insertions(+)
 create mode 100644 packages/menhir/menhir.20260112/opam
 create mode 100644 packages/menhirCST/menhirCST.20260112/opam
 create mode 100644 packages/menhirGLR/menhirGLR.20260112/opam
 create mode 100644 packages/menhirLib/menhirLib.20260112/opam
 create mode 100644 packages/menhirSdk/menhirSdk.20260112/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa' locally
docker.io/ocaml/opam@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa: Pulling from ocaml/opam
281b80c799de: Already exists
ce76feb86791: Already exists
7984eb0e5b45: Already exists
56c452a960b1: Already exists
b85825bef00a: Already exists
d6ff43dfb85c: Pulling fs layer
4197ec645389: Pulling fs layer
37cac33e41ff: Pulling fs layer
4cb993fb248e: Pulling fs layer
ca442870f91f: Pulling fs layer
b1d1a2fb5f4a: Pulling fs layer
0dea577b2801: Pulling fs layer
cc10daaea4fd: Pulling fs layer
37cac33e41ff: Download complete
5f878cb1723a: Pulling fs layer
8968959fa983: Pulling fs layer
4197ec645389: Download complete
b1d1a2fb5f4a: Download complete
5bdd9b9ed0e3: Pulling fs layer
4cb993fb248e: Download complete
ca442870f91f: Download complete
55661c5b388f: Pulling fs layer
cc10daaea4fd: Download complete
0dea577b2801: Download complete
92d1dc6907bd: Pulling fs layer
8968959fa983: Download complete
5f878cb1723a: Download complete
5bdd9b9ed0e3: Download complete
7100b414728b: Pulling fs layer
55661c5b388f: Download complete
92d1dc6907bd: Download complete
a6a54ddc9818: Pulling fs layer
a920ad627810: Pulling fs layer
7100b414728b: Download complete
4f4fb700ef54: Pulling fs layer
a6a54ddc9818: Download complete
a920ad627810: Download complete
f7df7b6e19c0: Pulling fs layer
cd713d66718c: Pulling fs layer
4f4fb700ef54: Download complete
6ed45ab2af86: Pulling fs layer
f7df7b6e19c0: Download complete
40598b80a8fe: Pulling fs layer
cd713d66718c: Download complete
6ed45ab2af86: Download complete
983f7969ff00: Pulling fs layer
40ec09ee09bd: Pulling fs layer
40598b80a8fe: Download complete
76a0afa38cd9: Pulling fs layer
983f7969ff00: Download complete
1d5a564d139a: Pulling fs layer
40ec09ee09bd: Download complete
82883b85a4f0: Pulling fs layer
76a0afa38cd9: Download complete
1d8458efd73b: Pulling fs layer
1d5a564d139a: Download complete
82883b85a4f0: Download complete
2d80a9fac9ac: Pulling fs layer
1d8458efd73b: Download complete
4d69ee6ae94b: Pulling fs layer
2d80a9fac9ac: Download complete
ce8d28b713f1: Pulling fs layer
97580d938033: Pulling fs layer
4d69ee6ae94b: Download complete
da5fa40e04f8: Pulling fs layer
ce8d28b713f1: Download complete
d7a499968f64: Pulling fs layer
97580d938033: Download complete
28e5932c7c69: Pulling fs layer
da5fa40e04f8: Download complete
d7a499968f64: Download complete
81389c423fc3: Pulling fs layer
28e5932c7c69: Download complete
fd0f9d83fc4c: Pulling fs layer
81389c423fc3: Download complete
a1ba3ff55715: Pulling fs layer
8a64be1e983f: Pulling fs layer
f7b330997686: Pulling fs layer
8a64be1e983f: Waiting
f7b330997686: Waiting
a1ba3ff55715: Verifying Checksum
a1ba3ff55715: Download complete
d6ff43dfb85c: Pull complete
4197ec645389: Pull complete
8a64be1e983f: Download complete
37cac33e41ff: Pull complete
f7b330997686: Verifying Checksum
f7b330997686: Download complete
4cb993fb248e: Pull complete
ca442870f91f: Pull complete
b1d1a2fb5f4a: Pull complete
fd0f9d83fc4c: Verifying Checksum
fd0f9d83fc4c: Download complete
0dea577b2801: Pull complete
cc10daaea4fd: Pull complete
5f878cb1723a: Pull complete
8968959fa983: Pull complete
5bdd9b9ed0e3: Pull complete
55661c5b388f: Pull complete
92d1dc6907bd: Pull complete
7100b414728b: Pull complete
a6a54ddc9818: Pull complete
a920ad627810: Pull complete
4f4fb700ef54: Pull complete
f7df7b6e19c0: Pull complete
cd713d66718c: Pull complete
6ed45ab2af86: Pull complete
40598b80a8fe: Pull complete
983f7969ff00: Pull complete
40ec09ee09bd: Pull complete
76a0afa38cd9: Pull complete
1d5a564d139a: Pull complete
82883b85a4f0: Pull complete
1d8458efd73b: Pull complete
2d80a9fac9ac: Pull complete
4d69ee6ae94b: Pull complete
ce8d28b713f1: Pull complete
97580d938033: Pull complete
da5fa40e04f8: Pull complete
d7a499968f64: Pull complete
28e5932c7c69: Pull complete
81389c423fc3: Pull complete
fd0f9d83fc4c: Pull complete
a1ba3ff55715: Pull complete
8a64be1e983f: Pull complete
f7b330997686: Pull complete
Digest: sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa
Status: Downloaded newer image for ocaml/opam@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa
2026-01-13 00:35.24 ---> using "2ecda48447fc68e8dcd256d2898af0a11126a077e05d747a0dcdff2845100de1" 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-01-13 00:35.24 ---> using "79eb1218297339daa5e94be48ad16ae73f417b872defa106efeff5b5f3323e6e" 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-01-13 00:35.24 ---> using "bf81485066c79fc9faf7a51b95869ba9d998fe2bf3de5ff7f59b253fc915122f" 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.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-01-13 00:35.24 ---> using "f7c0c02658daf7a6d6c7671a8028e0e553264100bd569724894645b7844f6d7f" 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-01-13 00:35.24 ---> using "9b3e592c65565b9b3dc8b88c605e54ddba818eb105df981d794040a64c2f9916" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-13 00:35.27 ---> using "f21b94edc635fd18e833401d1c2964a478a796c286b6d0d8471b87143e8eab45" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-13 00:35.27 ---> using "5d4cb0cac19fc738b78eccd2a80b3a2363dfcc70f15431320c37eca094333e7f" from cache

/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 [9670 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [94.5 kB]
- Fetched 9996 kB in 1s (7167 kB/s)
- Reading package lists...
- 
2026-01-13 00:35.27 ---> using "bfbdab6b47a21b3e7c6a215ac0d9f049043dce0e1176027ecbcabd9e59bdce6b" from cache

/home/opam: (run (shell "opam pin add -k version -yn menhirSdk.20260112 20260112"))
menhirSdk is now pinned to version 20260112
2026-01-13 00:35.27 ---> using "2b4b055705d982835f457a3ecbf2510c3666205a149fa35ade0645a129261ad6" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall menhirSdk.20260112;\
                        \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\" != 'menhirSdk.20260112' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
menhirSdk.20260112 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
  - install dune      3.20.2            [required by menhirSdk]
  - install menhirSdk 20260112 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.2  (cached)
-> retrieved menhirSdk.20260112  (cached)
-> installed dune.3.20.2
-> installed menhirSdk.20260112
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 00:35.27 ---> using "7afadd1b1035bb5976b3384c280a17200877de2586eb7bea7f0910f054bd63f9" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall graphql-cohttp.0.10.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'graphql-cohttp.0.10.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
graphql-cohttp.0.10.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 43 packages
  - install angstrom            0.16.1   [required by uri]
  - install astring             0.8.5    [required by graphql-cohttp]
  - install base                v0.16.4  [required by ppx_sexp_conv]
  - install base-bytes          base     [required by cohttp, ocplib-endian]
  - install base64              3.5.2    [required by graphql-cohttp]
  - install bigstringaf         0.10.0   [required by angstrom]
  - install cmdliner            2.1.0    [required by crunch]
  - install cohttp              5.3.1    [required by graphql-cohttp]
  - install cppo                1.8.0    [required by ocplib-endian]
  - install crunch              4.0.0    [required by graphql-cohttp]
  - install csexp               1.5.2    [required by dune-configurator]
  - install digestif            1.3.0    [required by graphql-cohttp]
  - install dune-configurator   3.20.2   [required by base]
  - install eqaf                0.10     [required by digestif]
  - install fmt                 0.11.0   [required by graphql_parser]
  - install graphql             0.14.0   [required by graphql-cohttp]
  - install graphql-cohttp      0.10.0
  - install graphql_parser      0.14.0   [required by graphql]
  - install jsonm               1.0.2    [required by cohttp]
  - install menhir              20260112 [required by graphql_parser]
  - install menhirCST           20260112 [required by menhir]
  - install menhirGLR           20260112 [required by menhir]
  - install menhirLib           20260112 [required by menhir]
  - install ocaml-compiler-libs v0.12.4  [required by ppxlib]
  - install ocaml-syntax-shims  1.0.0    [required by angstrom]
  - install ocamlbuild          0.16.1   [required by astring]
  - install ocamlfind           1.9.8    [required by astring]
  - install ocplib-endian       1.2      [required by graphql-cohttp]
  - install ppx_derivers        1.2.1    [required by ppxlib]
  - install ppx_sexp_conv       v0.16.0  [required by cohttp]
  - install ppxlib              0.35.0   [required by ppx_sexp_conv]
  - install ptime               1.2.0    [required by crunch]
  - install re                  1.14.0   [required by cohttp]
  - install rresult             0.7.0    [required by graphql]
  - install seq                 base     [required by graphql]
  - install sexplib0            v0.16.0  [required by cohttp]
  - install stdlib-shims        0.3.0    [required by ppxlib]
  - install stringext           1.6.0    [required by cohttp]
  - install topkg               1.1.1    [required by astring]
  - install uri                 4.4.0    [required by cohttp]
  - install uri-sexp            4.4.0    [required by cohttp]
  - install uutf                1.0.4    [required by jsonm]
  - install yojson              3.0.0    [required by graphql]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.16.4  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved cohttp.5.3.1  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved crunch.4.0.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed base64.3.5.2
-> installed csexp.1.5.2
-> retrieved digestif.1.3.0  (cached)
-> installed cppo.1.8.0
-> retrieved dune-configurator.3.20.2  (cached)
-> retrieved eqaf.0.10  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved graphql.0.14.0, graphql_parser.0.14.0  (cached)
-> retrieved graphql-cohttp.0.10.0  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved menhir.20260112, menhirCST.20260112, menhirGLR.20260112, menhirLib.20260112  (cached)
-> installed eqaf.0.10
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> installed menhirCST.20260112
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved re.1.14.0  (cached)
-> installed menhirLib.20260112
-> retrieved rresult.0.7.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> installed menhirGLR.20260112
-> installed digestif.1.3.0
-> retrieved topkg.1.1.1  (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed cmdliner.2.1.0
-> installed dune-configurator.3.20.2
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed yojson.3.0.0
-> installed ocplib-endian.1.2
-> installed ocamlbuild.0.16.1
-> installed uri.4.4.0
-> installed base.v0.16.4
-> installed topkg.1.1.1
-> installed menhir.20260112
-> installed rresult.0.7.0
-> installed ptime.1.2.0
-> installed fmt.0.11.0
-> installed uutf.1.0.4
-> installed astring.0.8.5
-> installed crunch.4.0.0
-> installed graphql_parser.0.14.0
-> installed jsonm.1.0.2
-> installed graphql.0.14.0
-> installed ppxlib.0.35.0
-> installed ppx_sexp_conv.v0.16.0
-> installed uri-sexp.4.4.0
-> installed cohttp.5.3.1
-> installed graphql-cohttp.0.10.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 00:39.22 ---> saved as "9d0bef6369a9f6d8e0956d08b942976d6dd8f96e07c8497bdf57e3b363e48e56"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved graphql-cohttp.0.10.0  (https://opam.ocaml.org/cache)
-> removed   graphql-cohttp.0.10.0
-> installed graphql-cohttp.0.10.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 00:39.33 ---> saved as "113c7a45392e58c9b151408c648217e2dfb7d3e548a837acb13d29bc55f1441a"

/home/opam: (run (shell  "opam reinstall --with-test --verbose graphql-cohttp.0.10.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'graphql-cohttp.0.10.0' && 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 graphql-cohttp 0.10.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [graphql-cohttp.0.10.0: extract]
-> retrieved graphql-cohttp.0.10.0  (cached)
Processing  2/4: [graphql-cohttp: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "graphql-cohttp" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/graphql-cohttp.0.10.0)
- File "dune-project", line 2, characters 14-17:
- 2 | (using menhir 2.0)
-                   ^^^
- Warning: Version 2.0 of the menhir extension is not supported until version
- 1.4 of the dune language.
- Supported versions of this extension in version 1.1 of the dune language:
- - 1.0
- (cd _build/default/graphql-cohttp/src && /home/opam/.opam/4.14/bin/ocaml-crunch -m plain assets -o assets.ml)
- Generating assets.ml
- Skipping generation of .mli
Processing  2/4: [graphql-cohttp: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "graphql-cohttp" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/graphql-cohttp.0.10.0)
- File "dune-project", line 2, characters 14-17:
- 2 | (using menhir 2.0)
-                   ^^^
- Warning: Version 2.0 of the menhir extension is not supported until version
- 1.4 of the dune language.
- Supported versions of this extension in version 1.1 of the dune language:
- - 1.0
-> compiled  graphql-cohttp.0.10.0
-> removed   graphql-cohttp.0.10.0
-> installed graphql-cohttp.0.10.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 00:39.43 ---> saved as "ace0703cdc810f7f884d8fdbe9bbd664a3ae5a1bbc09e9f988b93ea5998fa24f"
Job succeeded
2026-01-13 00:40.10: Job succeeded