(for PR #26626)
2024-09-26 15:55.47: New job: test bitwuzla.1.0.4 with conf-gmp.4, using opam dev from https://github.com/ocaml/opam-repository.git#refs/pull/26626/head (f0506c7525c71122bbde4b8548e98795d0ded492) on debian-12-ocaml-5.2/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/26626/head" && git reset --hard f0506c75 git fetch origin master git merge --no-edit e8adc678c94cce378a663563e9f1c2eb1248708d cat > ../Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-12-ocaml-5.2@sha256:1050c6fd05ca7c28887496fad48113ea8ceac69e644c0dec95b22b9b1340481a USER 1000:1000 WORKDIR /home/opam RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam RUN opam init --reinit -ni RUN uname -rs && opam exec -- ocaml -version && opam --version ENV OPAMDOWNLOADJOBS="1" ENV OPAMERRLOGLEN="0" ENV OPAMSOLVERTIMEOUT="1000" 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 conf-gmp.4 4 RUN opam reinstall conf-gmp.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 "\"debian-12\""; then \ echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \ fi; \ test "$pkg" != 'conf-gmp.4' && partial_fails="$partial_fails $pkg"; \ done; \ test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \ exit 1 RUN opam option solver=builtin-0install RUN opam reinstall bitwuzla.1.0.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 "\"debian-12\""; then \ echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \ fi; \ test "$pkg" != 'bitwuzla.1.0.4' && partial_fails="$partial_fails $pkg"; \ done; \ test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \ exit 1 RUN opam option solver=builtin-0install RUN (opam reinstall --with-test bitwuzla.1.0.4) || true RUN opam reinstall --with-test --verbose bitwuzla.1.0.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 "\"debian-12\""; then \ echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \ fi; \ test "$pkg" != 'bitwuzla.1.0.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 . 2024-09-26 15:55.47: Using cache hint "ocaml/opam:debian-12-ocaml-5.2@sha256:1050c6fd05ca7c28887496fad48113ea8ceac69e644c0dec95b22b9b1340481a-conf-gmp.4-bitwuzla.1.0.4-f0506c7525c71122bbde4b8548e98795d0ded492" 2024-09-26 15:55.47: Using OBuilder spec: ((from ocaml/opam:debian-12-ocaml-5.2@sha256:1050c6fd05ca7c28887496fad48113ea8ceac69e644c0dec95b22b9b1340481a) (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 "uname -rs && opam exec -- ocaml -version && opam --version")) (env OPAMDOWNLOADJOBS 1) (env OPAMERRLOGLEN 0) (env OPAMSOLVERTIMEOUT 1000) (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 conf-gmp.4 4")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall conf-gmp.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 \"\\\"debian-12\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n test \"$pkg\" != 'conf-gmp.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 (shell "opam option solver=builtin-0install")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall bitwuzla.1.0.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 \"\\\"debian-12\\\"\"; 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.1.0.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 (shell "opam option solver=builtin-0install")) (run (network host) (shell "(opam reinstall --with-test bitwuzla.1.0.4) || true")) (run (shell "opam reinstall --with-test --verbose bitwuzla.1.0.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 \"\\\"debian-12\\\"\"; 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.1.0.4' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) ) 2024-09-26 15:55.47: Waiting for resource in pool OCluster 2024-09-26 16:31.29: Waiting for worker… 2024-09-26 16:35.00: Got resource from pool OCluster Building on x86-bm-c17.sw.ocaml.org All commits already cached Updating files: 61% (20003/32305) Updating files: 62% (20030/32305) Updating files: 63% (20353/32305) Updating files: 64% (20676/32305) Updating files: 65% (20999/32305) Updating files: 66% (21322/32305) Updating files: 67% (21645/32305) Updating files: 68% (21968/32305) Updating files: 69% (22291/32305) Updating files: 70% (22614/32305) Updating files: 71% (22937/32305) Updating files: 72% (23260/32305) Updating files: 73% (23583/32305) Updating files: 74% (23906/32305) Updating files: 75% (24229/32305) Updating files: 76% (24552/32305) Updating files: 77% (24875/32305) Updating files: 78% (25198/32305) Updating files: 79% (25521/32305) Updating files: 80% (25844/32305) Updating files: 81% (26168/32305) Updating files: 82% (26491/32305) Updating files: 83% (26814/32305) Updating files: 84% (27137/32305) Updating files: 85% (27460/32305) Updating files: 86% (27783/32305) Updating files: 87% (28106/32305) Updating files: 88% (28429/32305) Updating files: 89% (28752/32305) Updating files: 90% (29075/32305) Updating files: 91% (29398/32305) Updating files: 92% (29721/32305) Updating files: 93% (30044/32305) Updating files: 94% (30367/32305) Updating files: 95% (30690/32305) Updating files: 96% (31013/32305) Updating files: 97% (31336/32305) Updating files: 98% (31659/32305) Updating files: 99% (31982/32305) Updating files: 100% (32305/32305) Updating files: 100% (32305/32305), done. HEAD is now at e8adc678c9 Merge pull request #26618 from samoht/release-semaphore-compat-1.0.2 Updating e8adc678c9..f0506c7525 Fast-forward packages/conf-gmp/conf-gmp.4/opam | 2 ++ 1 file changed, 2 insertions(+) (from ocaml/opam:debian-12-ocaml-5.2@sha256:1050c6fd05ca7c28887496fad48113ea8ceac69e644c0dec95b22b9b1340481a) 2024-09-26 16:35.03 ---> using "aa1c70c22835e62cc052036e4104b963d3e9577623e985ebbb1bc77a1f076a27" from cache /: (user (uid 1000) (gid 1000)) /: (workdir /home/opam) /home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam")) 2024-09-26 16:35.03 ---> using "6e481f28f3efaba02654d1a52b4f8831dd8fe29a5166ed86b2a2f432c94e7dc3" 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 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. Continue? [y/n] y [NOTE] The 'jobs' option was reset, its value was 39 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=39 --global Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [default] synchronised from file:///home/opam/opam-repository 2024-09-26 16:35.03 ---> using "8beecfa5de26fd0186b6b1d5d7ab6cee7eca7a0cb03aba3730ebe9e3f72f407e" from cache /home/opam: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 5.15.0-121-generic The OCaml toplevel, version 5.2.0 2.3.0~alpha~dev 2024-09-26 16:35.03 ---> using "8183e7e0e33f9a27eacb2a093c56bc4a135c0039c7063d3b6694d35b5402f9a5" from cache /home/opam: (env OPAMDOWNLOADJOBS 1) /home/opam: (env OPAMERRLOGLEN 0) /home/opam: (env OPAMSOLVERTIMEOUT 1000) /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/")) 2024-09-26 16:35.03 ---> using "67e0d22a6c5d829077a4c303598cb875ad7344d32f2d4ecf28128449c4705bcc" from cache /home/opam: (copy (src .) (dst opam-repository/)) 2024-09-26 16:35.05 ---> using "63150ab47d04400dd3ccdccc92066b1b94c62d3d8331c00a0d249782b0474cc5" from cache /home/opam: (run (shell "opam repository set-url --strict default opam-repository/")) [default] Initialised 2024-09-26 16:35.05 ---> using "1a0eaa417b7e2ea07ec305a9416f52f30530ff13b9dc132d5a772279eacc7c57" from cache /home/opam: (run (network host) (shell "opam update --depexts || true")) + /usr/bin/sudo "apt-get" "update" - Hit:1 http://deb.debian.org/debian bookworm InRelease - Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] - Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] - Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [182 kB] - Fetched 286 kB in 0s (1164 kB/s) - Reading package lists... 2024-09-26 16:35.05 ---> using "0c7f152f8d41681ac7fc12be675633448754bffe6b24362e11306ae51374f334" from cache /home/opam: (run (shell "opam pin add -k version -yn conf-gmp.4 4")) conf-gmp is now pinned to version 4 2024-09-26 16:35.05 ---> using "7f321a57b95cd9d0ddbf797248fe632ee7b09314b1b5b5309a6bc9e10ee44fdd" from cache /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall conf-gmp.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 \"\\\"debian-12\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n test \"$pkg\" != 'conf-gmp.4' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) conf-gmp.4 is not installed. Install it? [y/n] y The following actions will be performed: === install 1 package - install conf-gmp 4 (pinned) The following system packages will first need to be installed: libgmp-dev <><> 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" - debconf: delaying package configuration, since apt-utils is not installed - 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 ... 18776 files and directories currently installed.) - Preparing to unpack .../libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ... - Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ... - Selecting previously unselected package libgmp-dev:amd64. - Preparing to unpack .../libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ... - Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ... - Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ... - Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ... - Processing triggers for libc-bin (2.36-9+deb12u8) ... <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved conf-gmp.4 (cached) -> installed conf-gmp.4 Done. # To update the current shell environment, run: eval $(opam env) 2024-09-26 16:35.05 ---> using "b4e5761a91c732f3fcb6532761e18c2ecb607318528bcfe3c0cb55b908966e5b" from cache /home/opam: (run (shell "opam option solver=builtin-0install")) Set to 'builtin-0install' the field solver in global configuration 2024-09-26 16:35.05 ---> using "02dc9e408b56a48bb8865d375190ffbd4779e9b70dc6448519a6deb0ccfd5750" from cache /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall bitwuzla.1.0.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 \"\\\"debian-12\\\"\"; 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.1.0.4' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) bitwuzla.1.0.4 is not installed. Install it? [y/n] y The following actions will be performed: === install 9 packages - install bitwuzla 1.0.4 - install bitwuzla-c 1.0.4 [required by bitwuzla] - install conf-g++ 1.0 [required by bitwuzla-c] - install conf-gcc 1.0 [required by bitwuzla-c] - install conf-git 1.1 [required by bitwuzla-c] - install conf-pkg-config 3 [required by zarith] - install dune 3.16.0 [required by bitwuzla] - install ocamlfind 1.9.6 [required by zarith] - install zarith 1.14 [required by bitwuzla] The following system packages will first need to be installed: 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" "pkg-config" - debconf: delaying package configuration, since apt-utils is not installed - Selecting previously unselected package libpkgconf3: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 ... 18798 files and directories currently installed.) - Preparing to unpack .../libpkgconf3_1.8.1-1_amd64.deb ... - Unpacking libpkgconf3:amd64 (1.8.1-1) ... - Selecting previously unselected package pkgconf-bin. - Preparing to unpack .../pkgconf-bin_1.8.1-1_amd64.deb ... - Unpacking pkgconf-bin (1.8.1-1) ... - Selecting previously unselected package pkgconf:amd64. - Preparing to unpack .../pkgconf_1.8.1-1_amd64.deb ... - Unpacking pkgconf:amd64 (1.8.1-1) ... - Selecting previously unselected package pkg-config:amd64. - Preparing to unpack .../pkg-config_1.8.1-1_amd64.deb ... - Unpacking pkg-config:amd64 (1.8.1-1) ... - Setting up libpkgconf3:amd64 (1.8.1-1) ... - Setting up pkgconf-bin (1.8.1-1) ... - Setting up pkgconf:amd64 (1.8.1-1) ... - Setting up pkg-config:amd64 (1.8.1-1) ... - Processing triggers for libc-bin (2.36-9+deb12u8) ... <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved bitwuzla.1.0.4, bitwuzla-c.1.0.4 (cached) -> installed conf-gcc.1.0 -> installed conf-git.1.1 -> installed conf-pkg-config.3 -> installed conf-g++.1.0 -> retrieved dune.3.16.0 (cached) -> retrieved ocamlfind.1.9.6 (cached) -> retrieved zarith.1.14 (cached) -> installed ocamlfind.1.9.6 -> installed zarith.1.14 -> installed dune.3.16.0 -> installed bitwuzla-c.1.0.4 -> installed bitwuzla.1.0.4 Done. # To update the current shell environment, run: eval $(opam env) 2024-09-26 16:36.28 ---> saved as "d327ab0e2a679cd2d6cd63823f4ad9459fa5d9f5aeb67ce400cf9d79b3ddd080" /home/opam: (run (shell "opam option solver=builtin-0install")) No modification in global configuration 2024-09-26 16:36.29 ---> saved as "7300f1184fd38c6313684d3fb3cb1ba3fcf2c6dd43c31839e057700b5ae221ad" /home/opam: (run (network host) (shell "(opam reinstall --with-test bitwuzla.1.0.4) || true")) The following actions will be performed: === recompile 1 package - recompile bitwuzla 1.0.4 === install 26 packages - install base v0.17.1 [required by ppx_expect] - install csexp 1.5.2 [required by dune-configurator] - install dune-configurator 3.16.0 [required by base] - install jane-street-headers v0.17.0 [required by time_now] - install jst-config v0.17.0 [required by time_now] - install ocaml-compiler-libs v0.17.0 [required by ppxlib] - install ocaml_intrinsics_kernel v0.17.1 [required by base] - install ppx_assert v0.17.0 [required by jst-config] - install ppx_base v0.17.0 [required by time_now] - install ppx_cold v0.17.0 [required by ppx_base] - install ppx_compare v0.17.0 [required by ppx_base] - install ppx_derivers 1.2.1 [required by ppxlib] - install ppx_enumerate v0.17.0 [required by ppx_base] - install ppx_expect v0.17.0 [required by bitwuzla] - install ppx_globalize v0.17.0 [required by ppx_base] - install ppx_hash v0.17.0 [required by ppx_base] - install ppx_here v0.17.0 [required by ppx_expect] - install ppx_inline_test v0.17.0 [required by bitwuzla] - install ppx_optcomp v0.17.0 [required by time_now] - install ppx_sexp_conv v0.17.0 [required by ppx_base] - install ppxlib 0.33.0 [required by ppx_expect] - install ppxlib_jane v0.17.0 [required by ppx_globalize, ppx_enumerate, ppx_hash] - install sexplib0 v0.17.0 [required by base] - install stdio v0.17.0 [required by ppx_expect] - install stdlib-shims 0.3.0 [required by ppxlib] - install time_now v0.17.0 [required by ppx_inline_test] <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved base.v0.17.1 (https://github.com/janestreet/base/archive/refs/tags/v0.17.1.tar.gz) -> retrieved bitwuzla.1.0.4 (https://github.com/bitwuzla/ocaml-bitwuzla/releases/download/1.0.4/bitwuzla-1.0.4.tbz) -> 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.16.0 (https://github.com/ocaml/dune/releases/download/3.16.0/dune-3.16.0.tbz) -> retrieved jane-street-headers.v0.17.0 (https://github.com/janestreet/jane-street-headers/archive/refs/tags/v0.17.0.tar.gz) -> installed jane-street-headers.v0.17.0 -> retrieved jst-config.v0.17.0 (https://github.com/janestreet/jst-config/archive/refs/tags/v0.17.0.tar.gz) -> retrieved ocaml-compiler-libs.v0.17.0 (https://github.com/janestreet/ocaml-compiler-libs/archive/refs/tags/v0.17.0.tar.gz) -> retrieved ocaml_intrinsics_kernel.v0.17.1 (https://github.com/janestreet/ocaml_intrinsics_kernel/archive/refs/tags/v0.17.1.tar.gz) -> installed dune-configurator.3.16.0 -> retrieved ppx_assert.v0.17.0 (https://github.com/janestreet/ppx_assert/archive/refs/tags/v0.17.0.tar.gz) -> installed ocaml_intrinsics_kernel.v0.17.1 -> retrieved ppx_base.v0.17.0 (https://github.com/janestreet/ppx_base/archive/refs/tags/v0.17.0.tar.gz) -> installed ocaml-compiler-libs.v0.17.0 -> retrieved ppx_cold.v0.17.0 (https://github.com/janestreet/ppx_cold/archive/refs/tags/v0.17.0.tar.gz) -> retrieved ppx_compare.v0.17.0 (https://github.com/janestreet/ppx_compare/archive/refs/tags/v0.17.0.tar.gz) -> retrieved ppx_derivers.1.2.1 (https://github.com/ocaml-ppx/ppx_derivers/archive/1.2.1.tar.gz) -> installed ppx_derivers.1.2.1 -> retrieved ppx_enumerate.v0.17.0 (https://github.com/janestreet/ppx_enumerate/archive/refs/tags/v0.17.0.tar.gz) -> retrieved ppx_expect.v0.17.0 (https://github.com/janestreet/ppx_expect/archive/refs/tags/v0.17.0.tar.gz) -> retrieved ppx_globalize.v0.17.0 (https://github.com/janestreet/ppx_globalize/archive/refs/tags/v0.17.0.tar.gz) -> retrieved ppx_hash.v0.17.0 (https://github.com/janestreet/ppx_hash/archive/refs/tags/v0.17.0.tar.gz) -> retrieved ppx_here.v0.17.0 (https://github.com/janestreet/ppx_here/archive/refs/tags/v0.17.0.tar.gz) -> retrieved ppx_inline_test.v0.17.0 (https://github.com/janestreet/ppx_inline_test/archive/refs/tags/v0.17.0.tar.gz) -> retrieved ppx_optcomp.v0.17.0 (https://github.com/janestreet/ppx_optcomp/archive/refs/tags/v0.17.0.tar.gz) -> retrieved ppx_sexp_conv.v0.17.0 (https://github.com/janestreet/ppx_sexp_conv/archive/refs/tags/v0.17.0.tar.gz) -> retrieved ppxlib.0.33.0 (https://github.com/ocaml-ppx/ppxlib/releases/download/0.33.0/ppxlib-0.33.0.tbz) -> retrieved ppxlib_jane.v0.17.0 (https://github.com/janestreet/ppxlib_jane/archive/refs/tags/v0.17.0.tar.gz) -> retrieved sexplib0.v0.17.0 (https://github.com/janestreet/sexplib0/archive/refs/tags/v0.17.0.tar.gz) -> retrieved stdio.v0.17.0 (https://github.com/janestreet/stdio/archive/refs/tags/v0.17.0.tar.gz) -> installed sexplib0.v0.17.0 -> retrieved stdlib-shims.0.3.0 (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz) -> removed bitwuzla.1.0.4 -> installed stdlib-shims.0.3.0 -> retrieved time_now.v0.17.0 (https://github.com/janestreet/time_now/archive/refs/tags/v0.17.0.tar.gz) -> installed base.v0.17.1 -> installed stdio.v0.17.0 -> installed ppxlib.0.33.0 -> installed ppx_optcomp.v0.17.0 -> installed ppxlib_jane.v0.17.0 -> installed ppx_cold.v0.17.0 -> installed ppx_here.v0.17.0 -> installed ppx_globalize.v0.17.0 -> installed ppx_enumerate.v0.17.0 -> installed ppx_compare.v0.17.0 -> installed ppx_sexp_conv.v0.17.0 -> installed ppx_hash.v0.17.0 -> installed ppx_assert.v0.17.0 -> installed ppx_base.v0.17.0 -> installed jst-config.v0.17.0 -> installed time_now.v0.17.0 -> installed ppx_inline_test.v0.17.0 -> installed ppx_expect.v0.17.0 -> installed bitwuzla.1.0.4 Done. # To update the current shell environment, run: eval $(opam env) 2024-09-26 16:37.39 ---> saved as "54d10c741348c75dfb16e1bc49975040c6a891726dc4b51dc2e32c51d82105fe" /home/opam: (run (shell "opam reinstall --with-test --verbose bitwuzla.1.0.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 \"\\\"debian-12\\\"\"; 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.1.0.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 - recompile bitwuzla 1.0.4 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> Processing 1/4: [bitwuzla.1.0.4: extract] -> retrieved bitwuzla.1.0.4 (cached) Processing 2/4: [bitwuzla: dune build] + /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "bitwuzla" "-j" "31" "@install" "@runtest" (CWD=/home/opam/.opam/5.2/.opam-switch/build/bitwuzla.1.0.4) -> compiled bitwuzla.1.0.4 -> removed bitwuzla.1.0.4 -> installed bitwuzla.1.0.4 Done. # To update the current shell environment, run: eval $(opam env) 2024-09-26 16:37.54 ---> saved as "2e0a8298a55226419c26f6d76b6b6cb3c707fd3f7805f7b222ef2088fe7bdf3c" Job succeeded 2024-09-26 16:38.02: Job succeeded