Build:
  1. 0
2026-03-11 08:56.32: New job: test oui.0.1.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29523/head (8ff50ade8e0c95108b5459c8f9eac8841ee0f00f)
                              on opensuse-tumbleweed-ocaml-5.4/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/29523/head" && git reset --hard 8ff50ade
git fetch origin master
git merge --no-edit 3c0d72031e829cf7ddad3a74f39a8b01fe2bf302
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-tumbleweed-ocaml-5.4@sha256:e28c5c0574adc1f815086c4cc9626c9e450649ba2e4563dc670b563154f4634f
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 oui.0.1.0 0.1.0
RUN opam reinstall oui.0.1.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 "\"opensuse-tumbleweed\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'oui.0.1.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 oui.0.1.0) || true
RUN opam reinstall --with-test --verbose oui.0.1.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 "\"opensuse-tumbleweed\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'oui.0.1.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-11 08:56.32: Using cache hint "ocaml/opam:opensuse-tumbleweed-ocaml-5.4@sha256:e28c5c0574adc1f815086c4cc9626c9e450649ba2e4563dc670b563154f4634f-oui.0.1.0-8ff50ade8e0c95108b5459c8f9eac8841ee0f00f"
2026-03-11 08:56.32: Using OBuilder spec:
((from ocaml/opam:opensuse-tumbleweed-ocaml-5.4@sha256:e28c5c0574adc1f815086c4cc9626c9e450649ba2e4563dc670b563154f4634f)
 (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 oui.0.1.0 0.1.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall oui.0.1.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 \"\\\"opensuse-tumbleweed\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'oui.0.1.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 oui.0.1.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose oui.0.1.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 \"\\\"opensuse-tumbleweed\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'oui.0.1.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-11 08:56.32: Waiting for resource in pool OCluster
2026-03-11 12:07.09: Waiting for worker…
2026-03-11 12:09.19: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 3c0d72031e Merge pull request #29534 from filipeom/opam-publish-smtml.0.23.0
Merge made by the 'ort' strategy.
 packages/oui/oui.0.1.0/opam | 48 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)
 create mode 100644 packages/oui/oui.0.1.0/opam

(from ocaml/opam:opensuse-tumbleweed-ocaml-5.4@sha256:e28c5c0574adc1f815086c4cc9626c9e450649ba2e4563dc670b563154f4634f)
2026-03-11 12:17.06 ---> saved as "a65e1242d581f2a95575dc8084d305a14460d2ac648561415d6302dc3b8444f4"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-11 12:17.06 ---> saved as "2dab3b0270af9e1652919f429088e419864a57e76b2719c0b300b77e5b6dcc97"

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

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

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

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-11 12:17.27 ---> saved as "11a13bce97d02aeddabf59605ee461f25557300126dd6a804c84b51f22ae1b4b"

/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=opensuse-tumbleweed os-version=20260305
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-03-11 12:17.28 ---> saved as "5a1951a04547270ff8f66425e3899b713f4f5a219d19019a7a66ef0b091ea177"

/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-11 12:17.36 ---> saved as "112fbb33192754a86b690fe3a108670a43cc3ee3131704d042e455b2727fce40"

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-11 12:17.47 ---> saved as "afaedfec7e1db914af607884d0281f82d71da61b9284fa7cb648ae81f3e73ecf"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-11 12:18.04 ---> saved as "e62ab523a05dd03f6257aa6e3b08f32786e993fb0280e539b604048709e79a46"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Repository 'openSUSE-Tumbleweed-Update' is up to date.
- Retrieving repository 'openSUSE-Tumbleweed-Non-Oss' metadata [...
- Looking for gpg keys in repository openSUSE-Tumbleweed-Non-Oss.
-   gpgkey=http://download.opensuse.org/tumbleweed/repo/non-oss/repodata/repomd.xml.key
- .
- .....done]
- Building repository 'openSUSE-Tumbleweed-Non-Oss' cache [....done]
- Retrieving repository 'openSUSE-Tumbleweed-Oss' metadata [...
- Looking for gpg keys in repository openSUSE-Tumbleweed-Oss.
-   gpgkey=http://download.opensuse.org/tumbleweed/repo/oss/repodata/repomd.xml.key
- .....
- ........
- ..........
- .......
- .........
- ..done]
- Building repository 'openSUSE-Tumbleweed-Oss' cache [..
- ..done]
- All repositories have been refreshed.
2026-03-11 12:18.17 ---> saved as "ddec16e80f3851e4e97b30c7411c6d167b769c5d492036ac4116d872292596de"

/home/opam: (run (shell "opam pin add -k version -yn oui.0.1.0 0.1.0"))
oui is now pinned to version 0.1.0
2026-03-11 12:18.17 ---> saved as "61ffc83a2a17a400ec5a3c527395a469479a0220698eab15d1e4600ac1cb1ca3"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall oui.0.1.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 \"\\\"opensuse-tumbleweed\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'oui.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
oui.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 46 packages
  - install 0install-solver     2.18           [required by opam-0install-cudf]
  - install base64              3.5.2          [required by opam-client]
  - install cmdliner            2.1.0          [required by oui]
  - install conf-c++            1.0            [required by mccs]
  - install cppo                1.8.0          [required by ppx_deriving]
  - install crunch              4.0.0          [required by oui]
  - install cudf                0.10           [required by opam-solver]
  - install dose3               7.0.0          [required by opam-solver]
  - install dune                3.21.1         [required by oui]
  - install extlib              1.8.0          [required by cudf, dose3]
  - install fmt                 0.11.0         [required by oui]
  - install jsonm               1.0.2          [required by opam-core]
  - install mccs                1.1+19         [required by opam-solver]
  - install menhir              20260209       [required by opam-file-format]
  - install menhirCST           20260209       [required by menhir]
  - install menhirGLR           20260209       [required by menhir]
  - install menhirLib           20260209       [required by menhir]
  - install menhirSdk           20260209       [required by menhir]
  - install ocaml-compiler-libs v0.17.0        [required by ppxlib]
  - install ocamlbuild          0.16.1         [required by fmt]
  - install ocamlfind           1.9.8          [required by fmt]
  - install ocamlgraph          2.2.0          [required by dose3]
  - install opam-0install-cudf  0.5.0          [required by opam-solver]
  - install opam-client         2.5.0          [required by oui]
  - install opam-core           2.5.0          [required by oui]
  - install opam-file-format    2.2.0          [required by opam-format]
  - install opam-format         2.5.0          [required by oui]
  - install opam-repository     2.5.0          [required by opam-client]
  - install opam-solver         2.5.0          [required by opam-client]
  - install opam-state          2.5.0          [required by opam-client]
  - install oui                 0.1.0 (pinned)
  - install patch               3.1.0          [required by opam-repository, opam-state]
  - install ppx_derivers        1.2.1          [required by ppx_deriving]
  - install ppx_deriving        6.1.1          [required by ppx_deriving_yojson]
  - install ppx_deriving_yojson 3.10.0         [required by oui]
  - install ppxlib              0.37.0         [required by ppx_deriving_yojson]
  - install ptime               1.2.0          [required by crunch]
  - install re                  1.14.0         [required by opam-client]
  - install sexplib0            v0.17.0        [required by ppxlib]
  - install sha                 1.15.4         [required by opam-core]
  - install spdx_licenses       1.4.0          [required by opam-state]
  - install stdlib-shims        0.3.0          [required by dose3, ppxlib]
  - install swhid_core          0.1            [required by opam-core]
  - install topkg               1.1.1          [required by fmt]
  - install uutf                1.0.4          [required by opam-core]
  - install yojson              3.0.0          [required by oui]

The following system packages will first need to be installed:
    makeself

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

opam believes some required external dependencies are missing. opam can:
> 1. Run zypper to install them (may need root/sudo access)
  2. Display the recommended zypper 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 "zypper" "--non-interactive" "install" "makeself"
- Loading repository data...
- Reading installed packages...
- Resolving package dependencies...
- 
- The following NEW package is going to be installed:
-   makeself
- 
- 1 new package to install.
- 
- Package download size:    36.5 KiB
- 
- Package install size change:
-               |      79.1 KiB  required by packages that will be installed
-     79.1 KiB  |  -      0 B    released by packages that will be removed
- 
- Backend:  classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Preloading Packages [..
- Preloading: makeself-2.7.1-1.2.noarch.rpm [done]
- .done]
- Retrieving: makeself-2.7.1-1.2.noarch (openSUSE-Tumbleweed-Oss) (1/1),  36.5 KiB    
- 
- Checking for file conflicts: [..done]
- (1/1) Installing: makeself-2.7.1-1.2.noarch [.
- .done]
- Running post-transaction scripts [...done]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved 0install-solver.2.18  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved crunch.4.0.0  (cached)
-> retrieved cudf.0.10  (cached)
-> installed conf-c++.1.0
-> retrieved dose3.7.0.0  (cached)
-> retrieved dune.3.21.1  (cached)
-> retrieved extlib.1.8.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved mccs.1.1+19  (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocamlgraph.2.2.0  (cached)
-> installed cmdliner.2.1.0
-> retrieved opam-0install-cudf.0.5.0  (cached)
-> retrieved opam-client.2.5.0, opam-core.2.5.0, opam-format.2.5.0, opam-repository.2.5.0, opam-solver.2.5.0, opam-state.2.5.0  (cached)
-> retrieved opam-file-format.2.2.0  (cached)
-> retrieved oui.0.1.0  (cached)
-> retrieved patch.3.1.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> retrieved ppx_deriving_yojson.3.10.0  (cached)
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved sha.1.15.4  (cached)
-> retrieved spdx_licenses.1.4.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved swhid_core.0.1  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed jsonm.1.0.2
-> installed dune.3.21.1
-> installed base64.3.5.2
-> installed crunch.4.0.0
-> installed menhirCST.20260209
-> installed 0install-solver.2.18
-> installed ppx_derivers.1.2.1
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed patch.3.1.0
-> installed stdlib-shims.0.3.0
-> installed menhirSdk.20260209
-> installed cppo.1.8.0
-> installed spdx_licenses.1.4.0
-> installed swhid_core.0.1
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed re.1.14.0
-> installed extlib.1.8.0
-> installed yojson.3.0.0
-> installed sha.1.15.4
-> installed ocamlgraph.2.2.0
-> installed cudf.0.10
-> installed opam-0install-cudf.0.5.0
-> installed dose3.7.0.0
-> installed mccs.1.1+19
-> installed opam-core.2.5.0
-> installed menhir.20260209
-> installed opam-file-format.2.2.0
-> installed opam-format.2.5.0
-> installed ppxlib.0.37.0
-> installed ppx_deriving.6.1.1
-> installed opam-repository.2.5.0
-> installed opam-solver.2.5.0
-> installed ppx_deriving_yojson.3.10.0
-> installed opam-state.2.5.0
-> installed opam-client.2.5.0
-> installed oui.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-11 12:19.17 ---> saved as "d12df0932264939a329b094799efe532b7cb5613eb2466a3881479c223f0ee76"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test oui.0.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile oui                     0.1.0 (pinned)
=== install 21 packages
  - install   base                    v0.17.3        [required by ppx_expect]
  - install   csexp                   1.5.2          [required by dune-configurator]
  - install   dune-configurator       3.21.1         [required by base]
  - install   jane-street-headers     v0.17.0        [required by time_now]
  - install   jst-config              v0.17.0        [required by time_now]
  - install   ocaml_intrinsics_kernel v0.17.1        [required by base]
  - install   ppx_assert              v0.17.0        [required by jst-config]
  - install   ppx_base                v0.17.0        [required by time_now]
  - install   ppx_cold                v0.17.0        [required by ppx_base]
  - install   ppx_compare             v0.17.0        [required by ppx_base]
  - install   ppx_enumerate           v0.17.0        [required by ppx_base]
  - install   ppx_expect              v0.17.3        [required by oui]
  - install   ppx_globalize           v0.17.2        [required by ppx_base]
  - install   ppx_hash                v0.17.0        [required by ppx_base]
  - install   ppx_here                v0.17.0        [required by ppx_expect]
  - install   ppx_inline_test         v0.17.1        [required by ppx_expect]
  - install   ppx_optcomp             v0.17.1        [required by time_now]
  - install   ppx_sexp_conv           v0.17.1        [required by ppx_base]
  - install   ppxlib_jane             v0.17.4        [required by ppx_globalize, ppx_enumerate, ppx_hash]
  - install   stdio                   v0.17.0        [required by ppx_expect]
  - install   time_now                v0.17.0        [required by ppx_inline_test]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.3  (https://opam.ocaml.org/cache)
-> retrieved csexp.1.5.2  (https://opam.ocaml.org/cache)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.21.1  (https://opam.ocaml.org/cache)
-> retrieved jane-street-headers.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved jst-config.v0.17.0  (https://opam.ocaml.org/cache)
-> installed jane-street-headers.v0.17.0
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_assert.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_base.v0.17.0  (https://opam.ocaml.org/cache)
-> installed ocaml_intrinsics_kernel.v0.17.1
-> retrieved ppx_cold.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_compare.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_enumerate.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_expect.v0.17.3  (https://opam.ocaml.org/cache)
-> retrieved ppx_globalize.v0.17.2  (https://opam.ocaml.org/cache)
-> retrieved ppx_hash.v0.17.0  (https://opam.ocaml.org/cache)
-> installed dune-configurator.3.21.1
-> retrieved ppx_here.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_inline_test.v0.17.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_optcomp.v0.17.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_sexp_conv.v0.17.1  (https://opam.ocaml.org/cache)
-> retrieved ppxlib_jane.v0.17.4  (https://opam.ocaml.org/cache)
-> retrieved stdio.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved time_now.v0.17.0  (https://opam.ocaml.org/cache)
-> removed   oui.0.1.0
-> installed ppxlib_jane.v0.17.4
-> installed base.v0.17.3
-> installed stdio.v0.17.0
-> installed ppx_optcomp.v0.17.1
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_enumerate.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_compare.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_hash.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_base.v0.17.0
-> installed jst-config.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed ppx_expect.v0.17.3
-> installed oui.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-11 12:19.50 ---> saved as "ccd10100ac6f06f8c3b54d06b67f6a7d788bf7da74df61a8f71904d2efc8b5ca"

/home/opam: (run (shell  "opam reinstall --with-test --verbose oui.0.1.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 \"\\\"opensuse-tumbleweed\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'oui.0.1.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 oui 0.1.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [oui: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-j" "255" "-p" "oui" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/oui.0.1.0)
- (cd _build/default/src/oui_lib && /home/opam/.opam/5.4/bin/ocaml -I +unix unix.cma version.mlt 0.1.0) > _build/default/src/oui_lib/version.ml
- fatal: not a git repository (or any parent up to mount point /)
- Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
- fatal: not a git repository (or any parent up to mount point /)
- Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
-> compiled  oui.0.1.0
-> removed   oui.0.1.0
-> installed oui.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-11 12:19.56 ---> saved as "53d5793c1e86eedd81f746e4e960755adbe8ce4a24a6a41bf064e7d7537d4911"
Job succeeded
2026-03-11 12:20.03: Job succeeded