(not at the head of any monitored branch or PR)
2026-03-23 10:31.39: New job: test ortac-wrapper.0.8.0, using opam 2.1
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29564/head (8afc60ff3217de99b86954a6affb39ff08ce4c60)
                              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/29564/head" && git reset --hard 8afc60ff
git fetch origin master
git merge --no-edit 63b7ba71be83567e54bb667df0f2bb374d74fb61
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.1 /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 ortac-wrapper.0.8.0 0.8.0
RUN opam reinstall ortac-wrapper.0.8.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" != 'ortac-wrapper.0.8.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 ortac-wrapper.0.8.0) || true
RUN opam reinstall --with-test --verbose ortac-wrapper.0.8.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" != 'ortac-wrapper.0.8.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-03-23 10:31.39: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-ortac-wrapper.0.8.0-8afc60ff3217de99b86954a6affb39ff08ce4c60"
2026-03-23 10:31.39: 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.1 /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 ortac-wrapper.0.8.0 0.8.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ortac-wrapper.0.8.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\" != 'ortac-wrapper.0.8.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 ortac-wrapper.0.8.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose ortac-wrapper.0.8.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\" != 'ortac-wrapper.0.8.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-03-23 10:31.39: Waiting for resource in pool OCluster
2026-03-23 10:38.13: Waiting for worker…
2026-03-23 10:40.22: Got resource from pool OCluster
Building on phoebe
All commits already cached
HEAD is now at 63b7ba71be Merge pull request #29573 from davesnx/release-parseff-0.2.0
Merge made by the 'ort' strategy.
 packages/ortac-core/ortac-core.0.8.0/opam          | 65 ++++++++++++++++++++++
 packages/ortac-dune/ortac-dune.0.8.0/opam          | 47 ++++++++++++++++
 .../ortac-qcheck-stm/ortac-qcheck-stm.0.8.0/opam   | 64 +++++++++++++++++++++
 .../ortac-runtime-qcheck-stm.0.8.0/opam            | 51 +++++++++++++++++
 packages/ortac-runtime/ortac-runtime.0.8.0/opam    | 52 +++++++++++++++++
 packages/ortac-wrapper/ortac-wrapper.0.8.0/opam    | 57 +++++++++++++++++++
 6 files changed, 336 insertions(+)
 create mode 100644 packages/ortac-core/ortac-core.0.8.0/opam
 create mode 100644 packages/ortac-dune/ortac-dune.0.8.0/opam
 create mode 100644 packages/ortac-qcheck-stm/ortac-qcheck-stm.0.8.0/opam
 create mode 100644 packages/ortac-runtime-qcheck-stm/ortac-runtime-qcheck-stm.0.8.0/opam
 create mode 100644 packages/ortac-runtime/ortac-runtime.0.8.0/opam
 create mode 100644 packages/ortac-wrapper/ortac-wrapper.0.8.0/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-23 10:40.48 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.1 /usr/bin/opam"))
2026-03-23 10:40.48 ---> using "71c54fe77889e70df52e1de8b3d6fc74acda96a883ad760ac40b946ae5c6b3a1" 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 development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.1, 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-23 10:40.48 ---> using "12ebc69d55239d841f08ce6e3756fc8c4b2daae5f6b7e6487e141f9e4f895a1a" 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.1.6 (263921263e1f745613e2882745114b7b08f3608b) 
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     
# upgrade-criteria     
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# 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-23 10:40.48 ---> using "5113fb9cc79095ce4dbda04010b525c008e7152a3e42e493b3faef0c95a0a76d" 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-03-23 10:40.48 ---> using "1ea43d32abe33c3251bc75ba7854896fc11c9445beed271216ccc024c0735f17" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-23 10:41.06 ---> saved as "c97f3366dbff066aed0310014fccfbf99f9834048e36662f23c767ef53cfdd3d"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-23 10:41.21 ---> saved as "64cd089bdf4096861f0a1d1290b5e7efd9cd0c2796aee96ae20e41722bc930f4"

/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 2s (5315 kB/s)
- Reading package lists...
- 
2026-03-23 10:41.24 ---> saved as "20b00ef84c3d524a80847845459c2d7593f81d64dacc807870d23012c66bcb67"

