- github
- ocaml
- opam-repository
- 55a474
- distributions,archlinux-ocaml-4.14,bitwuzla-cxx.0.7.0,tests
(not at the head of any monitored branch or PR)
2025-04-16 21:23.01: New job: test bitwuzla-cxx.0.7.0, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/27768/head (55a47416d532dc829d9111297970934a21a1b1c4)
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/27768/head" && git reset --hard 55a47416
git fetch origin master
git merge --no-edit d1cbf81c2da41aacd8925bea031fdc109945f711
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-4.14@sha256:7fd6d6f7e4be06f4e09f0ac6d9f869a3a969a4fd1925fb5e7b2a5dc821e8e339
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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 bitwuzla-cxx.0.7.0 0.7.0
RUN opam reinstall bitwuzla-cxx.0.7.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" != 'bitwuzla-cxx.0.7.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 bitwuzla-cxx.0.7.0) || true
RUN opam reinstall --with-test --verbose bitwuzla-cxx.0.7.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" != 'bitwuzla-cxx.0.7.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2025-04-16 21:23.01: Using cache hint "ocaml/opam:archlinux-ocaml-4.14@sha256:7fd6d6f7e4be06f4e09f0ac6d9f869a3a969a4fd1925fb5e7b2a5dc821e8e339-bitwuzla-cxx.0.7.0-55a47416d532dc829d9111297970934a21a1b1c4"
2025-04-16 21:23.01: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-4.14@sha256:7fd6d6f7e4be06f4e09f0ac6d9f869a3a969a4fd1925fb5e7b2a5dc821e8e339)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.3 /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 bitwuzla-cxx.0.7.0 0.7.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall bitwuzla-cxx.0.7.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\" != 'bitwuzla-cxx.0.7.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 bitwuzla-cxx.0.7.0) || true"))
(run (shell "opam reinstall --with-test --verbose bitwuzla-cxx.0.7.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\" != 'bitwuzla-cxx.0.7.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-04-16 21:23.01: Waiting for resource in pool OCluster
2025-04-16 21:23.01: Waiting for worker…
2025-04-16 21:23.02: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files: 98% (22613/22882)
Updating files: 99% (22654/22882)
Updating files: 100% (22882/22882)
Updating files: 100% (22882/22882), done.
HEAD is now at d1cbf81c2d Merge pull request #27767 from toots/opam-publish-ffmpeg.1.2.4
Updating d1cbf81c2d..55a47416d5
Fast-forward
packages/bitwuzla-cxx/bitwuzla-cxx.0.7.0/opam | 50 +++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
create mode 100644 packages/bitwuzla-cxx/bitwuzla-cxx.0.7.0/opam
(from ocaml/opam:archlinux-ocaml-4.14@sha256:7fd6d6f7e4be06f4e09f0ac6d9f869a3a969a4fd1925fb5e7b2a5dc821e8e339)
2025-04-16 21:23.46 ---> saved as "1820db820f9750104354c482127047fe9fe2b3e87dc53167efa57a85fd0a3afc"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-04-16 21:23.46 ---> saved as "23856c89655da682f7350f499e689b8ff890c5bdfb4ede7737ea5050b5d6d17e"
/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.
Continue? [y/n] y
This development 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.
[NOTE] The 'jobs' option was reset, its value was 31 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=31 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-04-16 21:24.18 ---> saved as "bdf78397d4ce4402cbe2e89b200e23df3954746edf71094633988d810a242d5e"
/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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=arch os-version=20250406.0.331908
# 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 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
2025-04-16 21:24.19 ---> saved as "7532ab1354b892533884548a7fd3a7396fd482b4654dd0af8e6b3c10b708c3cd"
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2025-04-16 21:24.24 ---> saved as "adcf17ce5278704fe8a651b7d0255262c66ab0d0a3f73ad017f5e45a7834abb7"
/home/opam: (copy (src .) (dst opam-repository/))
2025-04-16 21:24.33 ---> saved as "e1efc4ab14a267cd2e469de147950b2ff49d4c8f381fc15c477c11255cf1f7e7"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-04-16 21:25.00 ---> saved as "5ac4303a6fb653bd90a0ea857c7ca24077693e83ea82b5c1b9672cde37ee1281"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
- core downloading...
- extra downloading...
2025-04-16 21:25.01 ---> saved as "07ed91b1be675fba23c0ebc4c50133b290af8b958f76565b52597f52638256d3"
/home/opam: (run (shell "opam pin add -k version -yn bitwuzla-cxx.0.7.0 0.7.0"))
bitwuzla-cxx is now pinned to version 0.7.0
2025-04-16 21:25.01 ---> saved as "c8794e2328f323ff3e8408a70325bb55b0658e9adbc5fa840772baf5ffedfdff"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall bitwuzla-cxx.0.7.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\" != 'bitwuzla-cxx.0.7.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
bitwuzla-cxx.0.7.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 9 packages
∗ bitwuzla-cxx 0.7.0 (pinned)
∗ conf-g++ 1.0 [required by bitwuzla-cxx]
∗ conf-gcc 1.0 [required by bitwuzla-cxx]
∗ conf-git 1.1 [required by bitwuzla-cxx]
∗ conf-gmp 5 [required by zarith]
∗ conf-pkg-config 4 [required by zarith]
∗ dune 3.18.0 [required by bitwuzla-cxx]
∗ ocamlfind 1.9.8 [required by zarith]
∗ zarith 1.14 [required by bitwuzla-cxx]
The following system packages will first need to be installed:
pkgconf
<><> 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"
- :: Starting full system upgrade...
- resolving dependencies...
- looking for conflicting packages...
-
- Package (7) Old Version New Version Net Change Download Size
-
- core/gzip 1.13-4 1.14-1 0.00 MiB 0.08 MiB
- core/libcap 2.75-1 2.76-1 0.00 MiB 0.76 MiB
- core/libffi 3.4.7-1 3.4.8-1 0.00 MiB 0.04 MiB
- core/libnftnl 1.2.8-1 1.2.9-1 0.00 MiB 0.07 MiB
- extra/libsysprof-capture 48.0-3 48.0-4 0.00 MiB 0.05 MiB
- core/perl 5.40.1-2 5.40.2-1 0.05 MiB 19.98 MiB
- core/pkgconf 2.4.3-1 0.17 MiB 0.06 MiB
-
- Total Download Size: 21.05 MiB
- Total Installed Size: 74.20 MiB
- Net Upgrade Size: 0.22 MiB
-
- :: Proceed with installation? [Y/n]
- :: Retrieving packages...
- perl-5.40.2-1-x86_64 downloading...
- libcap-2.76-1-x86_64 downloading...
- gzip-1.14-1-x86_64 downloading...
- libnftnl-1.2.9-1-x86_64 downloading...
- pkgconf-2.4.3-1-x86_64 downloading...
- libsysprof-capture-48.0-4-x86_64 downloading...
- libffi-3.4.8-1-x86_64 downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- installing pkgconf...
- upgrading libcap...
- upgrading gzip...
- upgrading libffi...
- upgrading libnftnl...
- upgrading libsysprof-capture...
- upgrading perl...
- :: Running post-transaction hooks...
- (1/2) Arming ConditionNeedsUpdate...
- (2/2) Checking for old perl modules...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved bitwuzla-cxx.0.7.0 (https://github.com/bitwuzla/ocaml-bitwuzla/releases/download/0.7.0/bitwuzla-cxx-0.7.0.tbz)
⬇ retrieved conf-gmp.5 (cached)
∗ installed conf-g++.1.0
∗ installed conf-pkg-config.4
∗ installed conf-gcc.1.0
∗ installed conf-git.1.1
∗ installed conf-gmp.5
⬇ retrieved dune.3.18.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.18.0
∗ installed bitwuzla-cxx.0.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-16 21:26.31 ---> saved as "f3d972b567014843ef3de37b70adc733d959fd69a1d0df17c031c95d6aabf112"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test bitwuzla-cxx.0.7.0) || true"))
The following actions will be performed:
=== recompile 1 package
↻ bitwuzla-cxx 0.7.0 (pinned)
=== install 26 packages
∗ base v0.16.4 [required by ppx_expect]
∗ csexp 1.5.2 [required by dune-configurator]
∗ dune-configurator 3.18.0 [required by base]
∗ jane-street-headers v0.16.0 [required by time_now]
∗ jst-config v0.16.0 [required by time_now]
∗ ocaml-compiler-libs v0.12.4 [required by ppxlib]
∗ ppx_assert v0.16.0 [required by jst-config]
∗ ppx_base v0.16.0 [required by time_now]
∗ ppx_cold v0.16.0 [required by ppx_base]
∗ ppx_compare v0.16.0 [required by ppx_base]
∗ ppx_derivers 1.2.1 [required by ppxlib]
∗ ppx_enumerate v0.16.0 [required by ppx_base]
∗ ppx_expect v0.16.1 [required by bitwuzla-cxx]
∗ ppx_globalize v0.16.0 [required by ppx_base]
∗ ppx_hash v0.16.0 [required by ppx_base]
∗ ppx_here v0.16.0 [required by ppx_expect]
∗ ppx_inline_test v0.16.1 [required by bitwuzla-cxx]
∗ ppx_optcomp v0.16.0 [required by time_now]
∗ ppx_sexp_conv v0.16.0 [required by ppx_base]
∗ ppxlib 0.35.0 [required by ppx_expect]
∗ re 1.12.0 [required by ppx_expect]
∗ seq base [required by re]
∗ sexplib0 v0.16.0 [required by base]
∗ stdio v0.16.0 [required by ppx_expect]
∗ stdlib-shims 0.3.0 [required by ppxlib]
∗ time_now v0.16.0 [required by ppx_inline_test]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved base.v0.16.4 (https://github.com/janestreet/base/archive/refs/tags/v0.16.4.tar.gz)
⬇ retrieved csexp.1.5.2 (https://github.com/ocaml-dune/csexp/releases/download/1.5.2/csexp-1.5.2.tbz)
∗ installed csexp.1.5.2
⬇ retrieved dune-configurator.3.18.0 (https://github.com/ocaml/dune/releases/download/3.18.0/dune-3.18.0.tbz)
⬇ retrieved jane-street-headers.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/jane-street-headers-v0.16.0.tar.gz)
⬇ retrieved jst-config.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/jst-config-v0.16.0.tar.gz)
∗ installed jane-street-headers.v0.16.0
⬇ retrieved ocaml-compiler-libs.v0.12.4 (https://github.com/janestreet/ocaml-compiler-libs/releases/download/v0.12.4/ocaml-compiler-libs-v0.12.4.tbz)
⬇ retrieved ppx_assert.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_assert-v0.16.0.tar.gz)
⬇ retrieved ppx_base.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_base-v0.16.0.tar.gz)
⬇ retrieved ppx_cold.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_cold-v0.16.0.tar.gz)
⬇ retrieved ppx_compare.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_compare-v0.16.0.tar.gz)
⬇ retrieved ppx_derivers.1.2.1 (https://github.com/ocaml-ppx/ppx_derivers/archive/1.2.1.tar.gz)
⬇ retrieved ppx_enumerate.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_enumerate-v0.16.0.tar.gz)
⬇ retrieved ppx_expect.v0.16.1 (https://github.com/janestreet/ppx_expect/archive/refs/tags/v0.16.1.tar.gz)
∗ installed ppx_derivers.1.2.1
⬇ retrieved ppx_globalize.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_globalize-v0.16.0.tar.gz)
⬇ retrieved ppx_hash.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_hash-v0.16.0.tar.gz)
⬇ retrieved ppx_here.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_here-v0.16.0.tar.gz)
⬇ retrieved ppx_inline_test.v0.16.1 (https://github.com/janestreet/ppx_inline_test/archive/refs/tags/v0.16.1.tar.gz)
⬇ retrieved ppx_optcomp.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_optcomp-v0.16.0.tar.gz)
∗ installed dune-configurator.3.18.0
∗ installed ocaml-compiler-libs.v0.12.4
⬇ retrieved ppx_sexp_conv.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_sexp_conv-v0.16.0.tar.gz)
⬇ retrieved ppxlib.0.35.0 (https://github.com/ocaml-ppx/ppxlib/releases/download/0.35.0/ppxlib-0.35.0.tbz)
⬇ retrieved re.1.12.0 (https://github.com/ocaml/ocaml-re/releases/download/1.12.0/re-1.12.0.tbz)
⬇ retrieved seq.base (2 extra sources)
⬇ retrieved seq.base (2 extra sources)
∗ installed seq.base
⬇ retrieved sexplib0.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexplib0-v0.16.0.tar.gz)
⬇ retrieved stdio.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/stdio-v0.16.0.tar.gz)
⬇ retrieved stdlib-shims.0.3.0 (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz)
⬇ retrieved time_now.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/time_now-v0.16.0.tar.gz)
∗ installed sexplib0.v0.16.0
⊘ removed bitwuzla-cxx.0.7.0
∗ installed stdlib-shims.0.3.0
∗ installed re.1.12.0
∗ installed base.v0.16.4
∗ installed stdio.v0.16.0
∗ installed ppxlib.0.35.0
∗ installed ppx_globalize.v0.16.0
∗ installed ppx_optcomp.v0.16.0
∗ installed ppx_cold.v0.16.0
∗ installed ppx_here.v0.16.0
∗ installed ppx_enumerate.v0.16.0
∗ installed ppx_compare.v0.16.0
∗ installed ppx_sexp_conv.v0.16.0
∗ installed ppx_hash.v0.16.0
∗ installed ppx_assert.v0.16.0
∗ installed ppx_base.v0.16.0
∗ installed jst-config.v0.16.0
∗ installed time_now.v0.16.0
∗ installed ppx_inline_test.v0.16.1
∗ installed ppx_expect.v0.16.1
∗ installed bitwuzla-cxx.0.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-16 21:28.37 ---> saved as "e14e63df0090029c3e1759f53134983616b7740ab42d3961bb907f0bb25623a6"
/home/opam: (run (shell "opam reinstall --with-test --verbose bitwuzla-cxx.0.7.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\" != 'bitwuzla-cxx.0.7.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
↻ bitwuzla-cxx 0.7.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [bitwuzla-cxx: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "bitwuzla-cxx" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/bitwuzla-cxx.0.7.0)
- (cd _build/default/vendor && /usr/sbin/patch -p1 --directory bitwuzla) < _build/default/vendor/patch/0001-api-Add-hook-for-ocaml-z-value.patch
- File include/bitwuzla/cpp/bitwuzla.h is read-only; trying to patch anyway
- patching file include/bitwuzla/cpp/bitwuzla.h
- File src/lib/bv/bitvector.h is read-only; trying to patch anyway
- patching file src/lib/bv/bitvector.h
- (cd _build/default/vendor && /usr/sbin/patch -p1 --directory bitwuzla) < _build/default/vendor/patch/0002-binding-Fix-segfault-with-parallel-instances.patch
- File include/bitwuzla/cpp/bitwuzla.h is read-only; trying to patch anyway
- patching file include/bitwuzla/cpp/bitwuzla.h
- File src/api/checks.h is read-only; trying to patch anyway
- patching file src/api/checks.h
- File src/api/cpp/bitwuzla.cpp is read-only; trying to patch anyway
- patching file src/api/cpp/bitwuzla.cpp
- File src/node/node_manager.cpp is read-only; trying to patch anyway
- patching file src/node/node_manager.cpp
- File src/node/node_manager.h is read-only; trying to patch anyway
- patching file src/node/node_manager.h
- File src/type/type_manager.cpp is read-only; trying to patch anyway
- patching file src/type/type_manager.cpp
- File src/type/type_manager.h is read-only; trying to patch anyway
- patching file src/type/type_manager.h
λ compiled bitwuzla-cxx.0.7.0
⊘ removed bitwuzla-cxx.0.7.0
∗ installed bitwuzla-cxx.0.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-16 21:29.26 ---> saved as "86ea9077a6b4a513f32b70c37e54826cf57ea2c305cb2d0620747b6c5a831b3d"
Job succeeded
2025-04-16 21:29.36: Job succeeded