- github
- ocaml
- opam-repository
- 6fb9bc
- distributions,alpine-3.22-ocaml-5.4,caisar.5.0,tests
(not at the head of any monitored branch or PR)
2026-01-23 15:10.11: New job: test caisar.5.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29111/head (6fb9bc721893564c7fcc5360575ff8ff9e76bc1c)
on alpine-3.22-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/29111/head" && git reset --hard 6fb9bc72
git fetch origin master
git merge --no-edit dc02a35b0eaa39fa73e10f2dfa764b490f859db6
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:alpine-3.22-ocaml-5.4@sha256:7d7dd1f15b5b094a8c6ec589b462e81fe5f982c5d6f2ac4af2e5e3dcdc1525e5
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 caisar.5.0 5.0
RUN opam reinstall caisar.5.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" != 'caisar.5.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 caisar.5.0) || true
RUN opam reinstall --with-test --verbose caisar.5.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" != 'caisar.5.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-01-23 15:10.11: Using cache hint "ocaml/opam:alpine-3.22-ocaml-5.4@sha256:7d7dd1f15b5b094a8c6ec589b462e81fe5f982c5d6f2ac4af2e5e3dcdc1525e5-caisar.5.0-6fb9bc721893564c7fcc5360575ff8ff9e76bc1c"
2026-01-23 15:10.11: Using OBuilder spec:
((from ocaml/opam:alpine-3.22-ocaml-5.4@sha256:7d7dd1f15b5b094a8c6ec589b462e81fe5f982c5d6f2ac4af2e5e3dcdc1525e5)
(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 caisar.5.0 5.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall caisar.5.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\" != 'caisar.5.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 caisar.5.0) || true"))
(run (shell "opam reinstall --with-test --verbose caisar.5.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\" != 'caisar.5.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-01-23 15:10.11: Waiting for resource in pool OCluster
2026-01-23 15:10.11: Waiting for worker…
2026-01-23 15:11.11: Got resource from pool OCluster
Building on eumache
All commits already cached
HEAD is now at dc02a35b0e Merge pull request #29268 from ocaml/notty-win-avail-false
Merge made by the 'ort' strategy.
packages/caisar/caisar.5.0/opam | 66 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 66 insertions(+)
create mode 100644 packages/caisar/caisar.5.0/opam
(from ocaml/opam:alpine-3.22-ocaml-5.4@sha256:7d7dd1f15b5b094a8c6ec589b462e81fe5f982c5d6f2ac4af2e5e3dcdc1525e5)
Unable to find image 'ocaml/opam:alpine-3.22-ocaml-5.4@sha256:7d7dd1f15b5b094a8c6ec589b462e81fe5f982c5d6f2ac4af2e5e3dcdc1525e5' locally
docker.io/ocaml/opam@sha256:7d7dd1f15b5b094a8c6ec589b462e81fe5f982c5d6f2ac4af2e5e3dcdc1525e5: Pulling from ocaml/opam
2d35ebdb57d9: Already exists
adfc86c1accf: Already exists
d09377907434: Already exists
a699cf44908b: Already exists
c088e74f1f31: Already exists
7e99e6eaa847: Already exists
db4b89a22482: Already exists
f1f17593da04: Already exists
bb79fbf72548: Already exists
cf69890848e3: Already exists
80e325d6146c: Already exists
66a526c41d4c: Already exists
347d38b311ac: Already exists
984612fde4c4: Already exists
0ac0da982daa: Already exists
209c9bca9b0e: Already exists
3d3356d548ff: Already exists
c072da09f122: Already exists
4f4fb700ef54: Already exists
eff3d806a4a8: Already exists
f5c413f5234b: Already exists
09ddc5430e22: Already exists
2c7c283b1afc: Already exists
4af9a971b585: Already exists
df8d9be3e30d: Already exists
5e55ae3325a7: Already exists
635cb27b4304: Already exists
898fbde8ad42: Already exists
66c0ffc92413: Already exists
c8cca855638d: Already exists
45d2501a899c: Already exists
10b0fe6926c2: Already exists
0a1d7b83a687: Already exists
2c3441915309: Already exists
3d1a575b1bb0: Already exists
6e5fa830b59d: Already exists
72225f5a6449: Already exists
76933219c737: Already exists
e40a4a6bb223: Already exists
57877bdece39: Already exists
7f25b65fc90c: Already exists
83104ccb4b47: Already exists
448ea50ba83e: Already exists
Digest: sha256:7d7dd1f15b5b094a8c6ec589b462e81fe5f982c5d6f2ac4af2e5e3dcdc1525e5
Status: Downloaded newer image for ocaml/opam@sha256:7d7dd1f15b5b094a8c6ec589b462e81fe5f982c5d6f2ac4af2e5e3dcdc1525e5
2026-01-23 15:11.16 ---> using "8e7368a35b514e2f693b7ef97549c85525e506baecfd9cb71dfa7c1285b9bf9e" 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-01-23 15:11.16 ---> using "cdd44be3046c0c3895bcb0fc6efe7ad2a0a2b3d0098a67350f869a8e600674a4" 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 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-01-23 15:11.16 ---> using "0817830b48691f937e4762a0671cd0cf2cf13868c493630137766819531dfc2b" 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 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-01-23 15:11.16 ---> using "4770ed52dbf49d68e5999d3c61ce4e969167174a40f78628953acc739b67e8d5" 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-01-23 15:11.16 ---> using "3766253b348bfaf0ec65564776f1efb9a872d41e4a5bd97e63d9889b02385478" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-23 15:11.22 ---> saved as "30594661d5172af965057c6470ecca61570bd0648369b79b05063c941f52ffbe"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-23 15:11.46 ---> saved as "7617cffa02b646c2c9f90e3fd198daefeba884173f9cf50ae1a58a21a40eccc8"
/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.2-357-g558b13ff6e2 [https://dl-cdn.alpinelinux.org/alpine/v3.22/main]
- v3.22.2-355-g40b35fa3c9f [https://dl-cdn.alpinelinux.org/alpine/v3.22/community]
- v20251224-1994-g1c9e85c518d [https://dl-cdn.alpinelinux.org/alpine/edge/main]
- v20251224-1997-ge6e49301bf5 [https://dl-cdn.alpinelinux.org/alpine/edge/community]
- v20251224-1998-gc62fd11071c [https://dl-cdn.alpinelinux.org/alpine/edge/testing]
- OK: 60757 distinct packages available
2026-01-23 15:11.49 ---> saved as "7cb66ddd787c2fa81edfc6a4191c2611e028a9b78557c350a28dbb06c15aec14"
/home/opam: (run (shell "opam pin add -k version -yn caisar.5.0 5.0"))
caisar is now pinned to version 5.0
2026-01-23 15:11.50 ---> saved as "8c551ebff500f0e95763161018274bc1ded0f95fdb2b599ca461c9323cf8f15c"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall caisar.5.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\" != 'caisar.5.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
caisar.5.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 77 packages
- install astring 0.8.5 [required by fpath]
- install base v0.17.3 [required by caisar]
- install base-bytes base [required by csv, ocplib-endian]
- install base64 3.5.2 [required by ocaml-protoc-plugin]
- install bos 0.2.1 [required by yaml]
- install caisar 5.0 (pinned)
- install cmdliner 2.1.0 [required by caisar]
- install conf-gmp 5 [required by zarith]
- install conf-pkg-config 4 [required by ocaml-protoc-plugin]
- install conf-protoc 4.4.0 [required by ocaml-protoc-plugin]
- install cppo 1.8.0 [required by ocplib-endian, ppx_deriving]
- install csexp 1.5.2 [required by dune-configurator, dune-private-libs]
- install csv 2.4 [required by caisar]
- install ctypes 0.24.0 [required by yaml]
- install dune 3.21.0 [required by caisar]
- install dune-build-info 3.21.0 [required by omd]
- install dune-configurator 3.21.0 [required by base]
- install dune-private-libs 3.21.0 [required by dune-site]
- install dune-site 3.21.0 [required by caisar]
- install dyn 3.21.0 [required by dune-private-libs]
- install fmt 0.11.0 [required by caisar]
- install fpath 0.7.3 [required by caisar]
- install fs-io 3.21.0 [required by stdune]
- install integers 0.7.0 [required by ctypes]
- install jane-street-headers v0.17.0 [required by time_now]
- install jst-config v0.17.0 [required by time_now]
- install logs 0.10.0 [required by caisar]
- install menhir 20250912 [required by why3]
- install menhirCST 20250912 [required by menhir]
- install menhirLib 20250912 [required by caisar]
- install menhirSdk 20250912 [required by menhir]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocaml-protoc-plugin 6.2.0 [required by caisar]
- install ocaml_intrinsics_kernel v0.17.1 [required by base]
- install ocamlbuild 0.16.1 [required by fpath, fmt, logs]
- install ocamlfind 1.9.8 [required by ppx_deriving, fpath, fmt, etc.]
- install ocamlgraph 2.2.0 [required by caisar]
- install ocplib-endian 1.2 [required by caisar]
- install omd 2.0.0~alpha4 [required by ocaml-protoc-plugin]
- install ordering 3.21.0 [required by dyn, stdune]
- install pp 2.0.0 [required by dune-private-libs]
- install ppx_assert v0.17.0 [required by jst-config]
- install ppx_base v0.17.0 [required by time_now]
- install ppx_cold v0.17.0 [required by ppx_base]
- install ppx_compare v0.17.0 [required by ppx_base]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.1.1 [required by caisar]
- install ppx_deriving_jsonschema 0.0.4 [required by caisar]
- install ppx_deriving_yaml 0.4.1 [required by caisar]
- install ppx_deriving_yojson 3.10.0 [required by caisar]
- install ppx_enumerate v0.17.0 [required by ppx_base]
- install ppx_expect v0.17.3 [required by ocaml-protoc-plugin]
- install ppx_globalize v0.17.2 [required by ppx_base]
- install ppx_hash v0.17.0 [required by ppx_base]
- install ppx_here v0.17.0 [required by ppx_expect]
- install ppx_inline_test v0.17.1 [required by caisar]
- install ppx_optcomp v0.17.1 [required by time_now]
- install ppx_sexp_conv v0.17.1 [required by why3]
- install ppxlib 0.37.0 [required by ppx_deriving_yaml, ppx_deriving, ppx_deriving_jsonschema, ppx_deriving_yojson]
- install ppxlib_jane v0.17.4 [required by ppx_globalize, ppx_enumerate, ppx_hash]
- install ptime 1.2.0 [required by ocaml-protoc-plugin]
- install re 1.14.0 [required by caisar]
- install rresult 0.7.0 [required by bos]
- install sexplib0 v0.17.0 [required by base]
- install stdio v0.17.0 [required by caisar]
- install stdlib-shims 0.3.0 [required by ppxlib, integers]
- install stdune 3.21.0 [required by dune-private-libs]
- install time_now v0.17.0 [required by ppx_inline_test]
- install top-closure 3.21.0 [required by stdune]
- install topkg 1.1.1 [required by fpath, fmt, logs]
- install uucp 17.0.0 [required by omd]
- install uunf 17.0.0 [required by omd]
- install uutf 1.0.4 [required by omd]
- install why3 1.8.2 [required by caisar]
- install yaml 3.2.0 [required by caisar]
- install yojson 3.0.0 [required by caisar]
- install zarith 1.14 [required by caisar]
The following system packages will first need to be installed:
gmp-dev protobuf protobuf-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" "gmp-dev" "protobuf" "protobuf-dev"
- (1/113) Installing libgmpxx (6.3.0-r3)
- (2/113) Installing gmp-dev (6.3.0-r3)
- (3/113) Installing abseil-cpp-city (20240722.1-r1)
- (4/113) Installing abseil-cpp-low-level-hash (20240722.1-r1)
- (5/113) Installing abseil-cpp-hash (20240722.1-r1)
- (6/113) Installing abseil-cpp-raw-logging-internal (20240722.1-r1)
- (7/113) Installing abseil-cpp-log-internal-globals (20240722.1-r1)
- (8/113) Installing abseil-cpp-time-zone (20240722.1-r1)
- (9/113) Installing abseil-cpp-log-initialize (20240722.1-r1)
- (10/113) Installing abseil-cpp-spinlock-wait (20240722.1-r1)
- (11/113) Installing abseil-cpp-base (20240722.1-r1)
- (12/113) Installing abseil-cpp-debugging-internal (20240722.1-r1)
- (13/113) Installing abseil-cpp-stacktrace (20240722.1-r1)
- (14/113) Installing abseil-cpp-symbolize (20240722.1-r1)
- (15/113) Installing abseil-cpp-examine-stack (20240722.1-r1)
- (16/113) Installing abseil-cpp-log-globals (20240722.1-r1)
- (17/113) Installing abseil-cpp-int128 (20240722.1-r1)
- (18/113) Installing abseil-cpp-strings-internal (20240722.1-r1)
- (19/113) Installing abseil-cpp-strings (20240722.1-r1)
- (20/113) Installing abseil-cpp-str-format-internal (20240722.1-r1)
- (21/113) Installing abseil-cpp-time (20240722.1-r1)
- (22/113) Installing abseil-cpp-log-internal-format (20240722.1-r1)
- (23/113) Installing abseil-cpp-log-sink (20240722.1-r1)
- (24/113) Installing abseil-cpp-kernel-timeout-internal (20240722.1-r1)
- (25/113) Installing abseil-cpp-malloc-internal (20240722.1-r1)
- (26/113) Installing abseil-cpp-synchronization (20240722.1-r1)
- (27/113) Installing abseil-cpp-log-internal-log-sink-set (20240722.1-r1)
- (28/113) Installing abseil-cpp-log-internal-proto (20240722.1-r1)
- (29/113) Installing abseil-cpp-strerror (20240722.1-r1)
- (30/113) Installing abseil-cpp-log-internal-message (20240722.1-r1)
- (31/113) Installing abseil-cpp-log-internal-nullguard (20240722.1-r1)
- (32/113) Installing abseil-cpp-raw-hash-set (20240722.1-r1)
- (33/113) Installing abseil-cpp-die-if-null (20240722.1-r1)
- (34/113) Installing abseil-cpp-log-internal-check-op (20240722.1-r1)
- (35/113) Installing abseil-cpp-log-internal-conditions (20240722.1-r1)
- (36/113) Installing abseil-cpp-crc-internal (20240722.1-r1)
- (37/113) Installing abseil-cpp-crc32c (20240722.1-r1)
- (38/113) Installing abseil-cpp-crc-cord-state (20240722.1-r1)
- (39/113) Installing abseil-cpp-cord-internal (20240722.1-r1)
- (40/113) Installing abseil-cpp-exponential-biased (20240722.1-r1)
- (41/113) Installing abseil-cpp-cordz-functions (20240722.1-r1)
- (42/113) Installing abseil-cpp-cordz-handle (20240722.1-r1)
- (43/113) Installing abseil-cpp-cordz-info (20240722.1-r1)
- (44/113) Installing abseil-cpp-cord (20240722.1-r1)
- (45/113) Installing abseil-cpp-status (20240722.1-r1)
- (46/113) Installing abseil-cpp-statusor (20240722.1-r1)
- (47/113) Installing abseil-cpp-throw-delegate (20240722.1-r1)
- (48/113) Installing libprotobuf (29.4-r0)
- (49/113) Installing libprotoc (29.4-r0)
- (50/113) Installing protoc (29.4-r0)
- (51/113) Installing libprotobuf-lite (29.4-r0)
- (52/113) Installing protobuf (29.4-r0)
- (53/113) Installing zlib-dev (1.3.1-r2)
- (54/113) Installing linux-headers (6.14.2-r0)
- (55/113) Installing abseil-cpp-atomic-hook-test-helper (20240722.1-r1)
- (56/113) Installing abseil-cpp-bad-any-cast-impl (20240722.1-r1)
- (57/113) Installing abseil-cpp-bad-optional-access (20240722.1-r1)
- (58/113) Installing abseil-cpp-bad-variant-access (20240722.1-r1)
- (59/113) Installing abseil-cpp-civil-time (20240722.1-r1)
- (60/113) Installing abseil-cpp-cordz-sample-token (20240722.1-r1)
- (61/113) Installing abseil-cpp-crc-cpu-detect (20240722.1-r1)
- (62/113) Installing gtest (1.16.0-r0)
- (63/113) Installing abseil-cpp (20240722.1-r1)
- (64/113) Installing abseil-cpp-demangle-internal (20240722.1-r1)
- (65/113) Installing abseil-cpp-exception-safety-testing (20240722.1-r1)
- (66/113) Installing abseil-cpp-failure-signal-handler (20240722.1-r1)
- (67/113) Installing abseil-cpp-flags-commandlineflag-internal (20240722.1-r1)
- (68/113) Installing abseil-cpp-flags-commandlineflag (20240722.1-r1)
- (69/113) Installing abseil-cpp-flags-program-name (20240722.1-r1)
- (70/113) Installing abseil-cpp-flags-config (20240722.1-r1)
- (71/113) Installing abseil-cpp-flags-internal (20240722.1-r1)
- (72/113) Installing abseil-cpp-flags-marshalling (20240722.1-r1)
- (73/113) Installing abseil-cpp-flags-private-handle-accessor (20240722.1-r1)
- (74/113) Installing abseil-cpp-flags-reflection (20240722.1-r1)
- (75/113) Installing abseil-cpp-flags-usage (20240722.1-r1)
- (76/113) Installing abseil-cpp-flags-usage-internal (20240722.1-r1)
- (77/113) Installing abseil-cpp-flags-parse (20240722.1-r1)
- (78/113) Installing abseil-cpp-graphcycles-internal (20240722.1-r1)
- (79/113) Installing abseil-cpp-hash-generator-testing (20240722.1-r1)
- (80/113) Installing abseil-cpp-hashtablez-sampler (20240722.1-r1)
- (81/113) Installing abseil-cpp-leak-check (20240722.1-r1)
- (82/113) Installing abseil-cpp-log-entry (20240722.1-r1)
- (83/113) Installing abseil-cpp-log-internal-fnmatch (20240722.1-r1)
- (84/113) Installing abseil-cpp-vlog-config-internal (20240722.1-r1)
- (85/113) Installing abseil-cpp-log-flags (20240722.1-r1)
- (86/113) Installing abseil-cpp-log-severity (20240722.1-r1)
- (87/113) Installing abseil-cpp-log-internal-test-actions (20240722.1-r1)
- (88/113) Installing abseil-cpp-log-internal-test-helpers (20240722.1-r1)
- (89/113) Installing abseil-cpp-log-internal-test-matchers (20240722.1-r1)
- (90/113) Installing abseil-cpp-per-thread-sem-test-common (20240722.1-r1)
- (91/113) Installing abseil-cpp-periodic-sampler (20240722.1-r1)
- (92/113) Installing abseil-cpp-pow10-helper (20240722.1-r1)
- (93/113) Installing abseil-cpp-random-distributions (20240722.1-r1)
- (94/113) Installing abseil-cpp-random-internal-distribution-test-util (20240722.1-r1)
- (95/113) Installing abseil-cpp-random-internal-platform (20240722.1-r1)
- (96/113) Installing abseil-cpp-random-internal-randen-hwaes (20240722.1-r1)
- (97/113) Installing abseil-cpp-random-internal-randen-hwaes-impl (20240722.1-r1)
- (98/113) Installing abseil-cpp-random-internal-randen-slow (20240722.1-r1)
- (99/113) Installing abseil-cpp-random-internal-randen (20240722.1-r1)
- (100/113) Installing abseil-cpp-random-internal-seed-material (20240722.1-r1)
- (101/113) Installing abseil-cpp-random-seed-gen-exception (20240722.1-r1)
- (102/113) Installing abseil-cpp-random-internal-pool-urbg (20240722.1-r1)
- (103/113) Installing abseil-cpp-random-seed-sequences (20240722.1-r1)
- (104/113) Installing gmock (1.16.0-r0)
- (105/113) Installing abseil-cpp-scoped-mock-log (20240722.1-r1)
- (106/113) Installing abseil-cpp-scoped-set-env (20240722.1-r1)
- (107/113) Installing abseil-cpp-spinlock-test-common (20240722.1-r1)
- (108/113) Installing abseil-cpp-stack-consumption (20240722.1-r1)
- (109/113) Installing abseil-cpp-string-view (20240722.1-r1)
- (110/113) Installing abseil-cpp-test-instance-tracker (20240722.1-r1)
- (111/113) Installing abseil-cpp-time-internal-test-util (20240722.1-r1)
- (112/113) Installing abseil-cpp-dev (20240722.1-r1)
- (113/113) Installing protobuf-dev (29.4-r0)
- Executing busybox-1.37.0-r20.trigger
- OK: 334 MiB in 216 packages
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (cached)
-> retrieved base.v0.17.3 (cached)
-> retrieved base64.3.5.2 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved caisar.5.0 (https://git.frama-c.com/api/v4/projects/1082/packages/generic/caisar/5.0/caisar-5.0.tbz)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved csv.2.4 (cached)
-> retrieved ctypes.0.24.0 (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> installed conf-protoc.4.4.0
-> retrieved dune.3.21.0, dune-build-info.3.21.0, dune-configurator.3.21.0, dune-private-libs.3.21.0, dune-site.3.21.0, dyn.3.21.0, fs-io.3.21.0, ordering.3.21.0, stdune.3.21.0, top-closure.3.21.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved jane-street-headers.v0.17.0 (cached)
-> retrieved jst-config.v0.17.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> installed cmdliner.2.1.0
-> retrieved ocaml-protoc-plugin.6.2.0 (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocamlgraph.2.2.0 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved omd.2.0.0~alpha4 (cached)
-> retrieved pp.2.0.0 (cached)
-> retrieved ppx_assert.v0.17.0 (cached)
-> retrieved ppx_base.v0.17.0 (cached)
-> retrieved ppx_cold.v0.17.0 (cached)
-> retrieved ppx_compare.v0.17.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.1.1 (cached)
-> retrieved ppx_deriving_jsonschema.0.0.4 (cached)
-> retrieved ppx_deriving_yaml.0.4.1 (cached)
-> retrieved ppx_deriving_yojson.3.10.0 (cached)
-> retrieved ppx_enumerate.v0.17.0 (cached)
-> retrieved ppx_expect.v0.17.3 (cached)
-> retrieved ppx_globalize.v0.17.2 (cached)
-> retrieved ppx_hash.v0.17.0 (cached)
-> retrieved ppx_here.v0.17.0 (cached)
-> retrieved ppx_inline_test.v0.17.1 (cached)
-> retrieved ppx_optcomp.v0.17.1 (cached)
-> retrieved ppx_sexp_conv.v0.17.1 (cached)
-> retrieved ppxlib.0.37.0 (cached)
-> retrieved ppxlib_jane.v0.17.4 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdio.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved time_now.v0.17.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uucp.17.0.0 (cached)
-> retrieved uunf.17.0.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved why3.1.8.2 (cached)
-> retrieved yaml.3.2.0 (cached)
-> retrieved yojson.3.0.0 (cached)
-> retrieved zarith.1.14 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed logs.0.10.0
-> installed fpath.0.7.3
-> installed bos.0.2.1
-> installed uunf.17.0.0
-> installed dune.3.21.0
-> installed base64.3.5.2
-> installed cppo.1.8.0
-> installed csexp.1.5.2
-> installed csv.2.4
-> installed jane-street-headers.v0.17.0
-> installed menhirCST.20250912
-> installed menhirLib.20250912
-> installed menhirSdk.20250912
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ocamlgraph.2.2.0
-> installed pp.2.0.0
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed yojson.3.0.0
-> installed ocplib-endian.1.2
-> installed integers.0.7.0
-> installed ordering.3.21.0
-> installed dune-build-info.3.21.0
-> installed fs-io.3.21.0
-> installed top-closure.3.21.0
-> installed dune-configurator.3.21.0
-> installed dyn.3.21.0
-> installed ctypes.0.24.0
-> installed stdune.3.21.0
-> installed base.v0.17.3
-> installed dune-private-libs.3.21.0
-> installed stdio.v0.17.0
-> installed uucp.17.0.0
-> installed yaml.3.2.0
-> installed dune-site.3.21.0
-> installed menhir.20250912
-> installed omd.2.0.0~alpha4
-> installed ppxlib.0.37.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_optcomp.v0.17.1
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_deriving_jsonschema.0.0.4
-> installed ppx_deriving_yaml.0.4.1
-> installed ppx_globalize.v0.17.2
-> installed ppx_enumerate.v0.17.0
-> installed ppx_deriving.6.1.1
-> installed ppx_compare.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_deriving_yojson.3.10.0
-> installed ppx_hash.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_base.v0.17.0
-> installed jst-config.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed ppx_expect.v0.17.3
-> installed ocaml-protoc-plugin.6.2.0
-> installed why3.1.8.2
-> installed caisar.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-23 15:15.57 ---> saved as "64ba9e1771cc206120ab57cceb401c5633220e078f7ed68fa24806bed2d085b4"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test caisar.5.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile caisar 5.0 (pinned)
=== install 3 packages
- install conf-jq 1 [required by caisar]
- install conf-python-3 9.0.0 [required by caisar]
- install conf-texlive 2 [required by caisar]
The following system packages will first need to be installed:
jq texlive
<><> 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" "jq" "texlive"
- (1/44) Installing oniguruma (6.9.10-r0)
- (2/44) Installing jq (1.8.1-r0)
- (3/44) Installing libice (1.1.2-r0)
- (4/44) Installing libuuid (2.41-r9)
- (5/44) Installing libsm (1.2.5-r0)
- (6/44) Installing libxt (1.3.1-r0)
- (7/44) Installing dbus-libs (1.16.2-r1)
- (8/44) Installing libintl (0.24.1-r0)
- (9/44) Installing avahi-libs (0.8-r21)
- (10/44) Installing nettle (3.10.1-r0)
- (11/44) Installing libtasn1 (4.21.0-r0)
- (12/44) Installing p11-kit (0.25.5-r2)
- (13/44) Installing gnutls (3.8.8-r0)
- (14/44) Installing cups-libs (2.4.11-r0)
- (15/44) Installing libpng (1.6.54-r0)
- (16/44) Installing freetype (2.13.3-r0)
- (17/44) Installing fontconfig (2.15.0-r3)
- (18/44) Installing jbig2dec (0.20-r0)
- (19/44) Installing libjpeg-turbo (3.1.0-r0)
- (20/44) Installing lcms2 (2.16-r0)
- (21/44) Installing openjpeg (2.5.3-r0)
- (22/44) Installing libsharpyuv (1.5.0-r0)
- (23/44) Installing libwebp (1.5.0-r0)
- (24/44) Installing tiff (4.7.1-r0)
- (25/44) Installing ghostscript (10.05.1-r0)
- (26/44) Installing perl (5.40.3-r0)
- (27/44) Installing perl-error (0.17030-r0)
- (28/44) Installing perl-git (2.49.1-r0)
- (29/44) Installing git-perl (2.49.1-r0)
- (30/44) Installing perl-file-which (1.27-r1)
- (31/44) Installing perl-file-homedir (1.006-r2)
- (32/44) Installing perl-mime-charset (1.013.1-r1)
- (33/44) Installing perl-unicode-linebreak (2019.001-r9)
- (34/44) Installing perl-yaml-tiny (1.76-r0)
- (35/44) Installing texmf-dist (2024.0-r7)
- (36/44) Installing texmf-dist-latex (2024.0-r7)
- (37/44) Installing libxext (1.3.6-r2)
- (38/44) Installing libxrender (0.9.12-r0)
- (39/44) Installing pixman (0.46.4-r0)
- (40/44) Installing cairo (1.18.4-r0)
- (41/44) 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.
- *
- (42/44) Installing icu-libs (76.1-r1)
- (43/44) Installing libsynctex (20240210.69778-r10)
- (44/44) Installing texlive (20240210.69778-r10)
- Executing busybox-1.37.0-r20.trigger
- Executing fontconfig-2.15.0-r3.trigger
- Executing texlive-20240210.69778-r10.trigger
- --> updating language config [OK]
- --> mktexlsr
- [OK]
- --> updmap-sys --syncwithtrees
- [OK]
- --> updmap-sys [OK]
- --> fmtutil-sys --all
- Note: Trying to generate all formats regardless of what is installed.
- Hence, unless texlive-full is installed, some formats will fail
- to generate.
- fmtutil [INFO]: disabled formats: 3
- fmtutil [INFO]: successfully rebuilt formats: 12
- fmtutil [INFO]: failed to build: 42 (luahbtex/luahbtex euptex/euptex luatex/luatex hitex/hitex luajithbtex/luajithbtex luajittex/luajittex xetex/xetex hitex/hilatex euptex/platex-dev pdftex/mex xetex/cont-en pdftex/cont-en xetex/xelatex-dev pdftex/xmltex euptex/uplatex-dev euptex/eptex luahbtex/lualatex-dev pdftex/pdfmex pdftex/jadetex pdftex/mltex luatex/optex tex/lollipop pdftex/csplain luatex/dvilualatex-dev luatex/luacsplain pdftex/eplain pdftex/texsis luatex/dviluatex euptex/ptex xetex/pdfcsplain luatex/pdfcsplain pdftex/pdfcsplain euptex/uplatex pdftex/pdfxmltex pdftex/pdfjadetex luatex/dvilualatex xetex/xelatex euptex/uptex pdftex/amstex euptex/platex pdftex/utf8mex luahbtex/lualatex)
- fmtutil [INFO]: total formats: 57
- fmtutil [INFO]: exiting with status 42
- OK: 510 MiB in 260 packages
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-python-3.9.0.0 (https://opam.ocaml.org/cache)
-> installed conf-jq.1
-> installed conf-texlive.2
-> removed caisar.5.0
-> installed conf-python-3.9.0.0
-> installed caisar.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-23 15:19.41 ---> saved as "881ccf7664000c8ca135e6ca98d44a50d1f53939ee2aa1a02fbf1dbf7094882e"
/home/opam: (run (shell "opam reinstall --with-test --verbose caisar.5.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\" != 'caisar.5.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 caisar 5.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [caisar: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "caisar" "-j" "71" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/caisar.5.0)
Processing 2/4: [caisar: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "caisar" "--create-install-files" "caisar" (CWD=/home/opam/.opam/5.4/.opam-switch/build/caisar.5.0)
-> compiled caisar.5.0
-> removed caisar.5.0
-> installed caisar.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-23 15:20.18 ---> saved as "fd3b63540f519a2e2e94a4524c0ef52ddfdf684be6e6b5aea84b733b091d539a"
Job succeeded
2026-01-23 15:20.25: Job succeeded