/home/opam: (run (shell "opam pin add -k version -yn ortac-wrapper.0.8.0 0.8.0"))
ortac-wrapper is now pinned to version 0.8.0
2026-03-23 10:41.25 ---> saved as "a0bbe7f217b69007d14d1a82e256b11d2f04f9ef733a437497a853122273fb23"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ortac-wrapper.0.8.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\" != 'ortac-wrapper.0.8.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ortac-wrapper.0.8.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
  - install   conf-gmp            5                 [required by zarith]
  - recompile ocaml-base-compiler 4.14.2*           [upstream or system changes]
  - install   conf-pkg-config     4                 [required by zarith]
  - recompile ocaml-config        2                 [uses ocaml-base-compiler]
  - recompile ocaml               4.14.2            [uses ocaml-base-compiler]
  - install   ocamlfind           1.9.8             [required by fmt, gospel]
  - install   ocamlbuild          0.16.1            [required by fmt]
  - install   dune                3.22.0            [required by ortac-wrapper]
  - install   cmdliner            2.1.0             [required by ortac-wrapper]
  - recompile opam-depext         1.2.3             [uses ocaml]
  - install   zarith              1.14              [required by ortac-runtime]
  - install   topkg               1.1.1             [required by fmt]
  - install   top-closure         3.22.0            [required by stdune]
  - install   stdlib-shims        0.3.0             [required by ppxlib]
  - install   sexplib0            v0.17.0           [required by ppxlib]
  - install   ppx_derivers        1.2.1             [required by ppx_deriving]
  - install   pp_loc              2.1.0             [required by gospel]
  - install   pp                  2.0.0             [required by dune-private-libs]
  - install   ordering            3.22.0            [required by dyn, stdune]
  - install   ocaml-compiler-libs v0.12.4           [required by gospel]
  - install   menhirSdk           20260209          [required by menhir]
  - install   menhirLib           20260209          [required by menhir]
  - install   menhirGLR           20260209          [required by menhir]
  - install   menhirCST           20260209          [required by menhir]
  - install   fs-io               3.22.0            [required by stdune]
  - install   dune-build-info     3.22.0            [required by gospel, ortac-core]
  - install   csexp               1.5.2             [required by dune-private-libs]
  - install   cppo                1.8.0             [required by ppx_deriving]
  - install   fmt                 0.11.0            [required by ortac-wrapper]
  - install   dyn                 3.22.0            [required by dune-private-libs]
  - install   ppxlib              0.38.0~5.5preview [required by ortac-wrapper]
  - install   menhir              20260209          [required by gospel]
  - install   ortac-runtime       0.8.0             [required by ortac-wrapper]
  - install   stdune              3.22.0            [required by dune-private-libs]
  - install   ppx_deriving        6.1.1             [required by gospel]
  - install   dune-private-libs   3.22.0            [required by dune-site]
  - install   gospel              0.3.1             [required by ortac-wrapper]
  - install   dune-site           3.22.0            [required by ortac-core]
  - install   ortac-core          0.8.0             [required by ortac-wrapper]
  - install   ortac-wrapper       0.8.0*
===== 36 to install | 4 to recompile =====

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

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
Let opam run your package manager to install the required system packages?
(answer 'n' for other options) [Y/n] y
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config"
- Selecting previously unselected package libgmpxx4ldbl: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 .../0-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 .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-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 libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- 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+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved cppo.1.8.0  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.22.0  (cached)
-> retrieved dune-build-info.3.22.0  (cached)
-> retrieved dune-private-libs.3.22.0  (cached)
-> retrieved dune-site.3.22.0  (cached)
-> retrieved dyn.3.22.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fs-io.3.22.0  (cached)
-> retrieved gospel.0.3.1  (cached)
-> retrieved menhir.20260209  (cached)
-> retrieved menhirCST.20260209  (cached)
-> retrieved menhirGLR.20260209  (cached)
-> retrieved menhirLib.20260209  (cached)
-> retrieved menhirSdk.20260209  (cached)
-> retrieved ocaml-base-compiler.4.14.2  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-config.2  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved opam-depext.1.2.3  (cached)
-> retrieved ordering.3.22.0  (cached)
-> retrieved ortac-core.0.8.0  (cached)
-> retrieved ortac-runtime.0.8.0  (cached)
-> retrieved ortac-wrapper.0.8.0  (cached)
-> retrieved pp.2.0.0  (cached)
-> retrieved pp_loc.2.1.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> retrieved ppxlib.0.38.0~5.5preview  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stdune.3.22.0  (cached)
-> retrieved top-closure.3.22.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved zarith.1.14  (cached)
-> removed   opam-depext.1.2.3
-> removed   ocaml.4.14.2
-> removed   ocaml-config.2
-> removed   ocaml-base-compiler.4.14.2
-> installed ocaml-base-compiler.4.14.2
-> installed ocaml-config.2
-> installed ocaml.4.14.2
-> installed opam-depext.1.2.3
-> installed ocamlfind.1.9.8
-> installed cmdliner.2.1.0
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed dune.3.22.0
-> installed cppo.1.8.0
-> installed csexp.1.5.2
-> installed dune-build-info.3.22.0
-> installed menhirCST.20260209
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed pp.2.0.0
-> installed pp_loc.2.1.0
-> installed ppx_derivers.1.2.1
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed ortac-runtime.0.8.0
-> installed fs-io.3.22.0
-> installed ordering.3.22.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed top-closure.3.22.0
-> installed dyn.3.22.0
-> installed stdune.3.22.0
-> installed dune-private-libs.3.22.0
-> installed menhir.20260209
-> installed dune-site.3.22.0
-> installed ppxlib.0.38.0~5.5preview
-> installed ppx_deriving.6.1.1
-> installed gospel.0.3.1
-> installed ortac-core.0.8.0
-> installed ortac-wrapper.0.8.0
Done.

