Build:
- 0
2026-02-25 23:23.12: New job: test conf-bzip2.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29395/head (35e09a6bc2c98aaca96365bae84e0a4a7c711655)
on ubuntu-25.10-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/29395/head" && git reset --hard 35e09a6b
git fetch origin master
git merge --no-edit ffc3fe0dd7a53e8ca5b492e98f8ad5b32602311d
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-25.10-ocaml-5.4@sha256:5054050bcc19d88ec491f2aad9c7ccdb8a18208c8da34cc2ce253d8c28bd72b9
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 conf-bzip2.1 1
RUN opam reinstall conf-bzip2.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"ubuntu-25.10\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'conf-bzip2.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test conf-bzip2.1) || true
RUN opam reinstall --with-test --verbose conf-bzip2.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"ubuntu-25.10\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'conf-bzip2.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-02-25 23:23.12: Using cache hint "ocaml/opam:ubuntu-25.10-ocaml-5.4@sha256:5054050bcc19d88ec491f2aad9c7ccdb8a18208c8da34cc2ce253d8c28bd72b9-conf-bzip2.1-35e09a6bc2c98aaca96365bae84e0a4a7c711655"
2026-02-25 23:23.12: Using OBuilder spec:
((from ocaml/opam:ubuntu-25.10-ocaml-5.4@sha256:5054050bcc19d88ec491f2aad9c7ccdb8a18208c8da34cc2ce253d8c28bd72b9)
(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 conf-bzip2.1 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall conf-bzip2.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-25.10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'conf-bzip2.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test conf-bzip2.1) || true"))
(run (shell "opam reinstall --with-test --verbose conf-bzip2.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-25.10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'conf-bzip2.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-02-25 23:23.12: Connecting to build cluster…
2026-02-25 23:23.12: Waiting for resource in pool OCluster
2026-02-25 23:23.43: Waiting for worker…
2026-02-25 23:26.16: Got resource from pool OCluster
Building on clete
All commits already cached
HEAD is now at ffc3fe0dd7 Merge pull request #29457 from balat/opam-publish-ocsigen-toolkit.4.2.0
Merge made by the 'ort' strategy.
packages/conf-bzip2/conf-bzip2.1/opam | 54 ++++++++++++++++++++++
.../conf-mingw-w64-bzip2-i686.1/opam | 20 ++++++++
.../conf-mingw-w64-bzip2-x86_64.1/opam | 20 ++++++++
3 files changed, 94 insertions(+)
create mode 100644 packages/conf-bzip2/conf-bzip2.1/opam
create mode 100644 packages/conf-mingw-w64-bzip2-i686/conf-mingw-w64-bzip2-i686.1/opam
create mode 100644 packages/conf-mingw-w64-bzip2-x86_64/conf-mingw-w64-bzip2-x86_64.1/opam
(from ocaml/opam:ubuntu-25.10-ocaml-5.4@sha256:5054050bcc19d88ec491f2aad9c7ccdb8a18208c8da34cc2ce253d8c28bd72b9)
2026-02-25 23:26.40 ---> saved as "57cf0cbd31d78ac2c1a1f7b3c1a2f72692b0a142c39355b96b6f72e2922dbc32"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-02-25 23:26.41 ---> saved as "9232b665f20d18b709c3cb4a4618e8bcd34d78eb3223e7e510d6aa683ee84070"
/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 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
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-02-25 23:27.07 ---> saved as "f72483b12f79065d016a18eb744f3398a6d0ea933b33a8376f4a61bdec0c1bf8"
/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=ubuntu os-version=25.10
# 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 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-02-25 23:27.08 ---> saved as "326ef1a7baf3ee05eac63971a8c4f83732ea05062fc2dc48448fee42095e7aa4"
/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-25 23:27.16 ---> saved as "5ebbe41a73da3413fd468a065ad0b07690e686e091aad08ae010bf6d686cb452"
/home/opam: (copy (src .) (dst opam-repository/))
2026-02-25 23:27.38 ---> saved as "bbf0e0d9b9d9033fbc7349914980884d8a65f7df98e62a2f0258053475c34221"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-25 23:27.58 ---> saved as "6f3963dcb5a77129a4df7003181da14b2577a654d845dce5eaef1db0e7a7f6e5"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://archive.ubuntu.com/ubuntu questing InRelease
- Get:2 http://archive.ubuntu.com/ubuntu questing-updates InRelease [136 kB]
- Get:3 http://security.ubuntu.com/ubuntu questing-security InRelease [136 kB]
- Get:4 http://archive.ubuntu.com/ubuntu questing-backports InRelease [133 kB]
- Get:5 http://archive.ubuntu.com/ubuntu questing-updates/universe amd64 Packages [253 kB]
- Get:6 http://archive.ubuntu.com/ubuntu questing-updates/restricted amd64 Packages [204 kB]
- Get:7 http://security.ubuntu.com/ubuntu questing-security/restricted amd64 Packages [202 kB]
- Get:8 http://archive.ubuntu.com/ubuntu questing-updates/main amd64 Packages [407 kB]
- Get:9 http://security.ubuntu.com/ubuntu questing-security/universe amd64 Packages [173 kB]
- Get:10 http://security.ubuntu.com/ubuntu questing-security/main amd64 Packages [268 kB]
- Fetched 1911 kB in 0s (9524 kB/s)
- Reading package lists...
-
2026-02-25 23:27.59 ---> saved as "cb0c03b7b7c8be6249d9f4360837201f48bda6549e5328d47f7f6b76f30920ce"
/home/opam: (run (shell "opam pin add -k version -yn conf-bzip2.1 1"))
conf-bzip2 is now pinned to version 1
2026-02-25 23:28.00 ---> saved as "b0837cb344c176012a2e38b31c16315ea2268113a6e74f86c829175f9a4698c5"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall conf-bzip2.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-25.10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'conf-bzip2.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
conf-bzip2.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
- install conf-bzip2 1 (pinned)
- install conf-pkg-config 4 [required by conf-bzip2]
The following system packages will first need to be installed:
libbz2-dev pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libbz2-dev" "pkg-config"
- Selecting previously unselected package bzip2-doc.
- (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 ... 18742 files and directories currently installed.)
- Preparing to unpack .../0-bzip2-doc_1.0.8-6build1_all.deb ...
- Unpacking bzip2-doc (1.0.8-6build1) ...
- Selecting previously unselected package libbz2-dev:amd64.
- Preparing to unpack .../1-libbz2-dev_1.0.8-6build1_amd64.deb ...
- Unpacking libbz2-dev:amd64 (1.0.8-6build1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4build1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4build1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4build1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4build1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4build1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4build1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-4build1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4build1) ...
- Setting up bzip2-doc (1.0.8-6build1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4build1) ...
- Setting up pkgconf-bin (1.8.1-4build1) ...
- Setting up libbz2-dev:amd64 (1.0.8-6build1) ...
- Setting up pkgconf:amd64 (1.8.1-4build1) ...
- Setting up pkg-config:amd64 (1.8.1-4build1) ...
- Processing triggers for libc-bin (2.42-0ubuntu3.1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-pkg-config.4
-> installed conf-bzip2.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-25 23:28.07 ---> saved as "3b0ec88da8a09f894ca73ad6a14e22d0fa3568c5b34356f63d73ac4c29e189df"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test conf-bzip2.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile conf-bzip2 1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed conf-bzip2.1
-> installed conf-bzip2.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-25 23:28.11 ---> saved as "0b7c5a8ce5859218f320c9257a25993f74545951290072fca72b0718b75e8e4d"
/home/opam: (run (shell "opam reinstall --with-test --verbose conf-bzip2.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-25.10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'conf-bzip2.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile conf-bzip2 1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [conf-bzip2: pkg-config bzip2]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "pkg-config" "bzip2" (CWD=/home/opam/.opam/5.4/.opam-switch/build/conf-bzip2.1)
-> compiled conf-bzip2.1
-> removed conf-bzip2.1
-> installed conf-bzip2.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-25 23:28.16 ---> saved as "bc2066512bae5db93e3784a6cd99480571fd830aa341b65a9b50a29a4e035167"
Job succeeded
2026-02-25 23:28.35: Job succeeded