Build:
- 0
2026-03-23 14:15.12: New job: test coq-core.8.17.1 with ocaml-compiler.5.4.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29582/head (9346fc968dbf5116a1b2dd2b5e0143bc06e9fa98)
on debian-13-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/29582/head" && git reset --hard 9346fc96
git fetch origin master
git merge --no-edit b2a1270dba57f3ceb38426939f9780c38c181b3c
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
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 ocaml-compiler.5.4.0 5.4.0
RUN opam reinstall --update-invariant ocaml-compiler.5.4.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 "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocaml-compiler.5.4.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall coq-core.8.17.1; \
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 "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'coq-core.8.17.1' && 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 coq-core.8.17.1) || true
RUN opam reinstall --with-test --verbose coq-core.8.17.1; \
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 "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'coq-core.8.17.1' && 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-03-23 14:15.12: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0-coq-core.8.17.1-9346fc968dbf5116a1b2dd2b5e0143bc06e9fa98"
2026-03-23 14:15.12: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
(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 ocaml-compiler.5.4.0 5.4.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-compiler.5.4.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall coq-core.8.17.1;\
\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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'coq-core.8.17.1' && 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 coq-core.8.17.1) || true"))
(run (shell "opam reinstall --with-test --verbose coq-core.8.17.1;\
\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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'coq-core.8.17.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-23 14:15.12: Waiting for resource in pool OCluster
2026-03-23 15:47.21: Waiting for worker…
2026-03-23 15:49.47: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files: 80% (14893/18517)
Updating files: 81% (14999/18517)
Updating files: 82% (15184/18517)
Updating files: 83% (15370/18517)
Updating files: 84% (15555/18517)
Updating files: 85% (15740/18517)
Updating files: 86% (15925/18517)
Updating files: 87% (16110/18517)
Updating files: 88% (16295/18517)
Updating files: 89% (16481/18517)
Updating files: 90% (16666/18517)
Updating files: 91% (16851/18517)
Updating files: 92% (17036/18517)
Updating files: 93% (17221/18517)
Updating files: 94% (17406/18517)
Updating files: 95% (17592/18517)
Updating files: 96% (17777/18517)
Updating files: 97% (17962/18517)
Updating files: 98% (18147/18517)
Updating files: 99% (18332/18517)
Updating files: 100% (18517/18517)
Updating files: 100% (18517/18517), done.
HEAD is now at b2a1270dba Merge pull request #29580 from penelopeysm/opam-publish-wcwidth.1.1.0
Merge made by the 'ort' strategy.
packages/ocaml-compiler/ocaml-compiler.5.3.0/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.3/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.4.0/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.4.1/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.4/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.5/opam | 2 ++
packages/ocaml-compiler/ocaml-compiler.5.6/opam | 2 ++
packages/ocaml-option-clang-cl/ocaml-option-clang-cl.1/opam | 13 +++++++++++++
packages/ocaml-options-vanilla/ocaml-options-vanilla.1/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam | 2 ++
15 files changed, 40 insertions(+)
create mode 100644 packages/ocaml-option-clang-cl/ocaml-option-clang-cl.1/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-23 15:49.52 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" 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-03-23 15:49.52 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" 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
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-23 15:49.52 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" 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=debian os-version=13
# 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-03-23 15:49.52 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" 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-03-23 15:49.52 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-23 15:49.53 ---> using "348f0b2722a0ac8c77f43b6b60cbc4929ba81c0b86b99903e99deb384b71d62f" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-23 15:49.53 ---> using "21e66375def6ee92829e3c763735aee9ea690796e60598b7bd2c10b34bdad2a9" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
- Fetched 10.0 MB in 2s (4684 kB/s)
- Reading package lists...
-
2026-03-23 15:49.53 ---> using "fcd8408745db5a4d5d2e928a9a5372d7aa38418b124140386a72dfd5bc698591" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0 5.4.0"))
ocaml-compiler is now pinned to version 5.4.0
2026-03-23 15:49.53 ---> using "875e1d9887480aa5ddbcc5fbcf53f5322f656dc94b240d3176b5f22537f59c2f" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-compiler.5.4.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 8 packages
- recompile base-domains base [uses ocaml]
- recompile base-effects base [uses ocaml]
- recompile base-nnp base [uses base-domains]
- recompile ocaml 5.4.0 [uses ocaml-base-compiler]
- recompile ocaml-base-compiler 5.4.0 (pinned) [uses ocaml-compiler]
- recompile ocaml-compiler 5.4.0 (pinned)
- recompile ocaml-config 3 [uses ocaml-base-compiler]
- recompile opam-depext 1.2.3 [uses ocaml]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0 (cached)
-> retrieved ocaml-config.3 (cached)
-> retrieved opam-depext.1.2.3 (cached)
-> removed base-effects.base
-> removed base-nnp.base
-> removed base-domains.base
-> removed opam-depext.1.2.3
-> removed ocaml.5.4.0
-> removed ocaml-config.3
-> removed ocaml-base-compiler.5.4.0
-> removed ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0
-> installed ocaml-base-compiler.5.4.0
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
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-03-23 15:49.53 ---> using "20ce2b86ab610c886fc31a804396fcfee1c10bca2a1606675b7a914195a00921" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall coq-core.8.17.1;\
\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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'coq-core.8.17.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
coq-core.8.17.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
- install conf-gmp 5 [required by zarith]
- install conf-pkg-config 4 [required by zarith]
- install coq-core 8.17.1
- install dune 3.22.0 [required by coq-core]
- install ocamlfind 1.9.8 [required by coq-core]
- install zarith 1.14 [required by coq-core]
The following system packages will first need to be installed:
libgmp-dev pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get 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 "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config"
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20654 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-gmp.5 (cached)
-> retrieved coq-core.8.17.1 (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved dune.3.22.0 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved zarith.1.14 (cached)
-> installed ocamlfind.1.9.8
-> installed zarith.1.14
-> installed dune.3.22.0
-> installed coq-core.8.17.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-23 15:52.36 ---> saved as "2debb7b95bf3d8559cc19e011f0ce5d2429cc60e1a19b1bf4e12ef1f913c2c1f"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test coq-core.8.17.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile coq-core 8.17.1
=== install 3 packages
- install ounit2 2.2.7 [required by coq-core]
- install seq base [required by ounit2]
- install stdlib-shims 0.3.0 [required by ounit2]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved coq-core.8.17.1 (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7 (https://opam.ocaml.org/cache)
-> retrieved seq.base (2 extra sources)
-> retrieved seq.base (2 extra sources)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> removed coq-core.8.17.1
-> installed stdlib-shims.0.3.0
-> installed ounit2.2.2.7
-> installed coq-core.8.17.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-23 15:54.33 ---> saved as "7ec1bebee5ef29c4bdab1d470fa5d8c26179500c3e1faedef1e356f0a1f00378"
/home/opam: (run (shell "opam reinstall --with-test --verbose coq-core.8.17.1;\
\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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'coq-core.8.17.1' && 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 coq-core 8.17.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [coq-core.8.17.1: extract]
-> retrieved coq-core.8.17.1 (cached)
Processing 2/4: [coq-core: ./configure no]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./configure" "-prefix" "/home/opam/.opam/5.4" "-mandir" "/home/opam/.opam/5.4/man" "-libdir" "/home/opam/.opam/5.4/lib/coq" "-native-compiler" "no" (CWD=/home/opam/.opam/5.4/.opam-switch/build/coq-core.8.17.1)
- You have OCaml 5.4.0. Good!
- You have OCamlfind 1.9.8. Good!
- You have native-code compilation. Good!
- You have the Zarith library 1.14 installed. Good!
-
- Architecture : Linux
- Sys.os_type : Unix
- OCaml version : 5.4.0
- OCaml binaries in : /home/opam/.opam/5.4/bin/
- OCaml library in : /home/opam/.opam/5.4/lib/ocaml
- Web browser : firefox -remote "OpenURL(%s,new-tab)" || firefox %s &
- Coq web site : http://coq.inria.fr/
- Bytecode VM enabled : true
- Native Compiler enabled : no
-
- Paths where installation is expected by Coq Makefile:
- - Coq is expected in /home/opam/.opam/5.4
- - the Coq library is expected in /home/opam/.opam/5.4/lib/coq
- - the Coqide configuration files is expected in /home/opam/.opam/5.4/etc/xdg/coq
- - the Coqide data files is expected in /home/opam/.opam/5.4/share/coq
- - the Coq man pages is expected in /home/opam/.opam/5.4/man
- - documentation prefix path for all Coq packages is expected in /home/opam/.opam/5.4/share/doc
-
- If anything is wrong above, please restart './configure'.
-
- *Warning* To compile the system for a new architecture
- don't forget to do a 'make clean' before './configure'.
Processing 2/4: [coq-core: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "coq-core" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/coq-core.8.17.1)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I kernel/.kernel.objs/byte -I /home/opam/.opam/5.4/lib/ocaml/dynlink -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I boot/.boot.objs/byte -I clib/.clib.objs/byte -I config/.config.objs/byte -I kernel/byterun/.coqrun.objs/byte -I lib/.lib.objs/byte -no-alias-deps -o kernel/.kernel.objs/byte/float64.cmi -c -intf kernel/float64.mli)
- File "kernel/float64.mli", line 60, characters 3-15:
- 60 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/float64.mli", line 66, characters 3-15:
- 66 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/float64.mli", line 80, characters 3-15:
- 80 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/float64.mli", line 83, characters 3-15:
- 83 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/float64.mli", line 89, characters 3-15:
- 89 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/float64.mli", line 92, characters 3-15:
- 92 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/float64.mli", line 101, characters 3-15:
- 101 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/float64.mli", line 109, characters 3-15:
- 109 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I kernel/.kernel.objs/byte -I /home/opam/.opam/5.4/lib/ocaml/dynlink -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I boot/.boot.objs/byte -I clib/.clib.objs/byte -I config/.config.objs/byte -I kernel/byterun/.coqrun.objs/byte -I lib/.lib.objs/byte -no-alias-deps -o kernel/.kernel.objs/byte/float64_common.cmi -c -intf kernel/float64_common.mli)
- File "kernel/float64_common.mli", line 60, characters 3-15:
- 60 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/float64_common.mli", line 66, characters 3-15:
- 66 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/float64_common.mli", line 70, characters 3-15:
- 70 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/float64_common.mli", line 73, characters 3-15:
- 73 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/float64_common.mli", line 79, characters 3-15:
- 79 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/float64_common.mli", line 82, characters 3-15:
- 82 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/float64_common.mli", line 91, characters 3-15:
- 91 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/float64_common.mli", line 99, characters 3-15:
- 99 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I kernel/.kernel.objs/byte -I /home/opam/.opam/5.4/lib/ocaml/dynlink -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I boot/.boot.objs/byte -I clib/.clib.objs/byte -I config/.config.objs/byte -I kernel/byterun/.coqrun.objs/byte -I lib/.lib.objs/byte -cmi-file kernel/.kernel.objs/byte/uGraph.cmi -no-alias-deps -o kernel/.kernel.objs/byte/uGraph.cmo -c -impl kernel/uGraph.ml)
- File "kernel/uGraph.ml", line 22, characters 10-17:
- 22 | end) [@@inlined] (* without inline, +1% ish on HoTT, compcert. See jenkins 594 vs 596 *)
- ^^^^^^^
- Warning 53 [misplaced-attribute]: the inlined attribute cannot appear in this context
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I kernel/.kernel.objs/byte -I /home/opam/.opam/5.4/lib/ocaml/dynlink -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I boot/.boot.objs/byte -I clib/.clib.objs/byte -I config/.config.objs/byte -I kernel/byterun/.coqrun.objs/byte -I lib/.lib.objs/byte -no-alias-deps -o kernel/.kernel.objs/byte/nativevalues.cmi -c -intf kernel/nativevalues.mli)
- File "kernel/nativevalues.mli", line 104, characters 3-15:
- 104 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 107, characters 3-15:
- 107 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 110, characters 3-15:
- 110 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 113, characters 3-15:
- 113 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 124, characters 3-15:
- 124 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 148, characters 3-15:
- 148 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 192, characters 3-15:
- 192 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 195, characters 3-15:
- 195 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 198, characters 3-15:
- 198 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 201, characters 3-15:
- 201 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 204, characters 3-15:
- 204 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 207, characters 3-15:
- 207 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 210, characters 3-15:
- 210 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 213, characters 3-15:
- 213 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 216, characters 3-15:
- 216 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 219, characters 3-15:
- 219 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 222, characters 3-15:
- 222 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 225, characters 3-15:
- 225 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 228, characters 3-15:
- 228 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 231, characters 3-15:
- 231 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 234, characters 3-15:
- 234 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 237, characters 3-15:
- 237 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 240, characters 3-15:
- 240 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 243, characters 3-15:
- 243 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 246, characters 3-15:
- 246 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 249, characters 3-15:
- 249 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 252, characters 3-15:
- 252 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 255, characters 3-15:
- 255 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 258, characters 3-15:
- 258 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 261, characters 3-15:
- 261 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 264, characters 3-15:
- 264 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 267, characters 3-15:
- 267 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 270, characters 3-15:
- 270 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 273, characters 3-15:
- 273 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 282, characters 3-15:
- 282 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 306, characters 3-15:
- 306 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 309, characters 3-15:
- 309 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 312, characters 3-15:
- 312 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 315, characters 3-15:
- 315 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 318, characters 3-15:
- 318 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 321, characters 3-15:
- 321 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 324, characters 3-15:
- 324 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 327, characters 3-15:
- 327 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 330, characters 3-15:
- 330 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 333, characters 3-15:
- 333 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 336, characters 3-15:
- 336 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 339, characters 3-15:
- 339 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 342, characters 3-15:
- 342 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 345, characters 3-15:
- 345 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 348, characters 3-15:
- 348 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 351, characters 3-15:
- 351 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 354, characters 3-15:
- 354 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 357, characters 3-15:
- 357 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 360, characters 3-15:
- 360 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 375, characters 3-15:
- 375 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 378, characters 3-15:
- 378 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 381, characters 3-15:
- 381 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 384, characters 3-15:
- 384 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 387, characters 3-15:
- 387 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
-
- File "kernel/nativevalues.mli", line 390, characters 3-15:
- 390 | [@@ocaml.inline always]
- ^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.inline attribute cannot appear in this context
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -O3 -unbox-closures -I kernel/.kernel.objs/byte -I kernel/.kernel.objs/native -I /home/opam/.opam/5.4/lib/ocaml/dynlink -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I boot/.boot.objs/byte -I boot/.boot.objs/native -I clib/.clib.objs/byte -I clib/.clib.objs/native -I config/.config.objs/byte -I config/.config.objs/native -I kernel/byterun/.coqrun.objs/byte -I kernel/byterun/.coqrun.objs/native -I lib/.lib.objs/byte -I lib/.lib.objs/native -cmi-file kernel/.kernel.objs/byte/uGraph.cmi -no-alias-deps -o kernel/.kernel.objs/native/uGraph.cmx -c -impl kernel/uGraph.ml)
- File "kernel/uGraph.ml", line 22, characters 10-17:
- 22 | end) [@@inlined] (* without inline, +1% ish on HoTT, compcert. See jenkins 594 vs 596 *)
- ^^^^^^^
- Warning 53 [misplaced-attribute]: the inlined attribute cannot appear in this context
- (cd _build/default/kernel/byterun && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -Wall -Wno-unused -g -O2 -msse2 -mfpmath=sse -g -I /home/opam/.opam/5.4/lib/ocaml -o coq_interp.o -c coq_interp.c)
- coq_interp.c: In function 'coq_interprete':
- coq_interp.c:817:11: warning: assignment discards 'volatile' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 817 | p = &Field(accu, 0);
- | ^
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I engine/.engine.objs/byte -I /home/opam/.opam/5.4/lib/ocaml/dynlink -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I boot/.boot.objs/byte -I clib/.clib.objs/byte -I config/.config.objs/byte -I kernel/.kernel.objs/byte -I kernel/byterun/.coqrun.objs/byte -I lib/.lib.objs/byte -I library/.library.objs/byte -cmi-file engine/.engine.objs/byte/proofview_monad.cmi -no-alias-deps -o engine/.engine.objs/byte/proofview_monad.cmo -c -impl engine/proofview_monad.ml)
- File "engine/proofview_monad.ml", line 151, characters 31-41:
- 151 | module StateStore = Store.Make(struct end)
- ^^^^^^^^^^
- Warning 73 [generative-application-expects-unit]: A generative functor
- should be applied to (); using (struct end) is deprecated.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I pretyping/.pretyping.objs/byte -I /home/opam/.opam/5.4/lib/ocaml/dynlink -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I boot/.boot.objs/byte -I clib/.clib.objs/byte -I config/.config.objs/byte -I engine/.engine.objs/byte -I kernel/.kernel.objs/byte -I kernel/byterun/.coqrun.objs/byte -I lib/.lib.objs/byte -I library/.library.objs/byte -cmi-file pretyping/.pretyping.objs/byte/inductiveops.cmi -no-alias-deps -o pretyping/.pretyping.objs/byte/inductiveops.cmo -c -impl pretyping/inductiveops.ml)
- File "pretyping/inductiveops.ml", line 119, characters 3-19:
- 119 | [@@ocaml.deprecated "Alias for Inductiveops.nconstructors"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 128, characters 3-19:
- 128 | [@@ocaml.deprecated "Alias for Inductiveops.constructors_nrealargs"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 137, characters 3-19:
- 137 | [@@ocaml.deprecated "Alias for Inductiveops.constructors_nrealdecls"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 146, characters 3-19:
- 146 | [@@ocaml.deprecated "Alias for Inductiveops.constructor_nallargs"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 155, characters 3-19:
- 155 | [@@ocaml.deprecated "Alias for Inductiveops.constructor_nalldecls"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 164, characters 3-19:
- 164 | [@@ocaml.deprecated "Alias for Inductiveops.constructor_nrealargs"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 173, characters 3-19:
- 173 | [@@ocaml.deprecated "Alias for Inductiveops.constructor_nrealdecls"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 182, characters 3-19:
- 182 | [@@ocaml.deprecated "Alias for Inductiveops.inductive_nrealargs"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 191, characters 3-19:
- 191 | [@@ocaml.deprecated "Alias for Inductiveops.inductive_nrealdecls"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 200, characters 3-19:
- 200 | [@@ocaml.deprecated "Alias for Inductiveops.inductive_nallargs"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 209, characters 3-19:
- 209 | [@@ocaml.deprecated "Alias for Inductiveops.inductive_nparams"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 218, characters 3-19:
- 218 | [@@ocaml.deprecated "Alias for Inductiveops.inductive_nparamsdecls"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 227, characters 3-19:
- 227 | [@@ocaml.deprecated "Alias for Inductiveops.inductive_nalldecls"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 236, characters 3-19:
- 236 | [@@ocaml.deprecated "Alias for Inductiveops.inductive_paramsdecls"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 243, characters 3-19:
- 243 | [@@ocaml.deprecated "Alias for Inductiveops.inductive_alldecls"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I tactics/.tactics.objs/byte -I /home/opam/.opam/5.4/lib/ocaml/dynlink -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/zarith -I boot/.boot.objs/byte -I clib/.clib.objs/byte -I config/.config.objs/byte -I engine/.engine.objs/byte -I gramlib/.gramlib.objs/byte -I interp/.interp.objs/byte -I kernel/.kernel.objs/byte -I kernel/byterun/.coqrun.objs/byte -I lib/.lib.objs/byte -I library/.library.objs/byte -I parsing/.parsing.objs/byte -I pretyping/.pretyping.objs/byte -I printing/.printing.objs/byte -I proofs/.proofs.objs/byte -no-alias-deps -o tactics/.tactics.objs/byte/hints.cmi -c -intf tactics/hints.mli)
- File "tactics/hints.mli", line 200, characters 2-18:
- 200 | [@ocaml.deprecated "Declare a hint constant instead"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I plugins/ltac2/.ltac2_plugin.objs/byte -I /home/opam/.opam/5.4/lib/findlib -I /home/opam/.opam/5.4/lib/ocaml/dynlink -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/zarith -I boot/.boot.objs/byte -I clib/.clib.objs/byte -I config/.config.objs/byte -I engine/.engine.objs/byte -I gramlib/.gramlib.objs/byte -I interp/.interp.objs/byte -I kernel/.kernel.objs/byte -I kernel/byterun/.coqrun.objs/byte -I lib/.lib.objs/byte -I library/.library.objs/byte -I parsing/.parsing.objs/byte -I plugins/ltac/.ltac_plugin.objs/byte -I pretyping/.pretyping.objs/byte -I printing/.printing.objs/byte -I proofs/.proofs.objs/byte -I stm/.stm.objs/byte -I sysinit/.sysinit.objs/byte -I tactics/.tactics.objs/byte -I tools/coqworkmgr/.coqworkmgrlib.objs/byte -I vernac/.vernac.objs/byte -cmi-file plugins/ltac2/.ltac2_plugin.objs/byte/ltac2_plugin__Tac2dyn.cmi -no-alias-deps -open Ltac2_plugin -o plugins/ltac2/.ltac2_plugin.objs/byte/ltac2_plugin__Tac2dyn.cmo -c -impl plugins/ltac2/tac2dyn.ml)
- File "plugins/ltac2/tac2dyn.ml", line 13, characters 24-34:
- 13 | module DYN = Dyn.Make(struct end)
- ^^^^^^^^^^
- Warning 73 [generative-application-expects-unit]: A generative functor
- should be applied to (); using (struct end) is deprecated.
-
- File "plugins/ltac2/tac2dyn.ml", line 29, characters 22-32:
- 29 | module Val = Dyn.Make(struct end)
- ^^^^^^^^^^
- Warning 73 [generative-application-expects-unit]: A generative functor
- should be applied to (); using (struct end) is deprecated.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -O3 -unbox-closures -I engine/.engine.objs/byte -I engine/.engine.objs/native -I /home/opam/.opam/5.4/lib/ocaml/dynlink -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I boot/.boot.objs/byte -I boot/.boot.objs/native -I clib/.clib.objs/byte -I clib/.clib.objs/native -I config/.config.objs/byte -I config/.config.objs/native -I kernel/.kernel.objs/byte -I kernel/.kernel.objs/native -I kernel/byterun/.coqrun.objs/byte -I kernel/byterun/.coqrun.objs/native -I lib/.lib.objs/byte -I lib/.lib.objs/native -I library/.library.objs/byte -I library/.library.objs/native -cmi-file engine/.engine.objs/byte/proofview_monad.cmi -no-alias-deps -o engine/.engine.objs/native/proofview_monad.cmx -c -impl engine/proofview_monad.ml)
- File "engine/proofview_monad.ml", line 151, characters 31-41:
- 151 | module StateStore = Store.Make(struct end)
- ^^^^^^^^^^
- Warning 73 [generative-application-expects-unit]: A generative functor
- should be applied to (); using (struct end) is deprecated.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -O3 -unbox-closures -I pretyping/.pretyping.objs/byte -I pretyping/.pretyping.objs/native -I /home/opam/.opam/5.4/lib/ocaml/dynlink -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I boot/.boot.objs/byte -I boot/.boot.objs/native -I clib/.clib.objs/byte -I clib/.clib.objs/native -I config/.config.objs/byte -I config/.config.objs/native -I engine/.engine.objs/byte -I engine/.engine.objs/native -I kernel/.kernel.objs/byte -I kernel/.kernel.objs/native -I kernel/byterun/.coqrun.objs/byte -I kernel/byterun/.coqrun.objs/native -I lib/.lib.objs/byte -I lib/.lib.objs/native -I library/.library.objs/byte -I library/.library.objs/native -cmi-file pretyping/.pretyping.objs/byte/inductiveops.cmi -no-alias-deps -o pretyping/.pretyping.objs/native/inductiveops.cmx -c -impl pretyping/inductiveops.ml)
- File "pretyping/inductiveops.ml", line 119, characters 3-19:
- 119 | [@@ocaml.deprecated "Alias for Inductiveops.nconstructors"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 128, characters 3-19:
- 128 | [@@ocaml.deprecated "Alias for Inductiveops.constructors_nrealargs"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 137, characters 3-19:
- 137 | [@@ocaml.deprecated "Alias for Inductiveops.constructors_nrealdecls"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 146, characters 3-19:
- 146 | [@@ocaml.deprecated "Alias for Inductiveops.constructor_nallargs"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 155, characters 3-19:
- 155 | [@@ocaml.deprecated "Alias for Inductiveops.constructor_nalldecls"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 164, characters 3-19:
- 164 | [@@ocaml.deprecated "Alias for Inductiveops.constructor_nrealargs"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 173, characters 3-19:
- 173 | [@@ocaml.deprecated "Alias for Inductiveops.constructor_nrealdecls"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 182, characters 3-19:
- 182 | [@@ocaml.deprecated "Alias for Inductiveops.inductive_nrealargs"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 191, characters 3-19:
- 191 | [@@ocaml.deprecated "Alias for Inductiveops.inductive_nrealdecls"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 200, characters 3-19:
- 200 | [@@ocaml.deprecated "Alias for Inductiveops.inductive_nallargs"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 209, characters 3-19:
- 209 | [@@ocaml.deprecated "Alias for Inductiveops.inductive_nparams"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 218, characters 3-19:
- 218 | [@@ocaml.deprecated "Alias for Inductiveops.inductive_nparamsdecls"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 227, characters 3-19:
- 227 | [@@ocaml.deprecated "Alias for Inductiveops.inductive_nalldecls"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 236, characters 3-19:
- 236 | [@@ocaml.deprecated "Alias for Inductiveops.inductive_paramsdecls"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
-
- File "pretyping/inductiveops.ml", line 243, characters 3-19:
- 243 | [@@ocaml.deprecated "Alias for Inductiveops.inductive_alldecls"]
- ^^^^^^^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the ocaml.deprecated attribute cannot appear in this context
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -O3 -unbox-closures -I plugins/ltac2/.ltac2_plugin.objs/byte -I plugins/ltac2/.ltac2_plugin.objs/native -I /home/opam/.opam/5.4/lib/findlib -I /home/opam/.opam/5.4/lib/ocaml/dynlink -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/zarith -I boot/.boot.objs/byte -I boot/.boot.objs/native -I clib/.clib.objs/byte -I clib/.clib.objs/native -I config/.config.objs/byte -I config/.config.objs/native -I engine/.engine.objs/byte -I engine/.engine.objs/native -I gramlib/.gramlib.objs/byte -I gramlib/.gramlib.objs/native -I interp/.interp.objs/byte -I interp/.interp.objs/native -I kernel/.kernel.objs/byte -I kernel/.kernel.objs/native -I kernel/byterun/.coqrun.objs/byte -I kernel/byterun/.coqrun.objs/native -I lib/.lib.objs/byte -I lib/.lib.objs/native -I library/.library.objs/byte -I library/.library.objs/native -I parsing/.parsing.objs/byte -I parsing/.parsing.objs/native -I plugins/ltac/.ltac_plugin.objs/byte -I plugins/ltac/.ltac_plugin.objs/native -I pretyping/.pretyping.objs/byte -I pretyping/.pretyping.objs/native -I printing/.printing.objs/byte -I printing/.printing.objs/native -I proofs/.proofs.objs/byte -I proofs/.proofs.objs/native -I stm/.stm.objs/byte -I stm/.stm.objs/native -I sysinit/.sysinit.objs/byte -I sysinit/.sysinit.objs/native -I tactics/.tactics.objs/byte -I tactics/.tactics.objs/native -I tools/coqworkmgr/.coqworkmgrlib.objs/byte -I tools/coqworkmgr/.coqworkmgrlib.objs/native -I vernac/.vernac.objs/byte -I vernac/.vernac.objs/native -cmi-file plugins/ltac2/.ltac2_plugin.objs/byte/ltac2_plugin__Tac2dyn.cmi -no-alias-deps -open Ltac2_plugin -o plugins/ltac2/.ltac2_plugin.objs/native/ltac2_plugin__Tac2dyn.cmx -c -impl plugins/ltac2/tac2dyn.ml)
- File "plugins/ltac2/tac2dyn.ml", line 13, characters 24-34:
- 13 | module DYN = Dyn.Make(struct end)
- ^^^^^^^^^^
- Warning 73 [generative-application-expects-unit]: A generative functor
- should be applied to (); using (struct end) is deprecated.
-
- File "plugins/ltac2/tac2dyn.ml", line 29, characters 22-32:
- 29 | module Val = Dyn.Make(struct end)
- ^^^^^^^^^^
- Warning 73 [generative-application-expects-unit]: A generative functor
- should be applied to (); using (struct end) is deprecated.
-> compiled coq-core.8.17.1
-> removed coq-core.8.17.1
-> installed coq-core.8.17.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-23 15:56.10 ---> saved as "075e756ba10518351ee4ddd01d61e38f4f884d44a2b8bb6a4f2d727be4012ccf"
Job succeeded
2026-03-23 15:56.26: Job succeeded