Build:
- 0
2025-12-29 14:49.43: New job: test alice.0.3.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29145/head (2243b3772f42f64b0cf083845f9b108bd7a93091)
on archlinux-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/29145/head" && git reset --hard 2243b377
git fetch origin master
git merge --no-edit c239a62d58deaede2e5dce17c2715a55397b73f2
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-5.4@sha256:f58fb434854943bbee390ec710d41f81fa5bcbd9bf38e18e84edd3030ae8d276
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 alice.0.3.0 0.3.0
RUN opam reinstall alice.0.3.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 "\"archlinux\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'alice.0.3.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 alice.0.3.0) || true
RUN opam reinstall --with-test --verbose alice.0.3.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 "\"archlinux\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'alice.0.3.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-12-29 14:49.43: Using cache hint "ocaml/opam:archlinux-ocaml-5.4@sha256:f58fb434854943bbee390ec710d41f81fa5bcbd9bf38e18e84edd3030ae8d276-alice.0.3.0-2243b3772f42f64b0cf083845f9b108bd7a93091"
2025-12-29 14:49.43: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-5.4@sha256:f58fb434854943bbee390ec710d41f81fa5bcbd9bf38e18e84edd3030ae8d276)
(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 alice.0.3.0 0.3.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall alice.0.3.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 \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'alice.0.3.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 alice.0.3.0) || true"))
(run (shell "opam reinstall --with-test --verbose alice.0.3.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 \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'alice.0.3.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-12-29 14:49.43: Waiting for resource in pool OCluster
2025-12-29 14:49.44: Waiting for worker…
2025-12-29 14:51.12: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files: 70% (13516/19112)
Updating files: 71% (13570/19112)
Updating files: 72% (13761/19112)
Updating files: 73% (13952/19112)
Updating files: 74% (14143/19112)
Updating files: 75% (14334/19112)
Updating files: 76% (14526/19112)
Updating files: 77% (14717/19112)
Updating files: 78% (14908/19112)
Updating files: 79% (15099/19112)
Updating files: 80% (15290/19112)
Updating files: 81% (15481/19112)
Updating files: 82% (15672/19112)
Updating files: 83% (15863/19112)
Updating files: 84% (16055/19112)
Updating files: 85% (16246/19112)
Updating files: 86% (16437/19112)
Updating files: 87% (16628/19112)
Updating files: 88% (16819/19112)
Updating files: 89% (17010/19112)
Updating files: 90% (17201/19112)
Updating files: 91% (17392/19112)
Updating files: 92% (17584/19112)
Updating files: 93% (17775/19112)
Updating files: 94% (17966/19112)
Updating files: 95% (18157/19112)
Updating files: 96% (18348/19112)
Updating files: 97% (18539/19112)
Updating files: 98% (18730/19112)
Updating files: 99% (18921/19112)
Updating files: 100% (19112/19112)
Updating files: 100% (19112/19112), done.
HEAD is now at c239a62d58 Merge pull request #29143 from filipeom/opam-publish-smtml.0.18.0
Updating c239a62d58..2243b3772f
Fast-forward
packages/alice/alice.0.3.0/opam | 47 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
create mode 100644 packages/alice/alice.0.3.0/opam
(from ocaml/opam:archlinux-ocaml-5.4@sha256:f58fb434854943bbee390ec710d41f81fa5bcbd9bf38e18e84edd3030ae8d276)
Unable to find image 'ocaml/opam:archlinux-ocaml-5.4@sha256:f58fb434854943bbee390ec710d41f81fa5bcbd9bf38e18e84edd3030ae8d276' locally
docker.io/ocaml/opam@sha256:f58fb434854943bbee390ec710d41f81fa5bcbd9bf38e18e84edd3030ae8d276: Pulling from ocaml/opam
20856ddc4ee5: Pulling fs layer
1fc1d7f7a8aa: Pulling fs layer
422c2b21852f: Pulling fs layer
f6a51478d59b: Pulling fs layer
33d08da7381b: Pulling fs layer
7ff2cef6516f: Pulling fs layer
cac5f36cdcf2: Pulling fs layer
f7367936a4ff: Pulling fs layer
0f775f9b4040: Pulling fs layer
67121c45c12e: Pulling fs layer
ab03a25a5561: Pulling fs layer
4919242ee9f5: Pulling fs layer
2bde80d3d23c: Pulling fs layer
45ed496461fa: Pulling fs layer
e61d343247b6: Pulling fs layer
4f4fb700ef54: Pulling fs layer
5a662aa88b61: Pulling fs layer
0b6b22f514e4: Pulling fs layer
f8febdcadc99: Pulling fs layer
5df9cf626dcd: Pulling fs layer
1449ca64a26d: Pulling fs layer
2e1679b79bab: Pulling fs layer
e34619743411: Pulling fs layer
9a28f75fe375: Pulling fs layer
3a18e07c27f5: Pulling fs layer
20a61cc0811b: Pulling fs layer
676aad68d255: Pulling fs layer
3d3debbfafcd: Pulling fs layer
856a6a25081a: Pulling fs layer
4040f3e85115: Pulling fs layer
be9188a811cb: Pulling fs layer
d6bea3409cc9: Pulling fs layer
5eb47fdd7908: Pulling fs layer
166968ba5f42: Pulling fs layer
2b2148db1b19: Pulling fs layer
84b8c1a5cbba: Pulling fs layer
7df013126b59: Pulling fs layer
6baea1bf0713: Pulling fs layer
6f169dbe7f4b: Pulling fs layer
20856ddc4ee5: Waiting
1fc1d7f7a8aa: Waiting
422c2b21852f: Waiting
f6a51478d59b: Waiting
33d08da7381b: Waiting
7ff2cef6516f: Waiting
cac5f36cdcf2: Waiting
f7367936a4ff: Waiting
0f775f9b4040: Waiting
67121c45c12e: Waiting
ab03a25a5561: Waiting
4919242ee9f5: Waiting
2bde80d3d23c: Waiting
e61d343247b6: Waiting
4f4fb700ef54: Waiting
5a662aa88b61: Waiting
0b6b22f514e4: Waiting
f8febdcadc99: Waiting
5df9cf626dcd: Waiting
1449ca64a26d: Waiting
2e1679b79bab: Waiting
e34619743411: Waiting
676aad68d255: Waiting
3d3debbfafcd: Waiting
856a6a25081a: Waiting
4040f3e85115: Waiting
be9188a811cb: Waiting
d6bea3409cc9: Waiting
5eb47fdd7908: Waiting
166968ba5f42: Waiting
2b2148db1b19: Waiting
3a18e07c27f5: Waiting
9a28f75fe375: Waiting
84b8c1a5cbba: Waiting
7df013126b59: Waiting
6baea1bf0713: Waiting
6f169dbe7f4b: Waiting
20a61cc0811b: Waiting
45ed496461fa: Waiting
1fc1d7f7a8aa: Verifying Checksum
1fc1d7f7a8aa: Download complete
f6a51478d59b: Verifying Checksum
f6a51478d59b: Download complete
33d08da7381b: Download complete
7ff2cef6516f: Verifying Checksum
7ff2cef6516f: Download complete
cac5f36cdcf2: Download complete
422c2b21852f: Verifying Checksum
422c2b21852f: Download complete
f7367936a4ff: Download complete
0f775f9b4040: Download complete
67121c45c12e: Verifying Checksum
67121c45c12e: Download complete
ab03a25a5561: Verifying Checksum
ab03a25a5561: Download complete
2bde80d3d23c: Download complete
4919242ee9f5: Download complete
45ed496461fa: Download complete
e61d343247b6: Verifying Checksum
e61d343247b6: Download complete
5a662aa88b61: Verifying Checksum
5a662aa88b61: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
0b6b22f514e4: Verifying Checksum
0b6b22f514e4: Download complete
f8febdcadc99: Verifying Checksum
f8febdcadc99: Download complete
5df9cf626dcd: Verifying Checksum
5df9cf626dcd: Download complete
1449ca64a26d: Verifying Checksum
1449ca64a26d: Download complete
e34619743411: Verifying Checksum
e34619743411: Download complete
2e1679b79bab: Download complete
9a28f75fe375: Verifying Checksum
9a28f75fe375: Download complete
3a18e07c27f5: Download complete
20a61cc0811b: Verifying Checksum
20a61cc0811b: Download complete
20856ddc4ee5: Verifying Checksum
20856ddc4ee5: Download complete
676aad68d255: Verifying Checksum
676aad68d255: Download complete
3d3debbfafcd: Download complete
4040f3e85115: Verifying Checksum
4040f3e85115: Download complete
d6bea3409cc9: Verifying Checksum
d6bea3409cc9: Download complete
5eb47fdd7908: Download complete
166968ba5f42: Verifying Checksum
166968ba5f42: Download complete
2b2148db1b19: Verifying Checksum
2b2148db1b19: Download complete
856a6a25081a: Verifying Checksum
84b8c1a5cbba: Verifying Checksum
84b8c1a5cbba: Download complete
7df013126b59: Verifying Checksum
7df013126b59: Download complete
6baea1bf0713: Verifying Checksum
6baea1bf0713: Download complete
6f169dbe7f4b: Verifying Checksum
6f169dbe7f4b: Download complete
be9188a811cb: Verifying Checksum
be9188a811cb: Download complete
20856ddc4ee5: Pull complete
1fc1d7f7a8aa: Pull complete
422c2b21852f: Pull complete
f6a51478d59b: Pull complete
33d08da7381b: Pull complete
7ff2cef6516f: Pull complete
cac5f36cdcf2: Pull complete
f7367936a4ff: Pull complete
0f775f9b4040: Pull complete
67121c45c12e: Pull complete
ab03a25a5561: Pull complete
4919242ee9f5: Pull complete
2bde80d3d23c: Pull complete
45ed496461fa: Pull complete
e61d343247b6: Pull complete
4f4fb700ef54: Pull complete
5a662aa88b61: Pull complete
0b6b22f514e4: Pull complete
f8febdcadc99: Pull complete
5df9cf626dcd: Pull complete
1449ca64a26d: Pull complete
2e1679b79bab: Pull complete
e34619743411: Pull complete
9a28f75fe375: Pull complete
3a18e07c27f5: Pull complete
20a61cc0811b: Pull complete
676aad68d255: Pull complete
3d3debbfafcd: Pull complete
856a6a25081a: Pull complete
4040f3e85115: Pull complete
be9188a811cb: Pull complete
d6bea3409cc9: Pull complete
5eb47fdd7908: Pull complete
166968ba5f42: Pull complete
2b2148db1b19: Pull complete
84b8c1a5cbba: Pull complete
7df013126b59: Pull complete
6baea1bf0713: Pull complete
6f169dbe7f4b: Pull complete
Digest: sha256:f58fb434854943bbee390ec710d41f81fa5bcbd9bf38e18e84edd3030ae8d276
Status: Downloaded newer image for ocaml/opam@sha256:f58fb434854943bbee390ec710d41f81fa5bcbd9bf38e18e84edd3030ae8d276
2025-12-29 14:56.40 ---> saved as "07454574bed6dff5fe0b56e446a121e0dffd78864190876461f994ef583dea30"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-29 14:56.40 ---> saved as "392a3a4f4f749c94465bdbe37e6bc31835409c96d2d0ab85da9678a6f4f02298"
/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
2025-12-29 14:57.25 ---> saved as "7b9dcbb4290156dd4012034a81351081d483b118b5957266fdb52215dfab38b4"
/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=arch os-version=20251221.0.472429
# 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
2025-12-29 14:57.26 ---> saved as "41399d74eac1f9d93f029da7f8adc90549e80d8b5f3167096ff4944df6f30fee"
/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-12-29 14:57.40 ---> saved as "cf6be76e46b3fc4feb9b2a724df8b0bf90eb36d323358987f5f28f4c0fc433c7"
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-29 14:58.08 ---> saved as "14de4e8aa89fd315937f22fb4096d83af2a9d5bda34998b660fabaf7d4770a21"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-29 14:58.41 ---> saved as "1f509a45c4aba1648f0f4a74c53bbf372509918eea7d611cc7a3681d770e7e11"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
- core downloading...
- extra downloading...
2025-12-29 14:58.42 ---> saved as "c1ef958d49d0a1dd45e9f2f3a4a603fb65d43b3fafdad08f38b4a31013ca666f"
/home/opam: (run (shell "opam pin add -k version -yn alice.0.3.0 0.3.0"))
alice is now pinned to version 0.3.0
2025-12-29 14:58.43 ---> saved as "e7568021e976c36eb675d1e8cc62725ae7cfd86d0ee624f2dee31f0b56a75f6f"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall alice.0.3.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 \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'alice.0.3.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
alice.0.3.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 17 packages
∗ alice 0.3.0 (pinned)
∗ climate 0.9.0 [required by alice]
∗ dune 3.20.2 [required by alice]
∗ dyn 3.20.2 [required by alice]
∗ fileutils 0.6.6 [required by alice]
∗ ISO8601 0.2.6 [required by toml]
∗ menhir 20250912 [required by toml]
∗ menhirCST 20250912 [required by menhir]
∗ menhirLib 20250912 [required by menhir]
∗ menhirSdk 20250912 [required by menhir]
∗ ordering 3.20.2 [required by dyn]
∗ pp 2.0.0 [required by alice]
∗ re 1.14.0 [required by alice]
∗ sha 1.15.4 [required by alice]
∗ stdlib-shims 0.3.0 [required by sha]
∗ toml 7.1.0 [required by alice]
∗ xdg 3.20.2 [required by alice]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[ERROR] Failed to get sources of alice.0.3.0: Bad checksum
⬇ retrieved climate.0.9.0 (cached)
⬇ retrieved dune.3.20.2, dyn.3.20.2, ordering.3.20.2, xdg.3.20.2 (cached)
⬇ retrieved fileutils.0.6.6 (cached)
⬇ retrieved ISO8601.0.2.6 (cached)
⬇ retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached)
⬇ retrieved pp.2.0.0 (cached)
⬇ retrieved re.1.14.0 (cached)
⬇ retrieved sha.1.15.4 (cached)
⬇ retrieved stdlib-shims.0.3.0 (cached)
⬇ retrieved toml.7.1.0 (cached)
∗ installed dune.3.20.2
∗ installed climate.0.9.0
∗ installed ISO8601.0.2.6
∗ installed menhirCST.20250912
∗ installed menhirLib.20250912
∗ installed menhirSdk.20250912
∗ installed pp.2.0.0
∗ installed stdlib-shims.0.3.0
∗ installed fileutils.0.6.6
∗ installed re.1.14.0
∗ installed ordering.3.20.2
∗ installed xdg.3.20.2
∗ installed sha.1.15.4
∗ installed dyn.3.20.2
∗ installed menhir.20250912
∗ installed toml.7.1.0
#=== ERROR while fetching sources for alice.0.3.0 =============================#
OpamSolution.Fetch_fail("https://github.com/alicecaml/alice/archive/refs/tags/0.2.0.tar.gz (Bad checksum, expected sha256=2f31ff9b6067da1eb582f254d05ce6e8d966587144e2c79cc77d503293593e62)")
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
┌─ The following actions failed
│ ⬇ fetch alice 0.3.0
└─
┌─ The following changes have been performed
│ ∗ install climate 0.9.0
│ ∗ install dune 3.20.2
│ ∗ install dyn 3.20.2
│ ∗ install fileutils 0.6.6
│ ∗ install ISO8601 0.2.6
│ ∗ install menhir 20250912
│ ∗ install menhirCST 20250912
│ ∗ install menhirLib 20250912
│ ∗ install menhirSdk 20250912
│ ∗ install ordering 3.20.2
│ ∗ install pp 2.0.0
│ ∗ install re 1.14.0
│ ∗ install sha 1.15.4
│ ∗ install stdlib-shims 0.3.0
│ ∗ install toml 7.1.0
│ ∗ install xdg 3.20.2
└─
# 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/5.4/.opam-switch/backup/state-20251229145844.export"
"/usr/bin/env" "bash" "-c" "opam reinstall alice.0.3.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 "\"archlinux\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'alice.0.3.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 40
2025-12-29 15:00.52: Job failed: Failed: Build failed
2025-12-29 15:00.52: Log analysis:
2025-12-29 15:00.52: >>>
[ERROR] Failed to get sources of alice.0.3.0: Bad checksum
(score = 25)
2025-12-29 15:00.52: Failed to get sources of alice.0.3.0: Bad checksum