(for PR #29952)
2026-05-25 04:39.58: New job: test contract.0.1.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29952/head (6bd94e649fd37e846e43afa12ad324faba41e969)
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/29952/head" && git reset --hard 6bd94e64
git fetch origin master
git merge --no-edit 856df280428c158a5bb0b3afce1bec956b10ae6f
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-tumbleweed-ocaml-5.4@sha256:16550c302279f971eef6e5f4d51548d104f3a812e715edfd6155c0d5a8aa7b06
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 contract.0.1.0 0.1.0
RUN opam reinstall contract.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" != 'contract.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 contract.0.1.0) || true
RUN opam reinstall --with-test --verbose contract.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" != 'contract.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-05-25 04:39.58: Using cache hint "ocaml/opam:opensuse-tumbleweed-ocaml-5.4@sha256:16550c302279f971eef6e5f4d51548d104f3a812e715edfd6155c0d5a8aa7b06-contract.0.1.0-6bd94e649fd37e846e43afa12ad324faba41e969"
2026-05-25 04:39.58: Using OBuilder spec:
((from ocaml/opam:opensuse-tumbleweed-ocaml-5.4@sha256:16550c302279f971eef6e5f4d51548d104f3a812e715edfd6155c0d5a8aa7b06)
(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 contract.0.1.0 0.1.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall contract.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\" != 'contract.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 contract.0.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose contract.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\" != 'contract.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-05-25 04:39.58: Waiting for resource in pool OCluster
2026-05-25 04:39.58: Waiting for worker…
2026-05-25 04:39.59: Got resource from pool OCluster
Building on eumache.caelum.ci.dev
All commits already cached
HEAD is now at 856df28042 Merge pull request #29946 from hannesm/release-mirage-net-solo5-v0.8.1
Updating 856df28042..6bd94e649f
Fast-forward
packages/contract/contract.0.1.0/opam | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
create mode 100644 packages/contract/contract.0.1.0/opam
(from ocaml/opam:opensuse-tumbleweed-ocaml-5.4@sha256:16550c302279f971eef6e5f4d51548d104f3a812e715edfd6155c0d5a8aa7b06)
Unable to find image 'ocaml/opam:opensuse-tumbleweed-ocaml-5.4@sha256:16550c302279f971eef6e5f4d51548d104f3a812e715edfd6155c0d5a8aa7b06' locally
docker.io/ocaml/opam@sha256:16550c302279f971eef6e5f4d51548d104f3a812e715edfd6155c0d5a8aa7b06: Pulling from ocaml/opam
80f4b5e912b4: Pulling fs layer
90e39e2dd238: Pulling fs layer
d4755cea6edc: Pulling fs layer
14bab15599c9: Pulling fs layer
3f3b27e1311a: Pulling fs layer
63a7210a8e9a: Pulling fs layer
b9b5c74db85c: Pulling fs layer
4c43b6069f58: Pulling fs layer
14bab15599c9: Waiting
fdb340175999: Pulling fs layer
63a7210a8e9a: Waiting
3f3b27e1311a: Waiting
b9b5c74db85c: Waiting
232eadddf6bd: Pulling fs layer
028a3bcb82e5: Pulling fs layer
fdb340175999: Waiting
232eadddf6bd: Waiting
8a6cc537066c: Pulling fs layer
899a8fe7ea25: Pulling fs layer
028a3bcb82e5: Waiting
8a6cc537066c: Waiting
2ef05379d095: Pulling fs layer
899a8fe7ea25: Waiting
08a2faa35231: Pulling fs layer
4c43b6069f58: Waiting
a9d256d1b45c: Pulling fs layer
2ef05379d095: Waiting
07e1b357312d: Pulling fs layer
a9d256d1b45c: Waiting
08a2faa35231: Waiting
ceec878bc18c: Pulling fs layer
07e1b357312d: Waiting
4f4fb700ef54: Pulling fs layer
f02b98bb9292: Pulling fs layer
ceec878bc18c: Waiting
0195fc953a86: Pulling fs layer
f02b98bb9292: Waiting
4f4fb700ef54: Waiting
1e479a764dcc: Pulling fs layer
7f7cbec44b9f: Pulling fs layer
352e58df96b6: Pulling fs layer
ea72dc832ce1: Pulling fs layer
7f7cbec44b9f: Waiting
0195fc953a86: Waiting
352e58df96b6: Waiting
00ae5eb9101d: Pulling fs layer
af0308cbf9db: Pulling fs layer
abde3918d8b7: Pulling fs layer
ea72dc832ce1: Waiting
6a5363426b7c: Pulling fs layer
1081d45cb470: Pulling fs layer
af0308cbf9db: Waiting
ca9fe9004276: Pulling fs layer
00ae5eb9101d: Waiting
abde3918d8b7: Waiting
2d6837565ac5: Pulling fs layer
6a5363426b7c: Waiting
1081d45cb470: Waiting
ca9fe9004276: Waiting
321da90cae51: Pulling fs layer
2d6837565ac5: Waiting
d5eafea8f8d0: Pulling fs layer
321da90cae51: Waiting
9d60f75c8f2d: Pulling fs layer
7b45c5aebc55: Pulling fs layer
d5eafea8f8d0: Waiting
d2d2e6538bb6: Pulling fs layer
7b45c5aebc55: Waiting
9d60f75c8f2d: Waiting
da358a731432: Pulling fs layer
d2d2e6538bb6: Waiting
1e7f463c1df5: Pulling fs layer
fbb9465b53d1: Pulling fs layer
6bbf72f160fd: Pulling fs layer
fbb9465b53d1: Waiting
da358a731432: Waiting
e7e799469a22: Pulling fs layer
0b6c1ee0cca7: Pulling fs layer
1e7f463c1df5: Waiting
e7e799469a22: Waiting
1380ce7bb186: Pulling fs layer
0b6c1ee0cca7: Waiting
1380ce7bb186: Waiting
90e39e2dd238: Verifying Checksum
90e39e2dd238: Download complete
d4755cea6edc: Verifying Checksum
d4755cea6edc: Download complete
3f3b27e1311a: Download complete
63a7210a8e9a: Verifying Checksum
63a7210a8e9a: Download complete
b9b5c74db85c: Verifying Checksum
b9b5c74db85c: Download complete
4c43b6069f58: Verifying Checksum
4c43b6069f58: Download complete
80f4b5e912b4: Verifying Checksum
80f4b5e912b4: Download complete
fdb340175999: Verifying Checksum
fdb340175999: Download complete
232eadddf6bd: Verifying Checksum
232eadddf6bd: Download complete
028a3bcb82e5: Verifying Checksum
028a3bcb82e5: Download complete
899a8fe7ea25: Verifying Checksum
899a8fe7ea25: Download complete
8a6cc537066c: Verifying Checksum
8a6cc537066c: Download complete
08a2faa35231: Verifying Checksum
08a2faa35231: Download complete
2ef05379d095: Verifying Checksum
2ef05379d095: Download complete
80f4b5e912b4: Pull complete
90e39e2dd238: Pull complete
a9d256d1b45c: Verifying Checksum
a9d256d1b45c: Download complete
d4755cea6edc: Pull complete
07e1b357312d: Verifying Checksum
07e1b357312d: Download complete
ceec878bc18c: Verifying Checksum
ceec878bc18c: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
0195fc953a86: Verifying Checksum
0195fc953a86: Download complete
14bab15599c9: Verifying Checksum
14bab15599c9: Download complete
f02b98bb9292: Verifying Checksum
f02b98bb9292: Download complete
1e479a764dcc: Download complete
352e58df96b6: Verifying Checksum
ea72dc832ce1: Download complete
00ae5eb9101d: Verifying Checksum
00ae5eb9101d: Download complete
af0308cbf9db: Verifying Checksum
af0308cbf9db: Download complete
7f7cbec44b9f: Verifying Checksum
7f7cbec44b9f: Download complete
abde3918d8b7: Verifying Checksum
abde3918d8b7: Download complete
1081d45cb470: Verifying Checksum
1081d45cb470: Download complete
ca9fe9004276: Verifying Checksum
ca9fe9004276: Download complete
6a5363426b7c: Verifying Checksum
6a5363426b7c: Download complete
321da90cae51: Download complete
9d60f75c8f2d: Verifying Checksum
9d60f75c8f2d: Download complete
7b45c5aebc55: Download complete
d2d2e6538bb6: Download complete
da358a731432: Download complete
2d6837565ac5: Verifying Checksum
2d6837565ac5: Download complete
fbb9465b53d1: Verifying Checksum
fbb9465b53d1: Download complete
6bbf72f160fd: Download complete
e7e799469a22: Verifying Checksum
e7e799469a22: Download complete
0b6c1ee0cca7: Download complete
1380ce7bb186: Download complete
14bab15599c9: Pull complete
3f3b27e1311a: Pull complete
63a7210a8e9a: Pull complete
b9b5c74db85c: Pull complete
4c43b6069f58: Pull complete
fdb340175999: Pull complete
232eadddf6bd: Pull complete
028a3bcb82e5: Pull complete
8a6cc537066c: Pull complete
899a8fe7ea25: Pull complete
2ef05379d095: Pull complete
08a2faa35231: Pull complete
a9d256d1b45c: Pull complete
07e1b357312d: Pull complete
ceec878bc18c: Pull complete
4f4fb700ef54: Pull complete
f02b98bb9292: Pull complete
0195fc953a86: Pull complete
1e479a764dcc: Pull complete
7f7cbec44b9f: Pull complete
352e58df96b6: Pull complete
ea72dc832ce1: Pull complete
00ae5eb9101d: Pull complete
af0308cbf9db: Pull complete
abde3918d8b7: Pull complete
6a5363426b7c: Pull complete
1081d45cb470: Pull complete
ca9fe9004276: Pull complete
1e7f463c1df5: Download complete
d5eafea8f8d0: Verifying Checksum
d5eafea8f8d0: Download complete
2d6837565ac5: Pull complete
321da90cae51: Pull complete
d5eafea8f8d0: Pull complete
9d60f75c8f2d: Pull complete
7b45c5aebc55: Pull complete
d2d2e6538bb6: Pull complete
da358a731432: Pull complete
1e7f463c1df5: Pull complete
fbb9465b53d1: Pull complete
6bbf72f160fd: Pull complete
e7e799469a22: Pull complete
0b6c1ee0cca7: Pull complete
1380ce7bb186: Pull complete
Digest: sha256:16550c302279f971eef6e5f4d51548d104f3a812e715edfd6155c0d5a8aa7b06
Status: Downloaded newer image for ocaml/opam@sha256:16550c302279f971eef6e5f4d51548d104f3a812e715edfd6155c0d5a8aa7b06
2026-05-25 04:40.14 ---> using "cbd6ad453380e3c10608891a4ede930a81cf30cce2ec27a670abfab74371cd85" 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-05-25 04:40.14 ---> using "bdbbf1c59a87f862b366dec2047a710dfd2a3a45299bcaec420ebe1eec0614f0" 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.1 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 1 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=1 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2026-05-25 04:40.14 ---> using "0f91af5ee1523708c04126301067e82c04ff64292b677bd4fcbfae54dd258450" 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.1
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=opensuse-tumbleweed os-version=20260515
# 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.1"}]
# compiler-packages ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, 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.1
2026-05-25 04:40.14 ---> using "5048724cf7d66f625854bcf4a5f4c70797b8821918241e9c55a9a07389200a47" 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-05-25 04:40.14 ---> using "a2fafd2d73ada4df5757e723a292ce2cbbe33588b8de303317b9006742678b6f" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-05-25 04:40.20 ---> saved as "342cb8fd1852cb31d45eda5b7837f6e07b719473543264696aece6cce365929d"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-25 04:40.32 ---> saved as "02fb5f9a9c808ee7d1fa0b73f25e4eb4e858ae259911efb578dea14cc9dc5e33"
/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-05-25 04:40.43 ---> saved as "cd59a386795f6719d7fc1b836c57b8e03a1ae6c175a1ddde6b9dcc2601a03af1"
/home/opam: (run (shell "opam pin add -k version -yn contract.0.1.0 0.1.0"))
contract is now pinned to version 0.1.0
2026-05-25 04:40.43 ---> saved as "c2479d587d85f3ff1fc490becd218c1cff29605c4b52f5ca8c4498bed5e8672f"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall contract.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\" != 'contract.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"))
contract.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 3 packages
- install contract 0.1.0 (pinned)
- install dune 3.23.1 [required by contract]
- install yojson 3.0.0 [required by contract]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved contract.0.1.0 (https://github.com/funwithcthulhu/contract/archive/refs/tags/0.1.0.tar.gz)
-> retrieved dune.3.23.1 (cached)
-> retrieved yojson.3.0.0 (cached)
-> installed dune.3.23.1
-> installed yojson.3.0.0
-> installed contract.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-25 04:41.24 ---> saved as "5a2e6f37dd76098cf35eaaa77d376bfaf86a435252ff92e450788a0f0ef913a0"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test contract.0.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile contract 0.1.0 (pinned)
=== install 11 packages
- install alcotest 1.9.1 [required by contract]
- install astring 0.8.5 [required by alcotest]
- install cmdliner 2.1.1 [required by alcotest]
- install fmt 0.11.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocamlbuild 0.16.1 [required by fmt, astring, uutf]
- install ocamlfind 1.9.8 [required by fmt, astring, uutf]
- install re 1.14.0 [required by alcotest]
- install stdlib-shims 0.3.0 [required by alcotest]
- install topkg 1.1.1 [required by fmt, astring, uutf]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.1 (https://opam.ocaml.org/cache)
-> retrieved contract.0.1.0 (https://github.com/funwithcthulhu/contract/archive/refs/tags/0.1.0.tar.gz)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1 (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed re.1.14.0
-> installed cmdliner.2.1.1
-> installed ocamlfind.1.9.8
-> removed contract.0.1.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed contract.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-25 04:41.46 ---> saved as "635a888a66011fb747a7f1cb56a4e39fe324ccf2eb817d33b0eda53d715d5796"
/home/opam: (run (shell "opam reinstall --with-test --verbose contract.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\" != 'contract.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 contract 0.1.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [contract.0.1.0: extract]
-> retrieved contract.0.1.0 (cached)
Processing 2/4: [contract: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "contract" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/contract.0.1.0)
Processing 2/4: [contract: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "contract" (CWD=/home/opam/.opam/5.4/.opam-switch/build/contract.0.1.0)
- (cd _build/default/test && ./test_contract.exe)
- Testing `contract'.
- This run has ID `BOWP599I'.
-
- [OK] path templates 0 parses /users/:id.
- [OK] path templates 1 matches /users/42.
- [OK] path templates 2 decodes %20 in path param.
- [OK] path templates 3 decodes %2F inside path param.
- [OK] path templates 4 decodes lowercase and upperca...
- [OK] path templates 5 literal slash still splits pa...
- [OK] path templates 6 literal segment is not percen...
- [OK] path templates 7 rejects percent at end.
- [OK] path templates 8 rejects non-hex percent escape.
- [OK] path templates 9 rejects invalid UTF-8 percent...
- [OK] path templates 10 rejects missing segment.
- [OK] path templates 11 rejects extra segment.
- [OK] path templates 12 converts to OpenAPI path.
- [OK] scalar codecs 0 int success.
- [OK] scalar codecs 1 int failure.
- [OK] scalar codecs 2 bool success.
- [OK] scalar codecs 3 bool failure.
- [OK] endpoints 0 constructs from valid template.
- [OK] endpoints 1 rejects invalid template.
- [OK] endpoints 2 method name.
- [OK] json codecs 0 string success.
- [OK] json codecs 1 string failure.
- [OK] json codecs 2 required field success.
- [OK] json codecs 3 required field missing.
- [OK] json codecs 4 optional field missing.
- [OK] json codecs 5 optional field null.
- [OK] request validation 0 valid GET.
- [OK] request validation 1 ignores undeclared query params.
- [OK] request validation 2 duplicate query uses first va...
- [OK] request validation 3 invalid method.
- [OK] request validation 4 invalid path.
- [OK] request validation 5 bad path param type.
- [OK] request validation 6 bad query param type.
- [OK] request validation 7 required query param missing.
- [OK] request validation 8 declared path param must matc...
- [OK] request validation 9 valid POST body.
- [OK] request validation 10 invalid JSON body field.
- [OK] request validation 11 extra JSON body fields are ig...
- [OK] request validation 12 missing POST body.
- [OK] openapi 0 contains OpenAPI version.
- [OK] openapi 1 contains /users/{id}.
- [OK] openapi 2 contains GET operation.
- [OK] openapi 3 contains POST operation.
- [OK] openapi 4 contains POST requestBody.
- [OK] openapi 5 contains response 200.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/contract.0.1.0/_build/default/test/_build/_tests/contract'.
- Test Successful in 0.004s. 45 tests run.
-> compiled contract.0.1.0
-> removed contract.0.1.0
-> installed contract.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-25 04:41.51 ---> saved as "17ecbedf6dfea1f67131db78856352c9436bbb740b1a3dee300a5b2b4c8f156e"
Job succeeded
2026-05-25 04:41.57: Job succeeded