<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# Run eval $(opam env) to update the current shell environment
2026-03-23 10:49.16 ---> saved as "386ea6fc239321eba9a124422798386dc2fdca5764d0eca851ca8be12aa17e87"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test ortac-wrapper.0.8.0) || true"))
The following actions will be performed:
  - install   astring            0.8.5  [required by alcotest]
  - install   uutf               1.0.4  [required by alcotest]
  - install   ocaml-syntax-shims 1.0.0  [required by alcotest]
  - install   re                 1.14.0 [required by alcotest]
  - install   alcotest           1.9.1  [required by ortac-wrapper]
  - recompile ortac-wrapper      0.8.0*
===== 5 to install | 1 to recompile =====

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed uutf.1.0.4
-> installed re.1.14.0
-> removed   ortac-wrapper.0.8.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed ortac-wrapper.0.8.0
Done.
# Run eval $(opam env) to update the current shell environment
2026-03-23 10:50.01 ---> saved as "a27d9d485c8f3815503a9a1c8493bb96f44a12b41a00aceb13cd7898f3d50065"

/home/opam: (run (shell  "opam reinstall --with-test --verbose ortac-wrapper.0.8.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\" != 'ortac-wrapper.0.8.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 ortac-wrapper 0.8.0*

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [ortac-wrapper: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ortac-wrapper" "-j" "71" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ortac-wrapper.0.8.0)
- (cd _build/default/plugins/wrapper/test/generated && ./test.exe)
- Testing `Wrapped lib'.
- This run has ID `JK63OBYI'.
- 
-   [OK]          lib                      0   create is correct.
-   [OK]          lib                      1   create fails with negativ size.
-   [OK]          lib                      2   add is correct.
-   [OK]          lib                      3   add fails with negativ arg.
-   [OK]          lib                      4   mem fails with negativ arg.
-   [OK]          behaviour tests          0   invariant violated hit.
-   [OK]          behaviour tests          1   good incrementation.
-   [OK]          behaviour tests          2   precondition violated hit.
-   [OK]          behaviour tests          3   Int_overflow raised.
-   [OK]          behaviour tests          4   checks no hold, Invalid_argument...
-   [OK]          behaviour tests          5   postcondition hit.
-   [OK]          model tests              0   add model.
-   [OK]          pascal tests             0   three nexts.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/ortac-wrapper.0.8.0/_build/default/plugins/wrapper/test/generated/_build/_tests/Wrapped lib'.
- Test Successful in 0.003s. 13 tests run.
- (cd _build/default/plugins/wrapper/test/suite && ./test.exe)
- Testing `Ortac'.
- This run has ID `DFRE15UB'.
- 
-   [OK]          Arrays               0   get out of range.
-   [OK]          Arrays               1   get wrong value.
-   [OK]          Arrays               2   create wrong value.
-   [OK]          Arrays               3   correct implementations.
-   [OK]          Arrays               4   map correct.
-   [OK]          Arrays               5   map wrong length.
-   [OK]          Arrays               6   map wrong function.
-   [OK]          Arrays               7   create with wrong arguments.
-   [OK]          Arrays               8   sort is correct.
-   [OK]          Arrays               9   copy sort is correct.
-   [OK]          Arrays              10   bad sort is wrong.
-   [OK]          Arrays              11   constant sort is wrong.
-   [OK]          Arithmetics          0   forall.
-   [OK]          Arithmetics          1   double forall.
-   [OK]          Arithmetics          2   power.
-   [OK]          Exceptions           0   bad_raise_notfound.
-   [OK]          Exceptions           1   undeclared_raise_notfound.
-   [OK]          Exceptions           2   raise_notfound.
-   [OK]          Exceptions           3   allowed exceptions.
-   [OK]          Exceptions           4   raise_invalidarg.
-   [OK]          Exceptions           5   bad_raise_notfound.
-   [OK]          Exceptions           6   valid_checks.
-   [OK]          Exceptions           7   bad_checks.
-   [OK]          Terms                0   boolean operators.
-   [OK]          Terms                1   scopes.
-   [OK]          Terms                2   logic.
-   [OK]          Terms                3   patterns.
-   [OK]          Terms                4   peano.
-   [OK]          Terms                5   trees.
-   [OK]          Terms                6   ref_access.
-   [OK]          Translation          0   value purity.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/ortac-wrapper.0.8.0/_build/default/plugins/wrapper/test/suite/_build/_tests/Ortac'.
- Test Successful in 0.078s. 31 tests run.
Processing  2/4: [ortac-wrapper: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "ortac-wrapper" "--create-install-files" "ortac-wrapper" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ortac-wrapper.0.8.0)
-> compiled  ortac-wrapper.0.8.0
-> removed   ortac-wrapper.0.8.0
-> installed ortac-wrapper.0.8.0
Done.
# Run eval $(opam env) to update the current shell environment
2026-03-23 10:50.47 ---> saved as "fa3c1f08be3261b0347870abef0ce9e7c717d12b00fb37f3a2644fc4012e1f46"
Job succeeded
2026-03-23 10:51.08: Job succeeded