(for PR #29222)
2026-01-19 20:51.41: New job: test morbig.0.10.4, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29222/head (ad79ca9644feb512edcb7b55f7521e075b88d976)
on archlinux-ocaml-4.14/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/29222/head" && git reset --hard ad79ca96
git fetch origin master
git merge --no-edit 1c997ec9e6ebc6ea699547000cb8dfa44e52efaa
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-4.14@sha256:dcfa7c735edf3ea659d1e81aecc3320af03af28871311c0cf414ddc14c4c2434
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 morbig.0.10.4 0.10.4
RUN opam reinstall morbig.0.10.4; \
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" != 'morbig.0.10.4' && 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 morbig.0.10.4) || true
RUN opam reinstall --with-test --verbose morbig.0.10.4; \
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" != 'morbig.0.10.4' && 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-19 20:51.41: Using cache hint "ocaml/opam:archlinux-ocaml-4.14@sha256:dcfa7c735edf3ea659d1e81aecc3320af03af28871311c0cf414ddc14c4c2434-morbig.0.10.4-ad79ca9644feb512edcb7b55f7521e075b88d976"
2026-01-19 20:51.41: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-4.14@sha256:dcfa7c735edf3ea659d1e81aecc3320af03af28871311c0cf414ddc14c4c2434)
(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 morbig.0.10.4 0.10.4"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall morbig.0.10.4;\
\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\" != 'morbig.0.10.4' && 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 morbig.0.10.4) || true"))
(run (shell "opam reinstall --with-test --verbose morbig.0.10.4;\
\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\" != 'morbig.0.10.4' && 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-19 20:51.41: Waiting for resource in pool OCluster
2026-01-19 23:33.41: Waiting for worker…
2026-01-19 23:37.59: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 1c997ec9e6 Merge pull request #29241 from polytypic/release-multicore-magic-2.3.2
Updating 1c997ec9e6..ad79ca9644
Fast-forward
packages/archetype/archetype.0.1.10/opam | 2 +-
packages/archetype/archetype.0.1.11/opam | 2 +-
packages/archetype/archetype.0.1.12/opam | 2 +-
packages/archetype/archetype.0.1.13/opam | 2 +-
packages/archetype/archetype.0.1.14/opam | 2 +-
packages/archetype/archetype.0.1.3/opam | 2 +-
packages/archetype/archetype.0.1.4/opam | 2 +-
packages/archetype/archetype.0.1.5/opam | 2 +-
packages/archetype/archetype.0.1.6/opam | 2 +-
packages/archetype/archetype.0.1.8/opam | 2 +-
packages/archetype/archetype.0.1.9/opam | 2 +-
packages/archetype/archetype.1.0.0/opam | 2 +-
packages/archetype/archetype.1.1.0/opam | 2 +-
packages/archetype/archetype.1.1.1/opam | 2 +-
packages/archetype/archetype.1.1.2/opam | 2 +-
packages/archetype/archetype.1.2.0/opam | 2 +-
packages/archetype/archetype.1.2.1/opam | 2 +-
packages/archetype/archetype.1.2.10/opam | 2 +-
packages/archetype/archetype.1.2.11/opam | 2 +-
packages/archetype/archetype.1.2.12/opam | 2 +-
packages/archetype/archetype.1.2.13/opam | 2 +-
packages/archetype/archetype.1.2.14/opam | 2 +-
packages/archetype/archetype.1.2.15/opam | 2 +-
packages/archetype/archetype.1.2.16/opam | 2 +-
packages/archetype/archetype.1.2.2/opam | 2 +-
packages/archetype/archetype.1.2.3/opam | 2 +-
packages/archetype/archetype.1.2.4/opam | 2 +-
packages/archetype/archetype.1.2.5/opam | 2 +-
packages/archetype/archetype.1.2.6/opam | 2 +-
packages/archetype/archetype.1.2.7/opam | 2 +-
packages/archetype/archetype.1.2.8/opam | 2 +-
packages/archetype/archetype.1.2.9/opam | 2 +-
packages/archetype/archetype.1.3.0/opam | 2 +-
packages/archetype/archetype.1.3.1/opam | 2 +-
packages/archetype/archetype.1.3.2/opam | 2 +-
packages/archetype/archetype.1.3.3/opam | 2 +-
packages/archetype/archetype.1.3.4/opam | 2 +-
packages/archetype/archetype.1.3.5/opam | 2 +-
packages/archetype/archetype.1.3.6/opam | 2 +-
packages/archetype/archetype.1.4.0/opam | 2 +-
packages/archetype/archetype.1.4.1/opam | 2 +-
packages/archetype/archetype.1.4.2/opam | 2 +-
packages/archetype/archetype.1.4.3/opam | 2 +-
packages/archetype/archetype.1.5.0/opam | 2 +-
packages/archetype/archetype.1.5.1/opam | 2 +-
packages/archetype/archetype.1.5.2/opam | 2 +-
packages/archetype/archetype.1.5.3/opam | 2 +-
packages/bnfgen/bnfgen.4.0.0/opam | 2 +-
packages/catala/catala.0.10.0/opam | 2 +-
packages/catala/catala.0.3.0/opam | 2 +-
packages/catala/catala.0.5.0/opam | 2 +-
packages/catala/catala.0.6.0/opam | 2 +-
packages/catala/catala.0.7.0/opam | 2 +-
packages/catala/catala.0.8.0/opam | 2 +-
packages/catala/catala.0.9.0/opam | 2 +-
packages/catala/catala.1.0.0/opam | 2 +-
packages/catala/catala.1.0.0~alpha/opam | 2 +-
packages/catala/catala.1.0.0~beta/opam | 2 +-
packages/dolmen/dolmen.0.1/opam | 2 +-
packages/dolmen/dolmen.0.10/opam | 2 +-
packages/dolmen/dolmen.0.2/opam | 2 +-
packages/dolmen/dolmen.0.4.1/opam | 2 +-
packages/dolmen/dolmen.0.4/opam | 2 +-
packages/dolmen/dolmen.0.5/opam | 2 +-
packages/dolmen/dolmen.0.6/opam | 4 ++--
packages/dolmen/dolmen.0.7/opam | 2 +-
packages/dolmen/dolmen.0.8.1/opam | 2 +-
packages/dolmen/dolmen.0.8/opam | 2 +-
packages/dolmen/dolmen.0.9/opam | 2 +-
.../embedded_ocaml_templates.0.1.4/opam | 12 ++++++------
.../embedded_ocaml_templates.0.2/opam | 12 ++++++------
.../embedded_ocaml_templates.0.3.1/opam | 8 ++++----
.../embedded_ocaml_templates.0.4/opam | 10 +++++-----
.../embedded_ocaml_templates.0.5.1/opam | 10 +++++-----
.../embedded_ocaml_templates.0.6/opam | 2 +-
.../embedded_ocaml_templates.0.7/opam | 2 +-
packages/morbig/morbig.0.10.3/opam | 2 +-
packages/morbig/morbig.0.10.4/opam | 2 +-
packages/morbig/morbig.0.11.0/opam | 2 +-
packages/morbig/morbig.0.9.1/opam | 2 +-
packages/morbig/morbig.0.9/opam | 2 +-
packages/otoml/otoml.0.9.0/opam | 2 +-
packages/otoml/otoml.0.9.1/opam | 2 +-
packages/otoml/otoml.0.9.2/opam | 2 +-
packages/otoml/otoml.0.9.3/opam | 2 +-
packages/otoml/otoml.1.0.0/opam | 2 +-
packages/otoml/otoml.1.0.1/opam | 2 +-
packages/otoml/otoml.1.0.2/opam | 2 +-
packages/otoml/otoml.1.0.3/opam | 2 +-
packages/otoml/otoml.1.0.4/opam | 2 +-
packages/otoml/otoml.1.0.5/opam | 2 +-
packages/touist/touist.3.0.0/opam | 2 +-
packages/touist/touist.3.1.0/opam | 2 +-
packages/touist/touist.3.2.0/opam | 2 +-
packages/touist/touist.3.2.1/opam | 2 +-
packages/touist/touist.3.5.0/opam | 2 +-
packages/unionFind/unionFind.20250818/opam | 2 +-
97 files changed, 119 insertions(+), 119 deletions(-)
(from ocaml/opam:archlinux-ocaml-4.14@sha256:dcfa7c735edf3ea659d1e81aecc3320af03af28871311c0cf414ddc14c4c2434)
2026-01-19 23:38.01 ---> using "8304b0faf2ad5be6b149274ceebe6b312868e0124191bcff859577a4ebedb3a2" 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-19 23:38.01 ---> using "b9cc76d5c5e6ba8ee9552676153cfca58f963943406f027ca4deab5150d0dc43" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[ocaml-patches-overlay] synchronised from git+https://github.com/ocurrent/opam-repository#patches
[default] Initialised
2026-01-19 23:39.04 ---> saved as "40e1d4788698e002243038f44b167a62075ed4bed3800e356970963de2c7f693"
/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=20260111.0.480139
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 2 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-01-19 23:39.05 ---> saved as "82c623e199775ccd18489beb65f5abbbde3df6d8b39a3d0de237074cd9be4fc1"
/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-19 23:39.25 ---> saved as "3aa673d53df54d555006bd6a966ffbe6820f2913a2afc2eea7bae3acb6ff7ddf"
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-19 23:39.45 ---> saved as "d32b608cd4ad5927c3a50d8b7732151bd454b21325ff7f8d0b5411595815e9f1"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-19 23:40.03 ---> saved as "1437bace251cd9fce49df4c671d8c051f85cfdc1093dfbcf281dfe6fc3a2f5c2"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
- core downloading...
- extra downloading...
2026-01-19 23:40.04 ---> saved as "a31857892cf21e8c6aec2c49449a3f2952e69dbd766da830f0f8b66fae89aa5c"
/home/opam: (run (shell "opam pin add -k version -yn morbig.0.10.4 0.10.4"))
morbig is now pinned to version 0.10.4
2026-01-19 23:40.06 ---> saved as "0e8a6dab1d09568829766596ca6c3eb3fee31f5fd83a202950022def1f8594bd"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall morbig.0.10.4;\
\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\" != 'morbig.0.10.4' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
morbig.0.10.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== recompile 2 packages
↻ ocaml 4.14.2 [upstream or system changes]
↻ opam-depext 1.2.3 [uses ocaml]
=== install 21 packages
∗ biniou 1.2.2 [required by yojson]
∗ camlp-streams 5.0.1 [required by biniou]
∗ cppo 1.8.0 [required by ppx_deriving]
∗ dune 3.21.0 [required by morbig]
∗ easy-format 1.3.4 [required by yojson]
∗ menhir 20250912 [required by morbig]
∗ menhirCST 20250912 [required by menhir]
∗ menhirLib 20250912 [required by menhir]
∗ menhirSdk 20250912 [required by menhir]
∗ morbig 0.10.4 (pinned)
∗ ocaml-compiler-libs v0.12.4 [required by ppxlib]
∗ ocamlfind 1.9.8 [required by ppx_deriving]
∗ ppx_derivers 1.2.1 [required by ppx_deriving]
∗ ppx_deriving 6.1.1 [required by morbig]
∗ ppx_deriving_yojson 3.10.0 [required by morbig]
∗ ppxlib 0.37.0 [required by ppx_deriving_yojson, ppx_deriving, visitors]
∗ result 1.5 [required by visitors]
∗ sexplib0 v0.17.0 [required by ppxlib]
∗ stdlib-shims 0.3.0 [required by ppxlib]
∗ visitors 20251114 [required by morbig]
∗ yojson 1.7.0 [required by morbig]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved biniou.1.2.2 (cached)
⬇ retrieved camlp-streams.5.0.1 (cached)
⬇ retrieved cppo.1.8.0 (cached)
⬇ retrieved dune.3.21.0 (cached)
⬇ retrieved easy-format.1.3.4 (cached)
⬇ retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached)
⬇ retrieved morbig.0.10.4 (cached)
⬇ retrieved ocaml-compiler-libs.v0.12.4 (cached)
⬇ retrieved ocamlfind.1.9.8 (cached)
⬇ retrieved opam-depext.1.2.3 (cached)
⬇ retrieved ppx_derivers.1.2.1 (cached)
⬇ retrieved ppx_deriving.6.1.1 (cached)
⊘ removed opam-depext.1.2.3
⊘ removed ocaml.4.14.2
∗ installed ocaml.4.14.2
⬇ retrieved ppx_deriving_yojson.3.10.0 (cached)
⬇ retrieved ppxlib.0.37.0 (cached)
⬇ retrieved result.1.5 (cached)
⬇ retrieved sexplib0.v0.17.0 (cached)
⬇ retrieved stdlib-shims.0.3.0 (cached)
⬇ retrieved visitors.20251114 (cached)
⬇ retrieved yojson.1.7.0 (cached)
∗ installed opam-depext.1.2.3
∗ installed ocamlfind.1.9.8
∗ installed dune.3.21.0
∗ installed camlp-streams.5.0.1
∗ installed easy-format.1.3.4
∗ installed menhirCST.20250912
∗ installed ppx_derivers.1.2.1
∗ installed stdlib-shims.0.3.0
∗ installed result.1.5
∗ installed menhirSdk.20250912
∗ installed sexplib0.v0.17.0
∗ installed menhirLib.20250912
∗ installed cppo.1.8.0
∗ installed biniou.1.2.2
∗ installed ocaml-compiler-libs.v0.12.4
∗ installed yojson.1.7.0
∗ installed menhir.20250912
∗ installed ppxlib.0.37.0
∗ installed ppx_deriving.6.1.1
∗ installed ppx_deriving_yojson.3.10.0
∗ installed visitors.20251114
∗ installed morbig.0.10.4
Done.
<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-01-19 23:41.22 ---> saved as "e2887f3ee18b0317ec72ad2c1291f7ae9c589bf395d1909e0af5585cffd62996"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test morbig.0.10.4) || true"))
The following actions will be performed:
=== recompile 1 package
↻ morbig 0.10.4 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved morbig.0.10.4 (https://opam.ocaml.org/cache)
⊘ removed morbig.0.10.4
∗ installed morbig.0.10.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 23:42.09 ---> saved as "1f02a94689f65c3b39fe98e4f771c56ffa2367880b8eb07496c35c69bbb12779"
/home/opam: (run (shell "opam reinstall --with-test --verbose morbig.0.10.4;\
\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\" != 'morbig.0.10.4' && 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
↻ morbig 0.10.4 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [morbig.0.10.4: extract]
⬇ retrieved morbig.0.10.4 (cached)
Processing 2/4: [morbig: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "morbig" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/morbig.0.10.4)
Processing 2/4: [morbig: make check]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "check" (CWD=/home/opam/.opam/4.14/.opam-switch/build/morbig.0.10.4)
- if command -v ocamlopt >/dev/null; then cp src/c/dune.native src/c/dune; fi
- dune build @install
- (cd _build/default/src/c && /usr/sbin/gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -g -I /home/opam/.opam/4.14/lib/ocaml -I /home/opam/.opam/4.14/lib/biniou -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/easy-format -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_deriving_yojson/runtime -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/visitors/runtime -I /home/opam/.opam/4.14/lib/yojson -I .. -o cstub.o -c cstub.c)
- cstub.c: In function ‘parse_file’:
- cstub.c:31:13: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
- 31 | closure = caml_named_value ("untyped_parse_file");
- | ^
- cstub.c:35:15: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
- 35 | error_msg = String_val (Field (result, 1));
- | ^
- cstub.c: In function ‘dispose_cst’:
- cstub.c:50:13: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
- 50 | closure = caml_named_value ("dispose_cst");
- | ^
- In file included from cstub.c:17:
- cstub.c: In function ‘get_filename_of_position’:
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: return discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- cstub.c:94:10: note: in expansion of macro ‘String_val’
- 94 | return String_val (Field (p, 0));
- | ^~~~~~~~~~
- cstub.c: In function ‘get_rule_name’:
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: return discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- cstub.c:118:10: note: in expansion of macro ‘String_val’
- 118 | return String_val (Field (cst, 0));
- | ^~~~~~~~~~
- cstub.c: In function ‘get_data’:
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: return discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- cstub.c:140:10: note: in expansion of macro ‘String_val’
- 140 | return String_val (Field (cst, 0));
- | ^~~~~~~~~~
- [ -e bin ] || ln -sf _build/install/default/bin bin
- [ -e lib ] || ln -sf _build/install/default/lib/morbig lib
- * Testsuite configuration
- Using local /home/opam/.opam/4.14/.opam-switch/build/morbig.0.10.4/bin/morbig.
- * Summary:
- -----------------------------------
- | Tests | Passed | Failed | Total |
- |-------|--------|--------|-------|
- | good | 110 | 0 | 110 |
- | bad | 67 | 0 | 67 |
- | all | 177 | 0 | 177 |
- -----------------------------------
-
- ----------------
- Congratulations!
- ----------------
λ compiled morbig.0.10.4
⊘ removed morbig.0.10.4
∗ installed morbig.0.10.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 23:42.52 ---> saved as "daca64f09efeb6f2208940074f2aeb676ca03d3a55f5b406021382543d050db7"
Job succeeded
2026-01-19 23:43.05: Job succeeded