(for PR #28222)
2025-07-22 12:24.51: New job: test bap-stub-resolver.2.3.0 with lwt.6.0.0~alpha01, using opam 2.3 from https://github.com/ocaml/opam-repository.git#refs/pull/28222/head (381d421c95f23c7e41d7bd80fe4ee0fa7b4fca2f) on debian-12-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/28222/head" && git reset --hard 381d421c git fetch origin master git merge --no-edit 14fd69dba01fe02a6cbf63a81a67897e0f52cbfc cat > ../Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-12-ocaml-4.14@sha256:4216ef78f0a2edc0e9ef5d391d2d742bcfb67b1d97dcc5502a71bcab91cf7cca 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 lwt.6.0.0~alpha01 6.0.0~alpha01 RUN opam reinstall lwt.6.0.0~alpha01; \ 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" != 'lwt.6.0.0~alpha01' && partial_fails="$partial_fails $pkg"; \ done; \ test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \ exit 1 RUN opam reinstall bap-stub-resolver.2.3.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-12\""; then \ echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \ fi; \ test "$pkg" != 'bap-stub-resolver.2.3.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 bap-stub-resolver.2.3.0) || true RUN opam reinstall --with-test --verbose bap-stub-resolver.2.3.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-12\""; then \ echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \ fi; \ test "$pkg" != 'bap-stub-resolver.2.3.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-07-22 12:24.51: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:4216ef78f0a2edc0e9ef5d391d2d742bcfb67b1d97dcc5502a71bcab91cf7cca-lwt.6.0.0~alpha01-bap-stub-resolver.2.3.0-381d421c95f23c7e41d7bd80fe4ee0fa7b4fca2f" 2025-07-22 12:24.51: Using OBuilder spec: ((from ocaml/opam:debian-12-ocaml-4.14@sha256:4216ef78f0a2edc0e9ef5d391d2d742bcfb67b1d97dcc5502a71bcab91cf7cca) (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 lwt.6.0.0~alpha01 6.0.0~alpha01")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall lwt.6.0.0~alpha01;\ \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\" != 'lwt.6.0.0~alpha01' && 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 bap-stub-resolver.2.3.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-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\" != 'bap-stub-resolver.2.3.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 bap-stub-resolver.2.3.0) || true")) (run (shell "opam reinstall --with-test --verbose bap-stub-resolver.2.3.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-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\" != 'bap-stub-resolver.2.3.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-07-22 12:24.51: Waiting for resource in pool OCluster 2025-07-22 13:57.42: Waiting for worker… 2025-07-22 13:59.25: Got resource from pool OCluster Building on clete.caelum.ci.dev All commits already cached Updating files: 67% (12024/17879) Updating files: 68% (12158/17879) Updating files: 69% (12337/17879) Updating files: 70% (12516/17879) Updating files: 71% (12695/17879) Updating files: 72% (12873/17879) Updating files: 73% (13052/17879) Updating files: 74% (13231/17879) Updating files: 75% (13410/17879) Updating files: 76% (13589/17879) Updating files: 77% (13767/17879) Updating files: 78% (13946/17879) Updating files: 79% (14125/17879) Updating files: 80% (14304/17879) Updating files: 81% (14482/17879) Updating files: 82% (14661/17879) Updating files: 83% (14840/17879) Updating files: 84% (15019/17879) Updating files: 85% (15198/17879) Updating files: 86% (15376/17879) Updating files: 87% (15555/17879) Updating files: 88% (15734/17879) Updating files: 89% (15913/17879) Updating files: 90% (16092/17879) Updating files: 91% (16270/17879) Updating files: 92% (16449/17879) Updating files: 93% (16628/17879) Updating files: 94% (16807/17879) Updating files: 95% (16986/17879) Updating files: 96% (17164/17879) Updating files: 97% (17343/17879) Updating files: 98% (17522/17879) Updating files: 99% (17701/17879) Updating files: 100% (17879/17879) Updating files: 100% (17879/17879), done. HEAD is now at 14fd69dba0 Merge pull request #28217 from sim642/opam-state-2.4-upper-bounds Updating 14fd69dba0..381d421c95 Fast-forward packages/lwt/lwt.6.0.0~alpha01/opam | 69 +++++++++++++++++++++++ packages/lwt_direct/lwt_direct.6.0.0~alpha01/opam | 44 +++++++++++++++ packages/lwt_log/lwt_log.1.1.0/opam | 2 +- packages/lwt_log/lwt_log.1.1.1/opam | 2 +- packages/lwt_log/lwt_log.1.1.2/opam | 2 +- 5 files changed, 116 insertions(+), 3 deletions(-) create mode 100644 packages/lwt/lwt.6.0.0~alpha01/opam create mode 100644 packages/lwt_direct/lwt_direct.6.0.0~alpha01/opam (from ocaml/opam:debian-12-ocaml-4.14@sha256:4216ef78f0a2edc0e9ef5d391d2d742bcfb67b1d97dcc5502a71bcab91cf7cca) Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:4216ef78f0a2edc0e9ef5d391d2d742bcfb67b1d97dcc5502a71bcab91cf7cca' locally docker.io/ocaml/opam@sha256:4216ef78f0a2edc0e9ef5d391d2d742bcfb67b1d97dcc5502a71bcab91cf7cca: Pulling from ocaml/opam 010b17fc78a8: Pulling fs layer 010b17fc78a8: Verifying Checksum 010b17fc78a8: Download complete 010b17fc78a8: Pull complete Digest: sha256:4216ef78f0a2edc0e9ef5d391d2d742bcfb67b1d97dcc5502a71bcab91cf7cca Status: Downloaded newer image for ocaml/opam@sha256:4216ef78f0a2edc0e9ef5d391d2d742bcfb67b1d97dcc5502a71bcab91cf7cca 2025-07-22 13:59.30 ---> using "bdea20d69702e45393a0b0f1780f2fd036aae0c7f0fb3d2d6afe87f5376157fc" from cache /: (user (uid 1000) (gid 1000)) /: (workdir /home/opam) /home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam")) 2025-07-22 13:59.30 ---> using "ee71950878321ce155700562b11a0514307f63e65f7478d54e41eb7be44564b6" 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 Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [default] Initialised 2025-07-22 13:59.30 ---> using "a7832be132102734df19669daf0993667820454fb4d7c53d26819850a712f475" 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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724) # self-upgrade no # system arch=x86_64 os=linux os-distribution=debian os-version=12 # 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-07-22 13:59.30 ---> using "aa2cbbd7d952c62c70a303b10ea47bfb39bfbc5ca8a6dcd87eaca9df308252e0" 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/")) 2025-07-22 13:59.30 ---> using "3c7bfa3ccbe6e216ad7928c76c0026a183769750502f7875b3385fa810369906" from cache /home/opam: (copy (src .) (dst opam-repository/)) 2025-07-22 13:59.31 ---> using "22f300dc875bc070b45198c973d26d79724a6b311c25e1c1dc873690ac3b781c" from cache /home/opam: (run (shell "opam repository set-url --strict default opam-repository/")) [default] Initialised 2025-07-22 13:59.32 ---> using "5c9e3adcefff8dffac8cbc95a529d8d761c8cb1b0977851c9d370007014514ec" 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] - Fetched 103 kB in 0s (216 kB/s) - Reading package lists... - 2025-07-22 13:59.32 ---> using "a2e44423a34c28cd4f374b9db36fd7b84f29ed2d6b6ae9baf94f051eea0a6658" from cache /home/opam: (run (shell "opam pin add -k version -yn lwt.6.0.0~alpha01 6.0.0~alpha01")) lwt is now pinned to version 6.0.0~alpha01 2025-07-22 13:59.32 ---> using "6649a62b0acf8cb62c880e844607ac39d10fbc97547c13bc54d3b66679b15b64" from cache /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall lwt.6.0.0~alpha01;\ \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\" != 'lwt.6.0.0~alpha01' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) lwt.6.0.0~alpha01 is not installed. Install it? [y/n] y The following actions will be performed: === install 9 packages - install base-bytes base [required by ocplib-endian] - install cppo 1.8.0 [required by lwt] - install csexp 1.5.2 [required by dune-configurator] - install domain_shims 0.1.0 [required by lwt] - install dune 3.19.1 [required by lwt] - install dune-configurator 3.19.1 [required by lwt] - install lwt 6.0.0~alpha01 (pinned) - install ocamlfind 1.9.8 [required by base-bytes] - install ocplib-endian 1.2 [required by lwt] <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved cppo.1.8.0 (cached) -> retrieved csexp.1.5.2 (cached) -> retrieved domain_shims.0.1.0 (cached) -> retrieved dune.3.19.1, dune-configurator.3.19.1 (cached) -> retrieved lwt.6.0.0~alpha01 (cached) -> retrieved ocamlfind.1.9.8 (cached) -> retrieved ocplib-endian.1.2 (cached) -> installed ocamlfind.1.9.8 -> installed base-bytes.base -> installed dune.3.19.1 -> installed domain_shims.0.1.0 -> installed csexp.1.5.2 -> installed cppo.1.8.0 -> installed ocplib-endian.1.2 -> installed dune-configurator.3.19.1 -> installed lwt.6.0.0~alpha01 Done. # To update the current shell environment, run: eval $(opam env) 2025-07-22 13:59.32 ---> using "4c36506109ba1383d13519a00a451cda67f7ee8ae93e3ab9f39d50275ebdaf6e" from cache /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall bap-stub-resolver.2.3.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-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\" != 'bap-stub-resolver.2.3.0' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) bap-stub-resolver.2.3.0 is not installed. Install it? [y/n] y The following actions will be performed: === install 113 packages - install angstrom 0.16.1 [required by uri] - install bap-abi 2.3.0 [required by bap-stub-resolver] - install bap-build 2.3.0 [required by bap-main] - install bap-bundle 2.3.0 [required by bap-std] - install bap-core-theory 2.3.0 [required by bap-stub-resolver] - install bap-future 2.3.0 [required by bap-std] - install bap-knowledge 2.3.0 [required by bap-stub-resolver] - install bap-main 2.3.0 [required by bap-stub-resolver] - install bap-plugins 2.3.0 [required by bap-std] - install bap-recipe 2.3.0 [required by bap-main] - install bap-relation 2.3.0 [required by bap-stub-resolver] - install bap-std 2.3.0 [required by bap-stub-resolver] - install bap-stub-resolver 2.3.0 - install base v0.14.3 [required by bap-main, bap-relation] - install base_bigstring v0.14.0 [required by core_kernel] - install base_quickcheck v0.14.1 [required by core_kernel, ppx_bap] - install bigarray-compat 1.1.0 [required by mmap] - install bigstringaf 0.10.0 [required by angstrom] - install bin_prot v0.14.1 [required by bap-std] - install bitvec 2.3.0 [required by bap-stub-resolver] - install bitvec-binprot 2.3.0 [required by bap-core-theory] - install bitvec-order 2.3.0 [required by bap-stub-resolver] - install bitvec-sexp 2.3.0 [required by bap-stub-resolver] - install camlzip 1.13 [required by bap-std] - install cmdliner 1.3.0 [required by bap-std] - install conf-clang 1 [required by bap-std] - install conf-gmp 5 [required by bap-std] - install conf-pkg-config 4 [required by conf-zlib, zarith] - install conf-which 1 [required by bap-std] - install conf-zlib 1 [required by bap-std] - install core_kernel v0.14.2 [required by bap-stub-resolver] - install fieldslib v0.14.0 [required by core_kernel] - install fileutils 0.6.6 [required by bap-std] - install graphlib 2.3.0 [required by bap-std] - install jane-street-headers v0.14.0 [required by core_kernel] - install jst-config v0.14.1 [required by core_kernel] - install lambda-term 3.3.2 [required by utop] - install logs 0.9.0 [required by utop] - install lwt_react 1.2.0 [required by utop] - install mew 0.1.0 [required by mew_vi] - install mew_vi 0.5.0 [required by lambda-term] - install mmap 1.2.0 [required by bap-std] - install monads 2.3.0 [required by bap-std] - install num 1.6 [required by sexplib] - install oasis 0.4.11 [required by bap-std] - install ocaml-compiler-libs v0.12.4 [required by ppxlib] - install ocaml-syntax-shims 1.0.0 [required by angstrom] - install ocamlbuild 0.16.1 [required by oasis, bap-build] - install ocamlgraph 2.2.0 [required by graphlib] - install ocamlify 0.0.1 [required by oasis] - install ocamlmod 0.0.9 [required by oasis] - install octavius 1.2.2 [required by ppx_js_style] - install ogre 2.3.0 [required by bap-stub-resolver] - install ounit 2.2.7 [required by bap-stub-resolver] - install ounit2 2.2.7 [required by ounit] - install parsexp v0.14.2 [required by bap-recipe] - install ppx_assert v0.14.0 [required by core_kernel, ppx_bap] - install ppx_bap v0.14.0 [required by bap-stub-resolver] - install ppx_base v0.14.0 [required by core_kernel] - install ppx_bench v0.14.1 [required by ppx_bap] - install ppx_bin_prot v0.14.0 [required by ppx_bap] - install ppx_cold v0.14.0 [required by ppx_bap] - install ppx_compare v0.14.0 [required by ppx_bap] - install ppx_custom_printf v0.14.1 [required by ppx_jane] - install ppx_derivers 1.2.1 [required by ppxlib] - install ppx_enumerate v0.14.0 [required by ppx_bap] - install ppx_expect v0.14.2 [required by ppx_jane] - install ppx_fields_conv v0.14.2 [required by ppx_bap] - install ppx_fixed_literal v0.14.0 [required by ppx_jane] - install ppx_hash v0.14.0 [required by core_kernel, ppx_bap] - install ppx_here v0.14.0 [required by ppx_bap] - install ppx_inline_test v0.14.1 [required by core_kernel] - install ppx_jane v0.14.0 [required by core_kernel] - install ppx_js_style v0.14.1 [required by ppx_base] - install ppx_let v0.14.0 [required by ppx_jane] - install ppx_module_timer v0.14.0 [required by ppx_jane] - install ppx_optcomp v0.14.3 [required by core_kernel, ppx_bap] - install ppx_optional v0.14.0 [required by ppx_jane] - install ppx_pipebang v0.14.0 [required by ppx_jane] - install ppx_sexp_conv v0.14.3 [required by core_kernel, ppx_bap] - install ppx_sexp_message v0.14.1 [required by core_kernel] - install ppx_sexp_value v0.14.0 [required by ppx_bap] - install ppx_stable v0.14.1 [required by ppx_jane] - install ppx_string v0.14.1 [required by ppx_jane] - install ppx_typerep_conv v0.14.2 [required by ppx_jane] - install ppx_variants_conv v0.14.2 [required by ppx_bap] - install ppxlib 0.25.1 [required by ppx_bap] - install re 1.13.2 [required by ppx_expect] - install react 1.2.2 [required by utop] - install regular 2.3.0 [required by bap-std] - install result 1.5 [required by bap-std] - install seq base [required by ounit2] - install sexplib v0.14.0 [required by core_kernel] - install sexplib0 v0.14.0 [required by sexplib, base, bitvec-sexp] - install splittable_random v0.14.0 [required by core_kernel] - install stdio v0.14.0 [required by bap-main] - install stdlib-shims 0.3.0 [required by ounit2] - install stringext 1.6.0 [required by uri] - install time_now v0.14.0 [required by core_kernel] - install topkg 1.0.8 [required by uuidm, logs] - install trie 1.0.0 [required by mew] - install typerep v0.14.0 [required by core_kernel] - install uchar 0.0.2 [required by zed] - install uri 4.4.0 [required by bap-std] - install utop 2.15.0-1 [required by bap-std] - install uucp 16.0.0 [required by zed] - install uuidm 0.9.10 [required by bap-std] - install uuseg 16.0.0 [required by zed] - install uutf 1.0.4 [required by zed] - install variantslib v0.14.0 [required by core_kernel] - install xdg 3.19.1 [required by utop] - install zarith 1.14 [required by bap-std] - install zed 3.2.3 [required by utop] The following system packages will first need to be installed: clang libgmp-dev pkg-config zlib1g-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" "clang" "libgmp-dev" "pkg-config" "zlib1g-dev" - debconf: delaying package configuration, since apt-utils is not installed - Selecting previously unselected package libpipeline1: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 ... 18747 files and directories currently installed.) - Preparing to unpack .../libpipeline1_1.5.7-1_amd64.deb ... - Unpacking libpipeline1:amd64 (1.5.7-1) ... - Selecting previously unselected package binfmt-support. - Preparing to unpack .../binfmt-support_2.2.2-2_amd64.deb ... - Unpacking binfmt-support (2.2.2-2) ... - Selecting previously unselected package libpython3.11-minimal:amd64. - Preparing to unpack .../libpython3.11-minimal_3.11.2-6+deb12u6_amd64.deb ... - Unpacking libpython3.11-minimal:amd64 (3.11.2-6+deb12u6) ... - Selecting previously unselected package python3.11-minimal. - Preparing to unpack .../python3.11-minimal_3.11.2-6+deb12u6_amd64.deb ... - Unpacking python3.11-minimal (3.11.2-6+deb12u6) ... - Setting up libpython3.11-minimal:amd64 (3.11.2-6+deb12u6) ... - Setting up python3.11-minimal (3.11.2-6+deb12u6) ... - Selecting previously unselected package python3-minimal. - (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 ... 19076 files and directories currently installed.) - Preparing to unpack .../python3-minimal_3.11.2-1+b1_amd64.deb ... - Unpacking python3-minimal (3.11.2-1+b1) ... - Selecting previously unselected package media-types. - Preparing to unpack .../media-types_10.0.0_all.deb ... - Unpacking media-types (10.0.0) ... - Selecting previously unselected package libpython3.11-stdlib:amd64. - Preparing to unpack .../libpython3.11-stdlib_3.11.2-6+deb12u6_amd64.deb ... - Unpacking libpython3.11-stdlib:amd64 (3.11.2-6+deb12u6) ... - Selecting previously unselected package python3.11. - Preparing to unpack .../python3.11_3.11.2-6+deb12u6_amd64.deb ... - Unpacking python3.11 (3.11.2-6+deb12u6) ... - Selecting previously unselected package libpython3-stdlib:amd64. - Preparing to unpack .../libpython3-stdlib_3.11.2-1+b1_amd64.deb ... - Unpacking libpython3-stdlib:amd64 (3.11.2-1+b1) ... - Setting up python3-minimal (3.11.2-1+b1) ... - Selecting previously unselected package python3. - (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 ... 19486 files and directories currently installed.) - Preparing to unpack .../00-python3_3.11.2-1+b1_amd64.deb ... - Unpacking python3 (3.11.2-1+b1) ... - Selecting previously unselected package libicu72:amd64. - Preparing to unpack .../01-libicu72_72.1-3+deb12u1_amd64.deb ... - Unpacking libicu72:amd64 (72.1-3+deb12u1) ... - Selecting previously unselected package libxml2:amd64. - Preparing to unpack .../02-libxml2_2.9.14+dfsg-1.3~deb12u2_amd64.deb ... - Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u2) ... - Selecting previously unselected package libz3-4:amd64. - Preparing to unpack .../03-libz3-4_4.8.12-3.1_amd64.deb ... - Unpacking libz3-4:amd64 (4.8.12-3.1) ... - Selecting previously unselected package libllvm14:amd64. - Preparing to unpack .../04-libllvm14_1%3a14.0.6-12_amd64.deb ... - Unpacking libllvm14:amd64 (1:14.0.6-12) ... - Selecting previously unselected package libclang-cpp14. - Preparing to unpack .../05-libclang-cpp14_1%3a14.0.6-12_amd64.deb ... - Unpacking libclang-cpp14 (1:14.0.6-12) ... - Selecting previously unselected package libgc1:amd64. - Preparing to unpack .../06-libgc1_1%3a8.2.2-3_amd64.deb ... - Unpacking libgc1:amd64 (1:8.2.2-3) ... - Selecting previously unselected package libobjc4:amd64. - Preparing to unpack .../07-libobjc4_12.2.0-14+deb12u1_amd64.deb ... - Unpacking libobjc4:amd64 (12.2.0-14+deb12u1) ... - Selecting previously unselected package libobjc-12-dev:amd64. - Preparing to unpack .../08-libobjc-12-dev_12.2.0-14+deb12u1_amd64.deb ... - Unpacking libobjc-12-dev:amd64 (12.2.0-14+deb12u1) ... - Selecting previously unselected package libclang-common-14-dev. - Preparing to unpack .../09-libclang-common-14-dev_1%3a14.0.6-12_all.deb ... - Unpacking libclang-common-14-dev (1:14.0.6-12) ... - Selecting previously unselected package llvm-14-linker-tools. - Preparing to unpack .../10-llvm-14-linker-tools_1%3a14.0.6-12_amd64.deb ... - Unpacking llvm-14-linker-tools (1:14.0.6-12) ... - Selecting previously unselected package libclang1-14. - Preparing to unpack .../11-libclang1-14_1%3a14.0.6-12_amd64.deb ... - Unpacking libclang1-14 (1:14.0.6-12) ... - Selecting previously unselected package clang-14. - Preparing to unpack .../12-clang-14_1%3a14.0.6-12_amd64.deb ... - Unpacking clang-14 (1:14.0.6-12) ... - Selecting previously unselected package clang. - Preparing to unpack .../13-clang_1%3a14.0-55.7~deb12u1_amd64.deb ... - Unpacking clang (1:14.0-55.7~deb12u1) ... - Selecting previously unselected package icu-devtools. - Preparing to unpack .../14-icu-devtools_72.1-3+deb12u1_amd64.deb ... - Unpacking icu-devtools (72.1-3+deb12u1) ... - Selecting previously unselected package libc6-i386. - Preparing to unpack .../15-libc6-i386_2.36-9+deb12u10_amd64.deb ... - Unpacking libc6-i386 (2.36-9+deb12u10) ... - Selecting previously unselected package lib32gcc-s1. - Preparing to unpack .../16-lib32gcc-s1_12.2.0-14+deb12u1_amd64.deb ... - Unpacking lib32gcc-s1 (12.2.0-14+deb12u1) ... - Selecting previously unselected package lib32stdc++6. - Preparing to unpack .../17-lib32stdc++6_12.2.0-14+deb12u1_amd64.deb ... - Unpacking lib32stdc++6 (12.2.0-14+deb12u1) ... - Selecting previously unselected package libclang-rt-14-dev:amd64. - Preparing to unpack .../18-libclang-rt-14-dev_1%3a14.0.6-12_amd64.deb ... - Unpacking libclang-rt-14-dev:amd64 (1:14.0.6-12) ... - Selecting previously unselected package libnspr4:amd64. - Preparing to unpack .../19-libnspr4_2%3a4.35-1_amd64.deb ... - Unpacking libnspr4:amd64 (2:4.35-1) ... - Selecting previously unselected package libnss3:amd64. - Preparing to unpack .../20-libnss3_2%3a3.87.1-1+deb12u1_amd64.deb ... - Unpacking libnss3:amd64 (2:3.87.1-1+deb12u1) ... - Selecting previously unselected package nss-plugin-pem:amd64. - Preparing to unpack .../21-nss-plugin-pem_1.0.8+1-1_amd64.deb ... - Unpacking nss-plugin-pem:amd64 (1.0.8+1-1) ... - Selecting previously unselected package libcurl3-nss:amd64. - Preparing to unpack .../22-libcurl3-nss_7.88.1-10+deb12u12_amd64.deb ... - Unpacking libcurl3-nss:amd64 (7.88.1-10+deb12u12) ... - Selecting previously unselected package libffi-dev:amd64. - Preparing to unpack .../23-libffi-dev_3.4.4-1_amd64.deb ... - Unpacking libffi-dev:amd64 (3.4.4-1) ... - Selecting previously unselected package libgmpxx4ldbl:amd64. - Preparing to unpack .../24-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 .../25-libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ... - Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ... - Selecting previously unselected package libicu-dev:amd64. - Preparing to unpack .../26-libicu-dev_72.1-3+deb12u1_amd64.deb ... - Unpacking libicu-dev:amd64 (72.1-3+deb12u1) ... - Selecting previously unselected package libncurses6:amd64. - Preparing to unpack .../27-libncurses6_6.4-4_amd64.deb ... - Unpacking libncurses6:amd64 (6.4-4) ... - Selecting previously unselected package libncurses-dev:amd64. - Preparing to unpack .../28-libncurses-dev_6.4-4_amd64.deb ... - Unpacking libncurses-dev:amd64 (6.4-4) ... - Selecting previously unselected package libpfm4:amd64. - Preparing to unpack .../29-libpfm4_4.13.0-1_amd64.deb ... - Unpacking libpfm4:amd64 (4.13.0-1) ... - Selecting previously unselected package libpkgconf3:amd64. - Preparing to unpack .../30-libpkgconf3_1.8.1-1_amd64.deb ... - Unpacking libpkgconf3:amd64 (1.8.1-1) ... - Selecting previously unselected package libtinfo-dev:amd64. - Preparing to unpack .../31-libtinfo-dev_6.4-4_amd64.deb ... - Unpacking libtinfo-dev:amd64 (6.4-4) ... - Selecting previously unselected package libxml2-dev:amd64. - Preparing to unpack .../32-libxml2-dev_2.9.14+dfsg-1.3~deb12u2_amd64.deb ... - Unpacking libxml2-dev:amd64 (2.9.14+dfsg-1.3~deb12u2) ... - Selecting previously unselected package libyaml-0-2:amd64. - Preparing to unpack .../33-libyaml-0-2_0.2.5-1_amd64.deb ... - Unpacking libyaml-0-2:amd64 (0.2.5-1) ... - Selecting previously unselected package libz3-dev:amd64. - Preparing to unpack .../34-libz3-dev_4.8.12-3.1_amd64.deb ... - Unpacking libz3-dev:amd64 (4.8.12-3.1) ... - Selecting previously unselected package llvm-14-runtime. - Preparing to unpack .../35-llvm-14-runtime_1%3a14.0.6-12_amd64.deb ... - Unpacking llvm-14-runtime (1:14.0.6-12) ... - Selecting previously unselected package llvm-14. - Preparing to unpack .../36-llvm-14_1%3a14.0.6-12_amd64.deb ... - Unpacking llvm-14 (1:14.0.6-12) ... - Selecting previously unselected package python3-pkg-resources. - Preparing to unpack .../37-python3-pkg-resources_66.1.1-1+deb12u1_all.deb ... - Unpacking python3-pkg-resources (66.1.1-1+deb12u1) ... - Selecting previously unselected package python3-pygments. - Preparing to unpack .../38-python3-pygments_2.14.0+dfsg-1_all.deb ... - Unpacking python3-pygments (2.14.0+dfsg-1) ... - Selecting previously unselected package python3-yaml. - Preparing to unpack .../39-python3-yaml_6.0-3+b2_amd64.deb ... - Unpacking python3-yaml (6.0-3+b2) ... - Selecting previously unselected package llvm-14-tools. - Preparing to unpack .../40-llvm-14-tools_1%3a14.0.6-12_amd64.deb ... - Unpacking llvm-14-tools (1:14.0.6-12) ... - Selecting previously unselected package llvm-14-dev. - Preparing to unpack .../41-llvm-14-dev_1%3a14.0.6-12_amd64.deb ... - Unpacking llvm-14-dev (1:14.0.6-12) ... - Selecting previously unselected package pkgconf-bin. - Preparing to unpack .../42-pkgconf-bin_1.8.1-1_amd64.deb ... - Unpacking pkgconf-bin (1.8.1-1) ... - Selecting previously unselected package pkgconf:amd64. - Preparing to unpack .../43-pkgconf_1.8.1-1_amd64.deb ... - Unpacking pkgconf:amd64 (1.8.1-1) ... - Selecting previously unselected package pkg-config:amd64. - Preparing to unpack .../44-pkg-config_1.8.1-1_amd64.deb ... - Unpacking pkg-config:amd64 (1.8.1-1) ... - Selecting previously unselected package zlib1g-dev:amd64. - Preparing to unpack .../45-zlib1g-dev_1%3a1.2.13.dfsg-1_amd64.deb ... - Unpacking zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ... - Setting up media-types (10.0.0) ... - Setting up libpipeline1:amd64 (1.5.7-1) ... - Setting up libicu72:amd64 (72.1-3+deb12u1) ... - Setting up libyaml-0-2:amd64 (0.2.5-1) ... - Setting up libpython3.11-stdlib:amd64 (3.11.2-6+deb12u6) ... - Setting up libffi-dev:amd64 (3.4.4-1) ... - Setting up libz3-4:amd64 (4.8.12-3.1) ... - Setting up libpkgconf3:amd64 (1.8.1-1) ... - Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ... - Setting up libpfm4:amd64 (4.13.0-1) ... - Setting up libnspr4:amd64 (2:4.35-1) ... - Setting up libncurses6:amd64 (6.4-4) ... - Setting up binfmt-support (2.2.2-2) ... - invoke-rc.d: could not determine current runlevel - invoke-rc.d: policy-rc.d denied execution of start. - Setting up icu-devtools (72.1-3+deb12u1) ... - Setting up pkgconf-bin (1.8.1-1) ... - Setting up libgc1:amd64 (1:8.2.2-3) ... - Setting up zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ... - Setting up libc6-i386 (2.36-9+deb12u10) ... - Setting up libicu-dev:amd64 (72.1-3+deb12u1) ... - Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u2) ... - Setting up libpython3-stdlib:amd64 (3.11.2-1+b1) ... - Setting up libz3-dev:amd64 (4.8.12-3.1) ... - Setting up python3.11 (3.11.2-6+deb12u6) ... - Setting up libncurses-dev:amd64 (6.4-4) ... - Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ... - Setting up libobjc4:amd64 (12.2.0-14+deb12u1) ... - Setting up python3 (3.11.2-1+b1) ... - running python rtupdate hooks for python3.11... - running python post-rtupdate hooks for python3.11... - Setting up libnss3:amd64 (2:3.87.1-1+deb12u1) ... - Setting up pkgconf:amd64 (1.8.1-1) ... - Setting up libxml2-dev:amd64 (2.9.14+dfsg-1.3~deb12u2) ... - Setting up lib32gcc-s1 (12.2.0-14+deb12u1) ... - Setting up lib32stdc++6 (12.2.0-14+deb12u1) ... - Setting up pkg-config:amd64 (1.8.1-1) ... - Setting up libllvm14:amd64 (1:14.0.6-12) ... - Setting up libobjc-12-dev:amd64 (12.2.0-14+deb12u1) ... - Setting up llvm-14-linker-tools (1:14.0.6-12) ... - Setting up python3-pkg-resources (66.1.1-1+deb12u1) ... - Setting up libtinfo-dev:amd64 (6.4-4) ... - Setting up nss-plugin-pem:amd64 (1.0.8+1-1) ... - Setting up libclang1-14 (1:14.0.6-12) ... - Setting up python3-yaml (6.0-3+b2) ... - Setting up python3-pygments (2.14.0+dfsg-1) ... - Setting up llvm-14-runtime (1:14.0.6-12) ... - Setting up libclang-rt-14-dev:amd64 (1:14.0.6-12) ... - Setting up libclang-common-14-dev (1:14.0.6-12) ... - Setting up libclang-cpp14 (1:14.0.6-12) ... - Setting up libcurl3-nss:amd64 (7.88.1-10+deb12u12) ... - Setting up llvm-14 (1:14.0.6-12) ... - Setting up llvm-14-tools (1:14.0.6-12) ... - Setting up clang-14 (1:14.0.6-12) ... - Setting up clang (1:14.0-55.7~deb12u1) ... - Setting up llvm-14-dev (1:14.0.6-12) ... - Processing triggers for libc-bin (2.36-9+deb12u10) ... <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved angstrom.0.16.1 (cached) -> retrieved bap-abi.2.3.0, bap-build.2.3.0, bap-bundle.2.3.0, bap-core-theory.2.3.0, bap-future.2.3.0, bap-knowledge.2.3.0, bap-main.2.3.0, bap-plugins.2.3.0, bap-recipe.2.3.0, bap-relation.2.3.0, bap-std.2.3.0, bap-stub-resolver.2.3.0, bitvec.2.3.0, bitvec-binprot.2.3.0, bitvec-order.2.3.0, bitvec-sexp.2.3.0, graphlib.2.3.0, monads.2.3.0, ogre.2.3.0, regular.2.3.0 (cached) -> retrieved base.v0.14.3 (cached) -> retrieved base_bigstring.v0.14.0 (cached) -> retrieved base_quickcheck.v0.14.1 (cached) -> retrieved bigarray-compat.1.1.0 (cached) -> retrieved bigstringaf.0.10.0 (cached) -> retrieved bin_prot.v0.14.1 (cached) -> retrieved camlzip.1.13 (cached) -> retrieved cmdliner.1.3.0 (cached) -> retrieved conf-gmp.5 (cached) -> retrieved core_kernel.v0.14.2 (cached) -> installed conf-clang.1 -> installed conf-gmp.5 -> installed conf-pkg-config.4 -> installed conf-which.1 -> retrieved fieldslib.v0.14.0 (cached) -> retrieved fileutils.0.6.6 (cached) -> retrieved jane-street-headers.v0.14.0 (cached) -> retrieved jst-config.v0.14.1 (cached) -> installed conf-zlib.1 -> retrieved lambda-term.3.3.2 (cached) -> installed bigarray-compat.1.1.0 -> retrieved logs.0.9.0 (cached) -> retrieved lwt_react.1.2.0 (cached) -> retrieved mew.0.1.0 (cached) -> retrieved mew_vi.0.5.0 (cached) -> retrieved mmap.1.2.0 (cached) -> retrieved num.1.6 (cached) -> retrieved oasis.0.4.11 (cached) -> installed jane-street-headers.v0.14.0 -> retrieved ocaml-compiler-libs.v0.12.4 (cached) -> retrieved ocaml-syntax-shims.1.0.0 (cached) -> retrieved ocamlbuild.0.16.1 (cached) -> installed bigstringaf.0.10.0 -> installed mmap.1.2.0 -> retrieved ocamlgraph.2.2.0 (cached) -> retrieved ocamlify.0.0.1 (cached) -> retrieved ocamlmod.0.0.9 (cached) -> retrieved octavius.1.2.2 (cached) -> retrieved ounit.2.2.7, ounit2.2.2.7 (cached) -> retrieved parsexp.v0.14.2 (cached) -> retrieved ppx_assert.v0.14.0 (cached) -> retrieved ppx_bap.v0.14.0 (cached) -> retrieved ppx_base.v0.14.0 (cached) -> retrieved ppx_bench.v0.14.1 (cached) -> retrieved ppx_bin_prot.v0.14.0 (cached) -> retrieved ppx_cold.v0.14.0 (cached) -> retrieved ppx_compare.v0.14.0 (cached) -> retrieved ppx_custom_printf.v0.14.1 (cached) -> retrieved ppx_derivers.1.2.1 (cached) -> retrieved ppx_enumerate.v0.14.0 (cached) -> retrieved ppx_expect.v0.14.2 (cached) -> retrieved ppx_fields_conv.v0.14.2 (cached) -> installed camlzip.1.13 -> installed ocaml-compiler-libs.v0.12.4 -> installed ocaml-syntax-shims.1.0.0 -> installed octavius.1.2.2 -> installed fileutils.0.6.6 -> installed ppx_derivers.1.2.1 -> retrieved ppx_fixed_literal.v0.14.0 (cached) -> retrieved ppx_hash.v0.14.0 (cached) -> retrieved ppx_here.v0.14.0 (cached) -> retrieved ppx_inline_test.v0.14.1 (cached) -> installed num.1.6 -> retrieved ppx_jane.v0.14.0 (cached) -> retrieved ppx_js_style.v0.14.1 (cached) -> retrieved ppx_let.v0.14.0 (cached) -> retrieved ppx_module_timer.v0.14.0 (cached) -> retrieved ppx_optcomp.v0.14.3 (cached) -> retrieved ppx_optional.v0.14.0 (cached) -> retrieved ppx_pipebang.v0.14.0 (cached) -> retrieved ppx_sexp_conv.v0.14.3 (cached) -> retrieved ppx_sexp_message.v0.14.1 (cached) -> retrieved ppx_sexp_value.v0.14.0 (cached) -> retrieved ppx_stable.v0.14.1 (cached) -> retrieved ppx_string.v0.14.1 (cached) -> retrieved ppx_typerep_conv.v0.14.2 (cached) -> retrieved ppx_variants_conv.v0.14.2 (cached) -> retrieved ppxlib.0.25.1 (cached) -> retrieved re.1.13.2 (cached) -> retrieved react.1.2.2 (cached) -> retrieved result.1.5 (cached) -> retrieved seq.base (cached) -> installed seq.base -> retrieved sexplib.v0.14.0 (cached) -> retrieved sexplib0.v0.14.0 (cached) -> retrieved splittable_random.v0.14.0 (cached) -> retrieved stdio.v0.14.0 (cached) -> retrieved stdlib-shims.0.3.0 (cached) -> retrieved stringext.1.6.0 (cached) -> retrieved time_now.v0.14.0 (cached) -> installed angstrom.0.16.1 -> retrieved topkg.1.0.8 (cached) -> retrieved trie.1.0.0 (cached) -> retrieved typerep.v0.14.0 (cached) -> retrieved uchar.0.0.2 (cached) -> retrieved uri.4.4.0 (cached) -> retrieved utop.2.15.0-1 (cached) -> installed result.1.5 -> installed stringext.1.6.0 -> installed stdlib-shims.0.3.0 -> installed trie.1.0.0 -> retrieved uucp.16.0.0 (cached) -> retrieved uuidm.0.9.10 (cached) -> retrieved uuseg.16.0.0 (cached) -> retrieved uutf.1.0.4 (cached) -> retrieved variantslib.v0.14.0 (cached) -> installed cmdliner.1.3.0 -> installed sexplib0.v0.14.0 -> installed mew.0.1.0 -> installed ocamlgraph.2.2.0 -> retrieved xdg.3.19.1 (cached) -> installed re.1.13.2 -> installed uri.4.4.0 -> installed ounit2.2.2.7 -> retrieved zarith.1.14 (cached) -> retrieved zed.3.2.3 (cached) -> installed ounit.2.2.7 -> installed ocamlbuild.0.16.1 -> installed xdg.3.19.1 -> installed uchar.0.0.2 -> installed zarith.1.14 -> installed ocamlify.0.0.1 -> installed base.v0.14.3 -> installed topkg.1.0.8 -> installed variantslib.v0.14.0 -> installed fieldslib.v0.14.0 -> installed ocamlmod.0.0.9 -> installed logs.0.9.0 -> installed parsexp.v0.14.2 -> installed react.1.2.2 -> installed stdio.v0.14.0 -> installed typerep.v0.14.0 -> installed uuidm.0.9.10 -> installed uutf.1.0.4 -> installed lwt_react.1.2.0 -> installed mew_vi.0.5.0 -> installed sexplib.v0.14.0 -> installed ppxlib.0.25.1 -> installed ppx_optcomp.v0.14.3 -> installed ppx_cold.v0.14.0 -> installed ppx_stable.v0.14.1 -> installed ppx_here.v0.14.0 -> installed ppx_let.v0.14.0 -> installed ppx_enumerate.v0.14.0 -> installed ppx_typerep_conv.v0.14.2 -> installed ppx_variants_conv.v0.14.2 -> installed ppx_fields_conv.v0.14.2 -> installed ppx_compare.v0.14.0 -> installed ppx_pipebang.v0.14.0 -> installed ppx_fixed_literal.v0.14.0 -> installed ppx_optional.v0.14.0 -> installed ppx_js_style.v0.14.1 -> installed ppx_sexp_conv.v0.14.3 -> installed ppx_hash.v0.14.0 -> installed ppx_sexp_value.v0.14.0 -> installed ppx_assert.v0.14.0 -> installed ppx_sexp_message.v0.14.1 -> installed ppx_base.v0.14.0 -> installed ppx_custom_printf.v0.14.1 -> installed jst-config.v0.14.1 -> installed ppx_string.v0.14.1 -> installed bin_prot.v0.14.1 -> installed time_now.v0.14.0 -> installed ppx_bin_prot.v0.14.0 -> installed ppx_module_timer.v0.14.0 -> installed ppx_inline_test.v0.14.1 -> installed ppx_bench.v0.14.1 -> installed ppx_expect.v0.14.2 -> installed splittable_random.v0.14.0 -> installed base_quickcheck.v0.14.1 -> installed ppx_bap.v0.14.0 -> installed ppx_jane.v0.14.0 -> installed uucp.16.0.0 -> installed base_bigstring.v0.14.0 -> installed uuseg.16.0.0 -> installed zed.3.2.3 [ERROR] The compilation of lambda-term.3.3.2 failed at "dune build -p lambda-term -j 71 @install". -> installed oasis.0.4.11 -> installed bap-relation.2.3.0 -> installed bap-recipe.2.3.0 -> installed bitvec.2.3.0 -> installed bitvec-sexp.2.3.0 -> installed bitvec-binprot.2.3.0 -> installed bitvec-order.2.3.0 -> installed core_kernel.v0.14.2 -> installed bap-build.2.3.0 -> installed bap-bundle.2.3.0 -> installed regular.2.3.0 -> installed monads.2.3.0 -> installed bap-future.2.3.0 -> installed ogre.2.3.0 -> installed bap-knowledge.2.3.0 -> installed bap-plugins.2.3.0 -> installed bap-main.2.3.0 -> installed bap-core-theory.2.3.0 -> installed graphlib.2.3.0 #=== ERROR while compiling lambda-term.3.3.2 ==================================# # context 2.3.0 | linux/x86_64 | ocaml-base-compiler.4.14.2 | file:///home/opam/opam-repository # path ~/.opam/4.14/.opam-switch/build/lambda-term.3.3.2 # command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p lambda-term -j 71 @install # exit-code 1 # env-file ~/.opam/log/lambda-term-7-6bf61c.env # output-file ~/.opam/log/lambda-term-7-6bf61c.out ### output ### # (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -safe-string -g -bin-annot -I src/.lambda_term.objs/byte -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/domain_shims -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/lwt_react -I /home/opam/.opam/4.14/lib/mew -I /home/opam/.opam/4.14/lib/mew_vi -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/react -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/trie -I /home/opam/.opam/4.14/lib/uchar -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zed -intf-suffix .ml -no-alias-deps -o src/.lambda_term.objs/byte/lTerm_vi.cmo -c -impl src/lTerm_vi.ml) # File "src/lTerm_vi.ml", line 13, characters 15-27: # 13 | let run= Lwt_unix.run [@@ocaml.warning "-3"] # ^^^^^^^^^^^^ # Error: Unbound value Lwt_unix.run # (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -safe-string -g -I src/.lambda_term.objs/byte -I src/.lambda_term.objs/native -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/domain_shims -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/lwt_react -I /home/opam/.opam/4.14/lib/mew -I /home/opam/.opam/4.14/lib/mew_vi -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/react -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/trie -I /home/opam/.opam/4.14/lib/uchar -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zed -intf-suffix .ml -no-alias-deps -o src/.lambda_term.objs/native/lTerm_vi.cmx -c -impl src/lTerm_vi.ml) # File "src/lTerm_vi.ml", line 13, characters 15-27: # 13 | let run= Lwt_unix.run [@@ocaml.warning "-3"] # ^^^^^^^^^^^^ # Error: Unbound value Lwt_unix.run <><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><> +- The following actions failed | - build lambda-term 3.3.2 +- +- The following changes have been performed (the rest was aborted) | - install angstrom 0.16.1 | - install bap-build 2.3.0 | - install bap-bundle 2.3.0 | - install bap-core-theory 2.3.0 | - install bap-future 2.3.0 | - install bap-knowledge 2.3.0 | - install bap-main 2.3.0 | - install bap-plugins 2.3.0 | - install bap-recipe 2.3.0 | - install bap-relation 2.3.0 | - install base v0.14.3 | - install base_bigstring v0.14.0 | - install base_quickcheck v0.14.1 | - install bigarray-compat 1.1.0 | - install bigstringaf 0.10.0 | - install bin_prot v0.14.1 | - install bitvec 2.3.0 | - install bitvec-binprot 2.3.0 | - install bitvec-order 2.3.0 | - install bitvec-sexp 2.3.0 | - install camlzip 1.13 | - install cmdliner 1.3.0 | - install conf-clang 1 | - install conf-gmp 5 | - install conf-pkg-config 4 | - install conf-which 1 | - install conf-zlib 1 | - install core_kernel v0.14.2 | - install fieldslib v0.14.0 | - install fileutils 0.6.6 | - install graphlib 2.3.0 | - install jane-street-headers v0.14.0 | - install jst-config v0.14.1 | - install logs 0.9.0 | - install lwt_react 1.2.0 | - install mew 0.1.0 | - install mew_vi 0.5.0 | - install mmap 1.2.0 | - install monads 2.3.0 | - install num 1.6 | - install oasis 0.4.11 | - install ocaml-compiler-libs v0.12.4 | - install ocaml-syntax-shims 1.0.0 | - install ocamlbuild 0.16.1 | - install ocamlgraph 2.2.0 | - install ocamlify 0.0.1 | - install ocamlmod 0.0.9 | - install octavius 1.2.2 | - install ogre 2.3.0 | - install ounit 2.2.7 | - install ounit2 2.2.7 | - install parsexp v0.14.2 | - install ppx_assert v0.14.0 | - install ppx_bap v0.14.0 | - install ppx_base v0.14.0 | - install ppx_bench v0.14.1 | - install ppx_bin_prot v0.14.0 | - install ppx_cold v0.14.0 | - install ppx_compare v0.14.0 | - install ppx_custom_printf v0.14.1 | - install ppx_derivers 1.2.1 | - install ppx_enumerate v0.14.0 | - install ppx_expect v0.14.2 | - install ppx_fields_conv v0.14.2 | - install ppx_fixed_literal v0.14.0 | - install ppx_hash v0.14.0 | - install ppx_here v0.14.0 | - install ppx_inline_test v0.14.1 | - install ppx_jane v0.14.0 | - install ppx_js_style v0.14.1 | - install ppx_let v0.14.0 | - install ppx_module_timer v0.14.0 | - install ppx_optcomp v0.14.3 | - install ppx_optional v0.14.0 | - install ppx_pipebang v0.14.0 | - install ppx_sexp_conv v0.14.3 | - install ppx_sexp_message v0.14.1 | - install ppx_sexp_value v0.14.0 | - install ppx_stable v0.14.1 | - install ppx_string v0.14.1 | - install ppx_typerep_conv v0.14.2 | - install ppx_variants_conv v0.14.2 | - install ppxlib 0.25.1 | - install re 1.13.2 | - install react 1.2.2 | - install regular 2.3.0 | - install result 1.5 | - install seq base | - install sexplib v0.14.0 | - install sexplib0 v0.14.0 | - install splittable_random v0.14.0 | - install stdio v0.14.0 | - install stdlib-shims 0.3.0 | - install stringext 1.6.0 | - install time_now v0.14.0 | - install topkg 1.0.8 | - install trie 1.0.0 | - install typerep v0.14.0 | - install uchar 0.0.2 | - install uri 4.4.0 | - install uucp 16.0.0 | - install uuidm 0.9.10 | - install uuseg 16.0.0 | - install uutf 1.0.4 | - install variantslib v0.14.0 | - install xdg 3.19.1 | - install zarith 1.14 | - install zed 3.2.3 +- # To update the current shell environment, run: eval $(opam env) The former state can be restored with: /usr/bin/opam switch import "/home/opam/.opam/4.14/.opam-switch/backup/state-20250722135933.export" [WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1. [WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1. opam-repo-ci detected dependencies failing: lambda-term.3.3.2 "/usr/bin/env" "bash" "-c" "opam reinstall bap-stub-resolver.2.3.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-12\""; then echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; fi; test "$pkg" != 'bap-stub-resolver.2.3.0' && partial_fails="$partial_fails $pkg"; done; test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; exit 1" failed with exit status 1 2025-07-22 14:03.27: Job failed: Failed: Build failed 2025-07-22 14:03.27: Log analysis: 2025-07-22 14:03.27: >>> [ERROR] The compilation of lambda-term.3.3.2 failed at "dune build -p lambda-term -j 71 @install". (score = 20) 2025-07-22 14:03.27: >>> # Error: Unbound value Lwt_unix.run (score = 48) 2025-07-22 14:03.27: >>> # Error: Unbound value Lwt_unix.run (score = 48) 2025-07-22 14:03.27: >>> opam-repo-ci detected dependencies failing: lambda-term.3.3.2 (score = 75) 2025-07-22 14:03.27: lambda-term.3.3.2 failed to build