Build:
  1. 0
2026-02-08 10:14.55: New job: test bogue-tutorials.0.2.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29354/head (4a448d03e35627b9c7ed73c5da2cd66a045bfc66)
                              on alpine-3.22-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/29354/head" && git reset --hard 4a448d03
git fetch origin master
git merge --no-edit 340ee6fd1ff10d0fce25e21ba1caca9ed1cfec68
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216
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 bogue-tutorials.0.2.0 0.2.0
RUN opam reinstall bogue-tutorials.0.2.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 "\"alpine-3.22\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'bogue-tutorials.0.2.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 bogue-tutorials.0.2.0) || true
RUN opam reinstall --with-test --verbose bogue-tutorials.0.2.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 "\"alpine-3.22\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'bogue-tutorials.0.2.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-02-08 10:14.55: Using cache hint "ocaml/opam:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216-bogue-tutorials.0.2.0-4a448d03e35627b9c7ed73c5da2cd66a045bfc66"
2026-02-08 10:14.55: Using OBuilder spec:
((from ocaml/opam:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216)
 (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 bogue-tutorials.0.2.0 0.2.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall bogue-tutorials.0.2.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 \"\\\"alpine-3.22\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'bogue-tutorials.0.2.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 bogue-tutorials.0.2.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose bogue-tutorials.0.2.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 \"\\\"alpine-3.22\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'bogue-tutorials.0.2.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-02-08 10:14.55: Waiting for resource in pool OCluster
2026-02-08 10:14.56: Waiting for worker…
2026-02-08 10:14.57: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
HEAD is now at 340ee6fd1f Merge pull request #29341 from Halbaroth/release-alt-ergo-free-2.4.3
Updating 340ee6fd1f..4a448d03e3
Fast-forward
 packages/bogue-tutorials/bogue-tutorials.0.2.0/opam | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(from ocaml/opam:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216)
2026-02-08 10:15.38 ---> using "d1cef22083ba59d6db4e2f107091c68dd70ebdcc64c3894ad7db7be62ad17f4a" 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-02-08 10:15.38 ---> using "d2cb172e755b5e8a0ee24e133445a3ea22478f4e48886729c76cbcde08270342" 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.

[NOTE] The 'jobs' option was reset, its value was 255 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=255 --global
Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-02-08 10:15.38 ---> using "4b7ed401555204d1f183307388cb649d473c8a52ff80ce2f5a4e8504a88269c7" 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=alpine os-version=3.22.2
# 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-02-08 10:15.38 ---> using "9b1883465557a61ecd00e6282d59de098d32d80cc71a923a8ed0faa5af1a02e7" 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-02-08 10:15.38 ---> using "be1c70f0be6391803fdc2f3adb75bd0fc31dd6c9a80328fabfc5d1e074dcb1ff" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-02-08 10:15.46 ---> saved as "8cd699dd68f41abbb272248db4d019f35e798ee1f0a1e549a9c12537f1769006"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-08 10:16.07 ---> saved as "090cd8cdc629b8ac234211274ba4f27d5314f4436112fc4ca944f8e331066555"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apk" "update"
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.22/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.22/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz
- v3.22.3-12-g4a7c26099f1 [https://dl-cdn.alpinelinux.org/alpine/v3.22/main]
- v3.22.3-12-g4a7c26099f1 [https://dl-cdn.alpinelinux.org/alpine/v3.22/community]
- v20260127-698-g9667f1121e2 [https://dl-cdn.alpinelinux.org/alpine/edge/main]
- v20260127-698-g9667f1121e2 [https://dl-cdn.alpinelinux.org/alpine/edge/community]
- v20260127-693-g21ccd76b254 [https://dl-cdn.alpinelinux.org/alpine/edge/testing]
- OK: 60869 distinct packages available
2026-02-08 10:16.09 ---> saved as "88c0165920bd7455e8b2c4b524afbbc6f7d5d7c54c6f8984142dc526dcdb61c1"

/home/opam: (run (shell "opam pin add -k version -yn bogue-tutorials.0.2.0 0.2.0"))
bogue-tutorials is now pinned to version 0.2.0
2026-02-08 10:16.09 ---> saved as "8f842e43ce4e0aff6a16e01e30d3a4ef5ace3a8186216977115d6e948c1edc74"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall bogue-tutorials.0.2.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 \"\\\"alpine-3.22\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'bogue-tutorials.0.2.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
bogue-tutorials.0.2.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 22 packages
  - install bogue             20250815       [required by bogue-tutorials]
  - install bogue-tutorials   0.2.0 (pinned)
  - install conf-libffi       2.0.0          [required by ctypes-foreign]
  - install conf-perl         2              [required by bogue-tutorials]
  - install conf-pkg-config   4              [required by conf-sdl2-image, conf-sdl2, ctypes-foreign, conf-sdl2-ttf]
  - install conf-sdl2         1              [required by tsdl]
  - install conf-sdl2-image   1              [required by tsdl-image]
  - install conf-sdl2-ttf     1              [required by tsdl-ttf]
  - install csexp             1.5.2          [required by dune-configurator]
  - install ctypes            0.24.0         [required by tsdl-image, tsdl, tsdl-ttf]
  - install ctypes-foreign    0.24.0         [required by tsdl-image, tsdl, tsdl-ttf]
  - install dune              3.21.0         [required by bogue-tutorials]
  - install dune-configurator 3.21.0         [required by tsdl-image, tsdl-ttf]
  - install integers          0.7.0          [required by ctypes]
  - install ocamlbuild        0.16.1         [required by tsdl]
  - install ocamlfind         1.9.8          [required by tsdl]
  - install stdlib-shims      0.3.0          [required by integers]
  - install topkg             1.1.1          [required by tsdl]
  - install tsdl              1.2.0          [required by bogue]
  - install tsdl-image        0.6            [required by bogue]
  - install tsdl-ttf          0.6            [required by bogue]
  - install xdg               3.21.0         [required by bogue]

The following system packages will first need to be installed:
    libffi-dev perl sdl2-dev sdl2_image-dev sdl2_ttf-dev

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

opam believes some required external dependencies are missing. opam can:
> 1. Run apk to install them (may need root/sudo access)
  2. Display the recommended apk 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 "apk" "add" "libffi-dev" "perl" "sdl2-dev" "sdl2_image-dev" "sdl2_ttf-dev"
- (1/115) Upgrading libexpat (2.7.3-r0 -> 2.7.4-r0)
- (2/115) Installing linux-headers (6.14.2-r0)
- (3/115) Installing libffi-dev (3.4.8-r0)
- (4/115) Installing perl (5.40.3-r0)
- (5/115) Installing perl-error (0.17030-r0)
- (6/115) Installing perl-git (2.49.1-r0)
- (7/115) Installing git-perl (2.49.1-r0)
- (8/115) Installing sdl2 (2.32.8-r0)
- (9/115) Installing hwdata-pci (0.395-r0)
- (10/115) Installing libpciaccess (0.18.1-r0)
- (11/115) Installing libdrm (2.4.124-r0)
- (12/115) Installing libpciaccess-dev (0.18.1-r0)
- (13/115) Installing libdrm-dev (2.4.124-r0)
- (14/115) Installing libxext (1.3.6-r2)
- (15/115) Installing libxext-dev (1.3.6-r2)
- (16/115) Installing libxdamage (1.1.6-r5)
- (17/115) Installing libxfixes (6.0.1-r4)
- (18/115) Installing libxfixes-dev (6.0.1-r4)
- (19/115) Installing libxdamage-dev (1.1.6-r5)
- (20/115) Installing libxshmfence (1.3.3-r0)
- (21/115) Installing libxshmfence-dev (1.3.3-r0)
- (22/115) Installing libxml2 (2.13.9-r0)
- (23/115) Installing llvm20-libs (20.1.8-r0)
- (24/115) Installing spirv-tools (1.4.313.0-r0)
- (25/115) Installing libelf (0.193-r0)
- (26/115) Installing wayland-libs-server (1.23.1-r3)
- (27/115) Installing mesa (25.1.9-r0)
- (28/115) Installing mesa-gbm (25.1.9-r0)
- (29/115) Installing wayland-libs-client (1.23.1-r3)
- (30/115) Installing mesa-egl (25.1.9-r0)
- (31/115) Installing libxxf86vm (1.1.7-r0)
- (32/115) Installing mesa-gl (25.1.9-r0)
- (33/115) Installing mesa-gles (25.1.9-r0)
- (34/115) Installing clang20-headers (20.1.8-r0)
- (35/115) Installing libclc (20.1.8-r0)
- (36/115) Installing spirv-llvm-translator-libs (20.1.2-r0)
- (37/115) Installing clang20-libs (20.1.8-r0)
- (38/115) Installing mesa-rusticl (25.1.9-r0)
- (39/115) Installing mesa-xatracker (25.1.9-r0)
- (40/115) Installing libxxf86vm-dev (1.1.7-r0)
- (41/115) Installing mesa-dev (25.1.9-r0)
- (42/115) Installing sdl2-dev (2.32.8-r0)
- (43/115) Installing sdl2_image (2.8.6-r0)
- (44/115) Installing sdl2_image-dev (2.8.6-r0)
- (45/115) Installing libpng (1.6.54-r0)
- (46/115) Installing freetype (2.13.3-r0)
- (47/115) Installing bzip2-dev (1.0.8-r6)
- (48/115) Installing brotli (1.1.0-r2)
- (49/115) Installing brotli-dev (1.1.0-r2)
- (50/115) Installing zlib-dev (1.3.1-r2)
- (51/115) Installing libpng-dev (1.6.54-r0)
- (52/115) Installing freetype-dev (2.13.3-r0)
- (53/115) Installing libxrender (0.9.12-r0)
- (54/115) Installing fontconfig (2.15.0-r3)
- (55/115) Installing pixman (0.46.4-r0)
- (56/115) Installing cairo (1.18.4-r0)
- (57/115) Installing libintl (0.24.1-r0)
- (58/115) Installing libeconf (0.6.3-r0)
- (59/115) Installing libblkid (2.41-r9)
- (60/115) Installing libmount (2.41-r9)
- (61/115) Installing glib (2.84.4-r0)
- (62/115) Installing graphite2 (1.3.14-r6)
- (63/115) Installing harfbuzz (11.2.1-r0)
- (64/115) Installing harfbuzz-cairo (11.2.1-r0)
- (65/115) Installing harfbuzz-gobject (11.2.1-r0)
- (66/115) Installing icu-data-en (76.1-r1)
- Executing icu-data-en-76.1-r1.post-install
- *
- * If you need ICU with non-English locales and legacy charset support, install
- * package icu-data-full.
- *
- (67/115) Installing icu-libs (76.1-r1)
- (68/115) Installing harfbuzz-icu (11.2.1-r0)
- (69/115) Installing harfbuzz-subset (11.2.1-r0)
- (70/115) Installing cairo-tools (1.18.4-r0)
- (71/115) Installing expat (2.7.4-r0)
- (72/115) Installing expat-dev (2.7.4-r0)
- (73/115) Installing fontconfig-dev (2.15.0-r3)
- (74/115) Installing libxrender-dev (0.9.12-r0)
- (75/115) Installing pixman-dev (0.46.4-r0)
- (76/115) Installing util-macros (1.20.1-r0)
- (77/115) Installing xcb-util (0.4.1-r3)
- (78/115) Installing xcb-util-dev (0.4.1-r3)
- (79/115) Installing cairo-gobject (1.18.4-r0)
- (80/115) Installing libxml2-utils (2.13.9-r0)
- (81/115) Installing docbook-xml (4.5-r10)
- Executing docbook-xml-4.5-r10.post-install
- (82/115) Installing libxslt (1.1.43-r3)
- (83/115) Installing docbook-xsl-ns (1.79.2-r11)
- Executing docbook-xsl-ns-1.79.2-r11.post-install
- (84/115) Installing docbook-xsl-nons (1.79.2-r11)
- Executing docbook-xsl-nons-1.79.2-r11.post-install
- (85/115) Installing docbook-xsl (1.79.2-r11)
- (86/115) Installing gettext-asprintf (0.24.1-r0)
- (87/115) Installing gettext-libs (0.24.1-r0)
- (88/115) Installing gettext-envsubst (0.24.1-r0)
- (89/115) Installing gettext (0.24.1-r0)
- (90/115) Installing gettext-dev (0.24.1-r0)
- (91/115) Installing py3-parsing (3.2.5-r0)
- (92/115) Installing py3-parsing-pyc (3.2.5-r0)
- (93/115) Installing py3-packaging (25.0-r0)
- (94/115) Installing py3-packaging-pyc (25.0-r0)
- (95/115) Installing bsd-compat-headers (0.7.2-r6)
- (96/115) Installing libedit (20250104.3.1-r1)
- (97/115) Installing libedit-dev (20250104.3.1-r1)
- (98/115) Installing libpcre2-16 (10.46-r0)
- (99/115) Installing libpcre2-32 (10.46-r0)
- (100/115) Installing pcre2-dev (10.46-r0)
- (101/115) Installing libuuid (2.41-r9)
- (102/115) Installing libfdisk (2.41-r9)
- (103/115) Installing liblastlog2 (2.41-r9)
- (104/115) Installing libsmartcols (2.41-r9)
- (105/115) Installing sqlite (3.49.2-r1)
- (106/115) Installing sqlite-dev (3.49.2-r1)
- (107/115) Installing util-linux-dev (2.41-r9)
- (108/115) Installing glib-dev (2.84.4-r0)
- (109/115) Installing cairo-dev (1.18.4-r0)
- (110/115) Installing graphite2-dev (1.3.14-r6)
- (111/115) Installing icu (76.1-r1)
- (112/115) Installing icu-dev (76.1-r1)
- (113/115) Installing harfbuzz-dev (11.2.1-r0)
- (114/115) Installing sdl2_ttf (2.24.0-r0)
- (115/115) Installing sdl2_ttf-dev (2.24.0-r0)
- Executing busybox-1.37.0-r20.trigger
- Executing glib-2.84.4-r0.trigger
- No schema files found: doing nothing.
- OK: 1017 MiB in 216 packages

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bogue.20250815  (https://opam.ocaml.org/cache)
-> retrieved bogue-tutorials.0.2.0  (https://opam.ocaml.org/cache)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-pkg-config.4
-> installed conf-perl.2
-> retrieved ctypes.0.24.0, ctypes-foreign.0.24.0  (cached)
-> installed conf-libffi.2.0.0
-> installed conf-sdl2.1
-> installed conf-sdl2-image.1
-> installed conf-sdl2-ttf.1
-> retrieved dune.3.21.0, dune-configurator.3.21.0, xdg.3.21.0  (cached)
-> retrieved integers.0.7.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved tsdl.1.2.0  (cached)
-> retrieved tsdl-image.0.6  (cached)
-> retrieved tsdl-ttf.0.6  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed dune.3.21.0
-> installed csexp.1.5.2
-> installed stdlib-shims.0.3.0
-> installed integers.0.7.0
-> installed xdg.3.21.0
-> installed dune-configurator.3.21.0
-> installed ctypes.0.24.0
-> installed ctypes-foreign.0.24.0
-> installed tsdl.1.2.0
-> installed tsdl-ttf.0.6
-> installed tsdl-image.0.6
-> installed bogue.20250815
[ERROR] The compilation of bogue-tutorials.0.2.0 failed at "make mld".

#=== ERROR while compiling bogue-tutorials.0.2.0 ==============================#
# context              2.5.0 | linux/x86_64 | ocaml-base-compiler.4.14.2 | pinned(https://github.com/sanette/bogue-tutorials/archive/0.2.0.tar.gz)
# path                 ~/.opam/4.14/.opam-switch/build/bogue-tutorials.0.2.0
# command              ~/.opam/opam-init/hooks/sandbox.sh build make mld
# exit-code            2
# env-file             ~/.opam/log/bogue-tutorials-7-9dc110.env
# output-file          ~/.opam/log/bogue-tutorials-7-9dc110.out
### output ###
# make -C common mld
# make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/bogue-tutorials.0.2.0/common'
# make -C src mld
# make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/bogue-tutorials.0.2.0/common/src'
# ../make_mld.sh common.ml
# Converting common.ml to common.mld
# sed: unrecognized option: z
# BusyBox v1.37.0 (2025-11-21 22:40:56 UTC) multi-call binary.
# 
# Usage: sed [-i[SFX]] [-nrE] [-f FILE]... [-e CMD]... [FILE]...
# or: sed [-i[SFX]] [-nrE] CMD [FILE]...
# 
# 	-e CMD	Add CMD to sed commands to be executed
# 	-f FILE	Add FILE contents to sed commands to be executed
# 	-i[SFX]	Edit files in-place (otherwise write to stdout)
# 		Optionally back files up, appending SFX
# 	-n	Suppress automatic printing of pattern space
# 	-r,-E	Use extended regex syntax
# 
# If no -e or -f, the first non-option argument is the sed command string.
# Remaining arguments are input files (stdin if none).
# make[2]: *** [Makefile:14: common.mld] Error 1
# make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/bogue-tutorials.0.2.0/common/src'
# make[1]: *** [Makefile:9: mld] Error 2
# make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/bogue-tutorials.0.2.0/common'
# make: *** [Makefile:18: common] Error 2



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build bogue-tutorials 0.2.0
+- 
+- The following changes have been performed
| - install bogue             20250815
| - install conf-libffi       2.0.0
| - install conf-perl         2
| - install conf-pkg-config   4
| - install conf-sdl2         1
| - install conf-sdl2-image   1
| - install conf-sdl2-ttf     1
| - install csexp             1.5.2
| - install ctypes            0.24.0
| - install ctypes-foreign    0.24.0
| - install dune              3.21.0
| - install dune-configurator 3.21.0
| - install integers          0.7.0
| - install ocamlbuild        0.16.1
| - install ocamlfind         1.9.8
| - install stdlib-shims      0.3.0
| - install topkg             1.1.1
| - install tsdl              1.2.0
| - install tsdl-image        0.6
| - install tsdl-ttf          0.6
| - install xdg               3.21.0
+- 
# To update the current shell environment, run: eval $(opam env)

The former state can be restored with:
    /usr/bin/opam switch import "/home/opam/.opam/4.14/.opam-switch/backup/state-20260208101610.export"
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall bogue-tutorials.0.2.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 "\"alpine-3.22\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'bogue-tutorials.0.2.0' && partial_fails="$partial_fails $pkg";
        done;
        test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
        exit 1" failed with exit status 1
2026-02-08 10:36.21: Job failed: Failed: Build failed
2026-02-08 10:36.21: Log analysis:
2026-02-08 10:36.21: >>> 
[ERROR] The compilation of bogue-tutorials.0.2.0 failed at "make mld".
 (score = 20)
2026-02-08 10:36.21: The compilation of bogue-tutorials.0.2.0 failed at "make mld".