Build:
- 0
2026-01-28 22:49.01: New job: test yultracer.0.2.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29245/head (c113cd45bf3d4cc61f6655b189eabd91654da253)
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/29245/head" && git reset --hard c113cd45
git fetch origin master
git merge --no-edit 40cfb8f093037b52bf14a3194ba499363355facb
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-5.4@sha256:2e9122d7b620a68432b52d6c3d8efbe2cfa3d76d7c06c35acea1d27d1b9b18be
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 yultracer.0.2.0 0.2.0
RUN opam reinstall yultracer.0.2.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" != 'yultracer.0.2.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 yultracer.0.2.0) || true
RUN opam reinstall --with-test --verbose yultracer.0.2.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" != 'yultracer.0.2.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-28 22:49.01: Using cache hint "ocaml/opam:archlinux-ocaml-5.4@sha256:2e9122d7b620a68432b52d6c3d8efbe2cfa3d76d7c06c35acea1d27d1b9b18be-yultracer.0.2.0-c113cd45bf3d4cc61f6655b189eabd91654da253"
2026-01-28 22:49.01: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-5.4@sha256:2e9122d7b620a68432b52d6c3d8efbe2cfa3d76d7c06c35acea1d27d1b9b18be)
(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 yultracer.0.2.0 0.2.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall yultracer.0.2.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\" != 'yultracer.0.2.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 yultracer.0.2.0) || true"))
(run (shell "opam reinstall --with-test --verbose yultracer.0.2.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\" != 'yultracer.0.2.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-28 22:49.01: Waiting for resource in pool OCluster
2026-01-28 23:11.51: Waiting for worker…
2026-01-28 23:22.51: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
Updating files: 67% (13004/19289)
Updating files: 68% (13117/19289)
Updating files: 69% (13310/19289)
Updating files: 70% (13503/19289)
Updating files: 71% (13696/19289)
Updating files: 72% (13889/19289)
Updating files: 73% (14081/19289)
Updating files: 74% (14274/19289)
Updating files: 75% (14467/19289)
Updating files: 76% (14660/19289)
Updating files: 77% (14853/19289)
Updating files: 78% (15046/19289)
Updating files: 79% (15239/19289)
Updating files: 80% (15432/19289)
Updating files: 81% (15625/19289)
Updating files: 82% (15817/19289)
Updating files: 83% (16010/19289)
Updating files: 84% (16203/19289)
Updating files: 85% (16396/19289)
Updating files: 86% (16589/19289)
Updating files: 87% (16782/19289)
Updating files: 88% (16975/19289)
Updating files: 89% (17168/19289)
Updating files: 90% (17361/19289)
Updating files: 91% (17553/19289)
Updating files: 92% (17746/19289)
Updating files: 93% (17939/19289)
Updating files: 94% (18132/19289)
Updating files: 95% (18325/19289)
Updating files: 96% (18518/19289)
Updating files: 97% (18711/19289)
Updating files: 98% (18904/19289)
Updating files: 99% (19097/19289)
Updating files: 100% (19289/19289)
Updating files: 100% (19289/19289), done.
HEAD is now at 40cfb8f093 Merge pull request #29304 from jmid/ocamlformat-mlx-lib-menhir-bounds
Merge made by the 'ort' strategy.
packages/yultracer/yultracer.0.2.0/opam | 36 +++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
create mode 100644 packages/yultracer/yultracer.0.2.0/opam
(from ocaml/opam:archlinux-ocaml-5.4@sha256:2e9122d7b620a68432b52d6c3d8efbe2cfa3d76d7c06c35acea1d27d1b9b18be)
2026-01-28 23:23.28 ---> saved as "e9f93d460c80ee3579bf1131cb912687594e6d201f2dd6814c04cd3b7616e8af"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-28 23:23.28 ---> saved as "f28417984800cb704f4db824854a0fdfd54068dc8d70ab4ef997bb6a93a2980f"
/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
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-28 23:23.50 ---> saved as "6fc1a85a172cfd0fcecb0b5fb65cd729af4abffbc159b767305f094fdfa2a83d"
/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=20260118.0.482696
# 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
2026-01-28 23:23.50 ---> saved as "2de4dd81c2712516e082d8a8b8c2eac291d918d86c2f81bd2b36acb2d7913104"
/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-28 23:24.04 ---> saved as "e72c7e650272ca7a309e1f0333497cb92275914e0e466d4377a2c0e18fbb5090"
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-28 23:24.10 ---> saved as "f6d01790de77a07361b51dcc3d1512a3ae7dd10006e0b86ba8740b00afcbd75f"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-28 23:24.29 ---> saved as "691f496df8fcf5ff0ad88621e1b43ba6b7a84a697f26f4c46a3d9730fef8fd27"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
- core downloading...
- extra downloading...
2026-01-28 23:24.30 ---> saved as "1323244dff062ad6879d1a6091b28444da4dd0a036d5c62bba865585f866c24c"
/home/opam: (run (shell "opam pin add -k version -yn yultracer.0.2.0 0.2.0"))
yultracer is now pinned to version 0.2.0
2026-01-28 23:24.31 ---> saved as "1d6a22850cfb4a4fe72894da550e4a400015aad0db98792d80b4702565b4b30b"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall yultracer.0.2.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\" != 'yultracer.0.2.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
yultracer.0.2.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
∗ conf-c++ 1.0 [required by z3]
∗ conf-gmp 5 [required by zarith]
∗ conf-pkg-config 4 [required by zarith]
∗ conf-python-3 9.0.0 [required by z3]
∗ dune 3.21.0 [required by yultracer]
∗ menhir 20250912 [required by yultracer]
∗ menhirCST 20250912 [required by menhir]
∗ menhirLib 20250912 [required by menhir]
∗ menhirSdk 20250912 [required by menhir]
∗ ocamlfind 1.9.8 [required by z3]
∗ yojson 3.0.0 [required by yultracer]
∗ yultracer 0.2.0 (pinned)
∗ z3 4.15.2 [required by yultracer]
∗ zarith 1.14 [required by z3]
The following system packages will first need to be installed:
pkgconf python
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run pacman to install them (may need root/sudo access)
2. Display the recommended pacman 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/sbin/sudo "pacman" "-Su" "--noconfirm" "pkgconf" "python"
- :: Starting full system upgrade...
- resolving dependencies...
- looking for conflicting packages...
-
- Package (9) Old Version New Version Net Change Download Size
-
- core/cryptsetup 2.8.3-1 2.8.4-1 0.00 MiB 0.79 MiB
- core/curl 8.18.0-2 8.18.0-3 0.00 MiB 1.23 MiB
- core/glibc 2.42+r51+gcbf39c26b258-1 2.42+r51+gcbf39c26b258-2 -1.28 MiB 10.01 MiB
- core/jansson 2.14.1-1 2.15.0-1 0.01 MiB 0.09 MiB
- core/mpdecimal 4.0.1-1 0.33 MiB 0.10 MiB
- core/openssl 3.6.0-1 3.6.1-1 -0.16 MiB 5.35 MiB
- core/pam 1.7.1-1 1.7.2-2 0.00 MiB 0.58 MiB
- core/pkgconf 2.5.1-1 0.20 MiB 0.07 MiB
- core/python 3.14.2-2 72.04 MiB 13.00 MiB
-
- Total Download Size: 31.23 MiB
- Total Installed Size: 141.51 MiB
- Net Upgrade Size: 71.14 MiB
-
- :: Proceed with installation? [Y/n]
- :: Retrieving packages...
- python-3.14.2-2-x86_64 downloading...
- glibc-2.42+r51+gcbf39c26b258-2-x86_64 downloading...
- openssl-3.6.1-1-x86_64 downloading...
- curl-8.18.0-3-x86_64 downloading...
- cryptsetup-2.8.4-1-x86_64 downloading...
- pam-1.7.2-2-x86_64 downloading...
- mpdecimal-4.0.1-1-x86_64 downloading...
- jansson-2.15.0-1-x86_64 downloading...
- pkgconf-2.5.1-1-x86_64 downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- upgrading glibc...
- Generating locales...
- Generation complete.
- installing pkgconf...
- upgrading openssl...
- installing mpdecimal...
- installing python...
- Optional dependencies for python
- python-setuptools: for building Python packages using tooling that is usually bundled with Python
- python-pip: for installing Python packages using tooling that is usually bundled with Python
- python-pipx: for installing Python software not packaged on Arch Linux
- sqlite: for a default database integration [installed]
- xz: for lzma [installed]
- tk: for tkinter
- upgrading cryptsetup...
- upgrading pam...
- upgrading curl...
- upgrading jansson...
- :: Running post-transaction hooks...
- (1/4) Creating temporary files...
- /usr/lib/tmpfiles.d/journal-nocow.conf:26: Failed to resolve specifier: uninitialized /etc/ detected, skipping.
- All rules containing unresolvable specifiers will be skipped.
- (2/4) Reloading system manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (3/4) Restarting marked services...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (4/4) Arming ConditionNeedsUpdate...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved conf-gmp.5 (cached)
⬇ retrieved conf-python-3.9.0.0 (cached)
∗ installed conf-c++.1.0
∗ installed conf-gmp.5
∗ installed conf-pkg-config.4
∗ installed conf-python-3.9.0.0
⬇ retrieved dune.3.21.0 (cached)
⬇ retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached)
⬇ retrieved ocamlfind.1.9.8 (cached)
⬇ retrieved yojson.3.0.0 (cached)
⬇ retrieved yultracer.0.2.0 (cached)
⬇ retrieved z3.4.15.2 (cached)
⬇ retrieved zarith.1.14 (cached)
∗ installed ocamlfind.1.9.8
∗ installed zarith.1.14
∗ installed dune.3.21.0
∗ installed menhirCST.20250912
∗ installed menhirSdk.20250912
∗ installed menhirLib.20250912
∗ installed yojson.3.0.0
∗ installed menhir.20250912
∗ installed z3.4.15.2
∗ installed yultracer.0.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-29 00:43.26 ---> saved as "4260a36e495b73512f4c45fc05d6f0142b044b9cbca4502b315343f09aa6fd9b"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test yultracer.0.2.0) || true"))
The following actions will be performed:
=== recompile 1 package
↻ yultracer 0.2.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⊘ removed yultracer.0.2.0
∗ installed yultracer.0.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-29 00:50.04 ---> saved as "18b956f7a1d0c281b6739363fbbd2b4d0c808e9972089ec7b92ad018dc74011e"
/home/opam: (run (shell "opam reinstall --with-test --verbose yultracer.0.2.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\" != 'yultracer.0.2.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
↻ yultracer 0.2.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [yultracer: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "yultracer" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/yultracer.0.2.0)
- (cd _build/default && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens lib/yul_parser/tokens.mly lib/yul_parser/parser.mly --base lib/yul_parser/parser --infer-write-query lib/yul_parser/parser__mock.ml.mock)
- File "lib/yul_parser/tokens.mly", line 9, characters 16-25:
- Warning: the token SIGNATURE is unused.
- (cd _build/default && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens lib/yul_parser/tokens.mly lib/yul_parser/parser.mly --base lib/yul_parser/parser --infer-read-reply lib/yul_parser/parser__mock.mli.inferred)
- Warning: one state has reduce/reduce conflicts.
- Warning: 19 reduce/reduce conflicts were arbitrarily resolved.
- File "lib/yul_parser/parser.mly", line 117, characters 4-51:
- Warning: production sig_block -> LBRACE statements RBRACE is never reduced.
- Warning: in total, 1 production is never reduced.
λ compiled yultracer.0.2.0
⊘ removed yultracer.0.2.0
∗ installed yultracer.0.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-29 00:50.14 ---> saved as "af982611acd6f4a8455c5a5c49e87ba57bc3c6a9196bb2423fd4bbcc31da58bc"
Job succeeded
2026-01-29 00:50.27: Job succeeded