(for PR #28907)
2025-11-18 22:27.05: New job: test uri.4.4.0 with crowbar.0.2.2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/28907/head (fdb37fd425316c3f17ff1a672f38d79e17f64d31)
on debian-13-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/28907/head" && git reset --hard fdb37fd4
git fetch origin master
git merge --no-edit 5b6623e1a6044ddcc5808644cab9ba88dfd5e8c3
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:57c83c9f9a1885d6982e64ff7d1de47223738f31f635056b0165042eaec3081f
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 crowbar.0.2.2 0.2.2
RUN opam reinstall crowbar.0.2.2; \
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" != 'crowbar.0.2.2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall uri.4.4.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" != 'uri.4.4.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 uri.4.4.0) || true
RUN opam reinstall --with-test --verbose uri.4.4.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" != 'uri.4.4.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 .
2025-11-18 22:27.05: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:57c83c9f9a1885d6982e64ff7d1de47223738f31f635056b0165042eaec3081f-crowbar.0.2.2-uri.4.4.0-fdb37fd425316c3f17ff1a672f38d79e17f64d31"
2025-11-18 22:27.05: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:57c83c9f9a1885d6982e64ff7d1de47223738f31f635056b0165042eaec3081f)
(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 crowbar.0.2.2 0.2.2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall crowbar.0.2.2;\
\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\" != 'crowbar.0.2.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall uri.4.4.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\" != 'uri.4.4.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 uri.4.4.0) || true"))
(run (shell "opam reinstall --with-test --verbose uri.4.4.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\" != 'uri.4.4.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-11-18 22:27.05: Waiting for resource in pool OCluster
2025-11-18 22:27.05: Waiting for worker…
2025-11-18 22:27.19: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 5b6623e1a6 Merge pull request #28905 from lindig/expr
Merge made by the 'ort' strategy.
packages/crowbar/crowbar.0.2.2/opam | 50 +++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
create mode 100644 packages/crowbar/crowbar.0.2.2/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:57c83c9f9a1885d6982e64ff7d1de47223738f31f635056b0165042eaec3081f)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:57c83c9f9a1885d6982e64ff7d1de47223738f31f635056b0165042eaec3081f' locally
docker.io/ocaml/opam@sha256:57c83c9f9a1885d6982e64ff7d1de47223738f31f635056b0165042eaec3081f: Pulling from ocaml/opam
13cc39f8244a: Pulling fs layer
9d7c1cac6af4: Pulling fs layer
979e6521bf84: Pulling fs layer
b129e961d700: Pulling fs layer
9288fc69cd29: Pulling fs layer
b232c90b1855: Pulling fs layer
658a78f60f44: Pulling fs layer
b3e6010fbc4c: Pulling fs layer
e75ac7b73fdb: Pulling fs layer
f1dbfc01d8b6: Pulling fs layer
42e8958c94a5: Pulling fs layer
1c77fd15fa4b: Pulling fs layer
f8ae0ec2765e: Pulling fs layer
87b5808a8709: Pulling fs layer
6551add7b2f4: Pulling fs layer
a050a941214a: Pulling fs layer
da6cadefa7ea: Pulling fs layer
0a3e89137cf8: Pulling fs layer
cc34154fc322: Pulling fs layer
eb7661180f3a: Pulling fs layer
faad806bf7c5: Pulling fs layer
4f4fb700ef54: Pulling fs layer
fe5692607199: Pulling fs layer
caa548e7f855: Pulling fs layer
42e8958c94a5: Waiting
b129e961d700: Waiting
1c77fd15fa4b: Waiting
e75ac7b73fdb: Waiting
8ad66e641b14: Pulling fs layer
9288fc69cd29: Waiting
f1dbfc01d8b6: Waiting
b9d5d27dc0b6: Pulling fs layer
eb7661180f3a: Waiting
f8ae0ec2765e: Waiting
788961b65661: Pulling fs layer
faad806bf7c5: Waiting
87b5808a8709: Waiting
9ed95272e11f: Pulling fs layer
6551add7b2f4: Waiting
a050a941214a: Waiting
82c1497059a3: Pulling fs layer
8abbeded2fb9: Pulling fs layer
1276181ef5dc: Pulling fs layer
0bd63c9342a5: Pulling fs layer
0294cf425d8c: Pulling fs layer
def43d8fc04c: Pulling fs layer
c87ed18f9ca6: Pulling fs layer
056f995b50a2: Pulling fs layer
1276181ef5dc: Waiting
c9f03af6c585: Pulling fs layer
0bd63c9342a5: Waiting
4e0df0b17574: Pulling fs layer
658a78f60f44: Waiting
1fcd55c53252: Pulling fs layer
cc34154fc322: Waiting
788961b65661: Waiting
fe5692607199: Waiting
b3e6010fbc4c: Waiting
9fe15f147c9c: Pulling fs layer
0a3e89137cf8: Waiting
9ed95272e11f: Waiting
0294cf425d8c: Waiting
caa548e7f855: Waiting
6aba0bde3b08: Pulling fs layer
8abbeded2fb9: Waiting
82c1497059a3: Waiting
eb47c999a07f: Pulling fs layer
8ad66e641b14: Waiting
c3b5761e8351: Pulling fs layer
c9f03af6c585: Waiting
b232c90b1855: Waiting
cb4d7f22a33c: Pulling fs layer
e164f89870e6: Pulling fs layer
6aba0bde3b08: Waiting
cfbece6412d9: Pulling fs layer
eb47c999a07f: Waiting
9fe15f147c9c: Waiting
056f995b50a2: Waiting
351f77100e84: Pulling fs layer
e164f89870e6: Waiting
351f77100e84: Waiting
4f4fb700ef54: Waiting
cb4d7f22a33c: Waiting
4e0df0b17574: Waiting
b9d5d27dc0b6: Waiting
def43d8fc04c: Waiting
c87ed18f9ca6: Waiting
1fcd55c53252: Waiting
c3b5761e8351: Waiting
cfbece6412d9: Waiting
979e6521bf84: Verifying Checksum
979e6521bf84: Download complete
9d7c1cac6af4: Download complete
13cc39f8244a: Verifying Checksum
13cc39f8244a: Download complete
b129e961d700: Verifying Checksum
b129e961d700: Download complete
9288fc69cd29: Download complete
658a78f60f44: Verifying Checksum
658a78f60f44: Download complete
e75ac7b73fdb: Verifying Checksum
e75ac7b73fdb: Download complete
b3e6010fbc4c: Verifying Checksum
b3e6010fbc4c: Download complete
42e8958c94a5: Verifying Checksum
42e8958c94a5: Download complete
f1dbfc01d8b6: Verifying Checksum
f1dbfc01d8b6: Download complete
13cc39f8244a: Pull complete
9d7c1cac6af4: Pull complete
979e6521bf84: Pull complete
1c77fd15fa4b: Verifying Checksum
1c77fd15fa4b: Download complete
f8ae0ec2765e: Verifying Checksum
f8ae0ec2765e: Download complete
b129e961d700: Pull complete
9288fc69cd29: Pull complete
87b5808a8709: Download complete
a050a941214a: Download complete
b232c90b1855: Verifying Checksum
b232c90b1855: Download complete
0a3e89137cf8: Verifying Checksum
0a3e89137cf8: Download complete
da6cadefa7ea: Verifying Checksum
da6cadefa7ea: Download complete
cc34154fc322: Download complete
6551add7b2f4: Verifying Checksum
6551add7b2f4: Download complete
eb7661180f3a: Verifying Checksum
eb7661180f3a: Download complete
faad806bf7c5: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
fe5692607199: Verifying Checksum
fe5692607199: Download complete
b9d5d27dc0b6: Verifying Checksum
b9d5d27dc0b6: Download complete
8ad66e641b14: Download complete
caa548e7f855: Download complete
788961b65661: Download complete
9ed95272e11f: Verifying Checksum
9ed95272e11f: Download complete
1276181ef5dc: Verifying Checksum
1276181ef5dc: Download complete
8abbeded2fb9: Verifying Checksum
8abbeded2fb9: Download complete
82c1497059a3: Verifying Checksum
82c1497059a3: Download complete
0294cf425d8c: Download complete
0bd63c9342a5: Verifying Checksum
0bd63c9342a5: Download complete
def43d8fc04c: Verifying Checksum
def43d8fc04c: Download complete
056f995b50a2: Verifying Checksum
056f995b50a2: Download complete
4e0df0b17574: Verifying Checksum
4e0df0b17574: Download complete
1fcd55c53252: Download complete
9fe15f147c9c: Verifying Checksum
9fe15f147c9c: Download complete
6aba0bde3b08: Verifying Checksum
6aba0bde3b08: Download complete
eb47c999a07f: Verifying Checksum
eb47c999a07f: Download complete
c3b5761e8351: Verifying Checksum
c3b5761e8351: Download complete
c87ed18f9ca6: Verifying Checksum
c87ed18f9ca6: Download complete
cfbece6412d9: Verifying Checksum
cfbece6412d9: Download complete
351f77100e84: Download complete
cb4d7f22a33c: Verifying Checksum
cb4d7f22a33c: Download complete
b232c90b1855: Pull complete
c9f03af6c585: Verifying Checksum
c9f03af6c585: Download complete
658a78f60f44: Pull complete
b3e6010fbc4c: Pull complete
e75ac7b73fdb: Pull complete
f1dbfc01d8b6: Pull complete
42e8958c94a5: Pull complete
1c77fd15fa4b: Pull complete
f8ae0ec2765e: Pull complete
87b5808a8709: Pull complete
6551add7b2f4: Pull complete
a050a941214a: Pull complete
da6cadefa7ea: Pull complete
0a3e89137cf8: Pull complete
cc34154fc322: Pull complete
eb7661180f3a: Pull complete
faad806bf7c5: Pull complete
4f4fb700ef54: Pull complete
fe5692607199: Pull complete
caa548e7f855: Pull complete
8ad66e641b14: Pull complete
b9d5d27dc0b6: Pull complete
788961b65661: Pull complete
9ed95272e11f: Pull complete
82c1497059a3: Pull complete
8abbeded2fb9: Pull complete
1276181ef5dc: Pull complete
0bd63c9342a5: Pull complete
0294cf425d8c: Pull complete
def43d8fc04c: Pull complete
c87ed18f9ca6: Pull complete
056f995b50a2: Pull complete
c9f03af6c585: Pull complete
4e0df0b17574: Pull complete
1fcd55c53252: Pull complete
9fe15f147c9c: Pull complete
6aba0bde3b08: Pull complete
eb47c999a07f: Pull complete
c3b5761e8351: Pull complete
cb4d7f22a33c: Pull complete
e164f89870e6: Pull complete
cfbece6412d9: Pull complete
351f77100e84: Pull complete
Digest: sha256:57c83c9f9a1885d6982e64ff7d1de47223738f31f635056b0165042eaec3081f
Status: Downloaded newer image for ocaml/opam@sha256:57c83c9f9a1885d6982e64ff7d1de47223738f31f635056b0165042eaec3081f
2025-11-18 22:27.25 ---> using "9e1915ffb50e2d100090b64fd44ae95ca325d8eb9d61c3d158d7a2820cdf10df" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-11-18 22:27.25 ---> using "a89d67f47dc052c1fa6030e991f2efcdc18bdc7264e253a16a68cf41a783bce3" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[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
2025-11-18 22:27.25 ---> using "e7d59cafe29d8677915af1babfeae58e54d4207f14885cb246c86d55bd5a1482" 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~beta1
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 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
2025-11-18 22:27.25 ---> using "80387795d0623d5b8910397dfc254dc25728af00fb9518d563d3ea0db362594e" 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/"))
2025-11-18 22:27.25 ---> using "6da5271e5f4dd5d40dbe155387da7d3527dee1feeddc83c0cf4a90dece1ce186" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-18 22:27.26 ---> using "5acb5447d53fc8e10b18aa2afa064be23ce077dca0477675b746d866b319ad90" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-18 22:27.41 ---> saved as "d7d783e0fc7d9179d5afb379ae1cc0ac9b0b3d815f8e274a457b4c2c6a1e2555"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9670 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [71.8 kB]
- Fetched 9973 kB in 1s (9458 kB/s)
- Reading package lists...
2025-11-18 22:27.43 ---> saved as "f0b8214c3e9a4c06c7fc78f11efc52af42a8b9d52c196029efa80aef5438e6b5"
/home/opam: (run (shell "opam pin add -k version -yn crowbar.0.2.2 0.2.2"))
crowbar is now pinned to version 0.2.2
2025-11-18 22:27.43 ---> saved as "ec16a7ef8e9f2b57ad7d4ec7398732859dc8847e13e045c906cde02926f3d7a1"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall crowbar.0.2.2;\
\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\" != 'crowbar.0.2.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
crowbar.0.2.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 4 packages
- install afl-persistent 1.4 [required by crowbar]
- install cmdliner 2.0.0 [required by crowbar]
- install crowbar 0.2.2 (pinned)
- install dune 3.20.2 [required by crowbar]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved afl-persistent.1.4 (cached)
-> retrieved cmdliner.2.0.0 (cached)
-> retrieved crowbar.0.2.2 (cached)
-> retrieved dune.3.20.2 (cached)
-> installed cmdliner.2.0.0
-> installed dune.3.20.2
-> installed afl-persistent.1.4
-> installed crowbar.0.2.2
Done.
<><> afl-persistent.1.4 installed successfully ><><><><><><><><><><><><><><><><>
=> afl-persistent is installed, but since the current OCaml compiler does
not enable AFL instrumentation by default, most packages will not be
instrumented and fuzzing with afl-fuzz may not be effective.
To globally enable AFL instrumentation, create an OCaml switch like:
opam switch create 5.4.0+afl ocaml-variants.5.4.0+options ocaml-option-afl
# To update the current shell environment, run: eval $(opam env)
2025-11-18 22:28.10 ---> saved as "c859f137bad3aa21d65e43b14f89be02a5f94c291e25abb4396ef2d6f0f03557"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall uri.4.4.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\" != 'uri.4.4.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
uri.4.4.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
- install angstrom 0.16.1 [required by uri]
- install bigstringaf 0.10.0 [required by angstrom]
- install csexp 1.5.2 [required by dune-configurator]
- install dune-configurator 3.20.2 [required by bigstringaf]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install stringext 1.6.0 [required by uri]
- install uri 4.4.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.20.2 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved uri.4.4.0 (cached)
-> installed stringext.1.6.0
-> installed ocaml-syntax-shims.1.0.0
-> installed dune-configurator.3.20.2
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed uri.4.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-18 22:28.22 ---> saved as "462b8c412608460d5f82e782b04758b0a069015a6eb30783d04285185a78ab1f"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test uri.4.4.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile uri 4.4.0
=== install 11 packages
- install base v0.17.3 [required by ppx_sexp_conv]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocaml_intrinsics_kernel v0.17.1 [required by base]
- install ounit2 2.2.7 [required by uri]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppx_sexp_conv v0.17.1 [required by uri]
- install ppxlib 0.37.0 [required by ppx_sexp_conv]
- install ppxlib_jane v0.17.4 [required by ppx_sexp_conv]
- install seq base [required by ounit2]
- install sexplib0 v0.17.0 [required by ppx_sexp_conv]
- install stdlib-shims 0.3.0 [required by ounit2]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.3 (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml_intrinsics_kernel.v0.17.1 (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7 (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1 (https://opam.ocaml.org/cache)
-> retrieved ppx_sexp_conv.v0.17.1 (https://opam.ocaml.org/cache)
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.37.0 (https://opam.ocaml.org/cache)
-> retrieved ppxlib_jane.v0.17.4 (https://opam.ocaml.org/cache)
-> retrieved seq.base (2 extra sources)
-> retrieved seq.base (2 extra sources)
-> installed seq.base
-> retrieved sexplib0.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved uri.4.4.0 (https://opam.ocaml.org/cache)
-> installed ocaml-compiler-libs.v0.17.0
-> installed stdlib-shims.0.3.0
-> removed uri.4.4.0
-> installed sexplib0.v0.17.0
-> installed ounit2.2.2.7
-> installed base.v0.17.3
-> installed ppxlib.0.37.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_sexp_conv.v0.17.1
-> installed uri.4.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-18 22:28.51 ---> saved as "d65c2cd8f14fa0d1aba22926c945017b2f37b7c9f226e9a069cac4c8a57874b0"
/home/opam: (run (shell "opam reinstall --with-test --verbose uri.4.4.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\" != 'uri.4.4.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 uri 4.4.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [uri.4.4.0: extract]
-> retrieved uri.4.4.0 (cached)
Processing 2/4: [uri: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "uri" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/uri.4.4.0)
Processing 2/4: [uri: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "uri" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/uri.4.4.0)
- (cd _build/default/lib_test && ./test_runner.exe)
- ......................................................................................................................................................................................................................................................................................
- Ran: 278 tests in: 0.16 seconds.
- OK
-> compiled uri.4.4.0
-> removed uri.4.4.0
-> installed uri.4.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-18 22:28.58 ---> saved as "53e94b4bac1cb5dc5eb400341f05a471eff6a99c658f1f96afcb4ed13d77a8ff"
Job succeeded
2025-11-18 22:29.19: Job succeeded