(for PR #27550)
2025-03-05 15:56.54: New job: test sexp.v0.14.0 with conf-g++.1.0, using opam dev from https://github.com/ocaml/opam-repository.git#refs/pull/27550/head (302e72c0f765d8ebdb2009e1f31f6a5bf3bcef7d) 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/27550/head" && git reset --hard 302e72c0 git fetch origin master git merge --no-edit 94a68d7e968e714ae17a21d84962e93eadbb0ffb cat > ../Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-12-ocaml-4.14@sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a USER 1000:1000 WORKDIR /home/opam RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam RUN opam init --reinit -ni RUN opam option solver=builtin-0install && opam config report ENV OPAMDOWNLOADJOBS="1" ENV OPAMERRLOGLEN="0" ENV OPAMPRECISETRACKING="1" ENV CI="true" ENV OPAM_REPO_CI="true" RUN rm -rf opam-repository/ COPY --chown=1000:1000 . opam-repository/ RUN opam repository set-url --strict default opam-repository/ RUN opam update --depexts || true RUN opam pin add -k version -yn conf-g++.1.0 1.0 RUN opam reinstall conf-g++.1.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" != 'conf-g++.1.0' && partial_fails="$partial_fails $pkg"; \ done; \ test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \ exit 1 RUN opam reinstall sexp.v0.14.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" != 'sexp.v0.14.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 sexp.v0.14.0) || true RUN opam reinstall --with-test --verbose sexp.v0.14.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" != 'sexp.v0.14.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-03-05 15:56.54: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a-conf-g++.1.0-sexp.v0.14.0-302e72c0f765d8ebdb2009e1f31f6a5bf3bcef7d" 2025-03-05 15:56.54: Using OBuilder spec: ((from ocaml/opam:debian-12-ocaml-4.14@sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a) (user (uid 1000) (gid 1000)) (workdir /home/opam) (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam")) (run (network host) (shell "opam init --reinit --config .opamrc-sandbox -ni")) (run (shell "opam option solver=builtin-0install && opam config report")) (env OPAMDOWNLOADJOBS 1) (env OPAMERRLOGLEN 0) (env OPAMPRECISETRACKING 1) (env CI true) (env OPAM_REPO_CI true) (run (shell "rm -rf opam-repository/")) (copy (src .) (dst opam-repository/)) (run (shell "opam repository set-url --strict default opam-repository/")) (run (network host) (shell "opam update --depexts || true")) (run (shell "opam pin add -k version -yn conf-g++.1.0 1.0")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall conf-g++.1.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\" != 'conf-g++.1.0' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall sexp.v0.14.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\" != 'sexp.v0.14.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 sexp.v0.14.0) || true")) (run (shell "opam reinstall --with-test --verbose sexp.v0.14.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\" != 'sexp.v0.14.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-03-05 15:56.54: Waiting for resource in pool OCluster 2025-03-05 16:30.54: Waiting for worker… 2025-03-05 16:50.19: Got resource from pool OCluster Building on x86-bm-c4.sw.ocaml.org All commits already cached Updating files: 56% (12764/22585) Updating files: 57% (12874/22585) Updating files: 58% (13100/22585) Updating files: 59% (13326/22585) Updating files: 60% (13551/22585) Updating files: 61% (13777/22585) Updating files: 62% (14003/22585) Updating files: 63% (14229/22585) Updating files: 64% (14455/22585) Updating files: 65% (14681/22585) Updating files: 66% (14907/22585) Updating files: 67% (15132/22585) Updating files: 68% (15358/22585) Updating files: 69% (15584/22585) Updating files: 70% (15810/22585) Updating files: 71% (16036/22585) Updating files: 72% (16262/22585) Updating files: 73% (16488/22585) Updating files: 74% (16713/22585) Updating files: 75% (16939/22585) Updating files: 76% (17165/22585) Updating files: 77% (17391/22585) Updating files: 78% (17617/22585) Updating files: 79% (17843/22585) Updating files: 80% (18068/22585) Updating files: 81% (18294/22585) Updating files: 82% (18520/22585) Updating files: 83% (18746/22585) Updating files: 84% (18972/22585) Updating files: 85% (19198/22585) Updating files: 86% (19424/22585) Updating files: 87% (19649/22585) Updating files: 88% (19875/22585) Updating files: 89% (20101/22585) Updating files: 90% (20327/22585) Updating files: 91% (20553/22585) Updating files: 92% (20779/22585) Updating files: 93% (21005/22585) Updating files: 94% (21230/22585) Updating files: 95% (21456/22585) Updating files: 96% (21682/22585) Updating files: 97% (21908/22585) Updating files: 98% (22134/22585) Updating files: 99% (22360/22585) Updating files: 100% (22585/22585) Updating files: 100% (22585/22585), done. HEAD is now at 94a68d7e96 Merge pull request #27554 from jmid/conf-diffutils-openbsd Merge made by the 'ort' strategy. packages/conf-g++/conf-g++.1.0/opam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (from ocaml/opam:debian-12-ocaml-4.14@sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a) Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a' locally docker.io/ocaml/opam@sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a: Pulling from ocaml/opam ac436a6c3d47: Pulling fs layer ac436a6c3d47: Verifying Checksum ac436a6c3d47: Download complete ac436a6c3d47: Pull complete Digest: sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a Status: Downloaded newer image for ocaml/opam@sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a 2025-03-05 16:50.29 ---> using "d2dbd4e2d532e8c62f07aa22d50c50b7ad6c763419419e849ca6f7abbed6a816" from cache /: (user (uid 1000) (gid 1000)) /: (workdir /home/opam) /home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam")) 2025-03-05 16:50.29 ---> using "6107ef551409e9a51c9203dfc874837b90300e79ce7e550509a8be6e57c32b93" 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 ><><><><><><><><><><><><><><><><><><><><><><><><><><> [opam-repository-archive] synchronised from git+https://github.com/ocaml/opam-repository-archive [default] synchronised from file:///home/opam/opam-repository 2025-03-05 16:50.29 ---> using "a1cf6f11bd1106ffb7027fe3330a262ca001823e620e406c27f998c9e3df1fdd" 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.4.0~alpha1~dev (7f62f012239c88b3ce08e800578ca1d88e602f8a) # 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 31 # repositories 1 (local), 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-03-05 16:50.29 ---> using "151786d5197006b76ff4703b371ea0131ff28d48748f8a701414cb695132a8c5" 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-03-05 16:50.29 ---> using "d687aaf65422492f8c62b1922bf7bf3f56a5f7cc7c5271a79621cfd60fcaa471" from cache /home/opam: (copy (src .) (dst opam-repository/)) 2025-03-05 16:50.31 ---> using "98ffe13e82368fd015fdbc3ccfe8dbe8def954c5988fc91fba117fdcb666cd93" from cache /home/opam: (run (shell "opam repository set-url --strict default opam-repository/")) [default] Initialised 2025-03-05 16:50.31 ---> using "c5db86a1483fa5a57288e33f01d57415c7597289f27502b8b76627372c381583" 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 [246 kB] - Fetched 349 kB in 0s (1235 kB/s) - Reading package lists... 2025-03-05 16:50.31 ---> using "89888bba0e1b434a04c9c2dabd522a1996883b0aaa2217a1c07c36d79b3ff369" from cache /home/opam: (run (shell "opam pin add -k version -yn conf-g++.1.0 1.0")) conf-g++ is now pinned to version 1.0 2025-03-05 16:50.31 ---> using "43a8b49f5f2609f2b8761a20f3297fb0b31c378c1200e9ab76e726a3ca5b39c8" from cache /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall conf-g++.1.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\" != 'conf-g++.1.0' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) conf-g++.1.0 is not installed. Install it? [Y/n] y The following actions will be performed: === install 1 package - install conf-g++ 1.0 (pinned) <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> installed conf-g++.1.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-03-05 16:50.31 ---> using "dbf1aba0fc6a4cd7af40e3898d9b93014cbe2de093890118d8b85e323976e596" from cache /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall sexp.v0.14.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\" != 'sexp.v0.14.0' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) sexp.v0.14.0 is not installed. Install it? [Y/n] y The following actions will be performed: === install 71 packages - install async v0.14.0 [required by sexp] - install async_kernel v0.14.0 [required by async] - install async_rpc_kernel v0.14.0 [required by async] - install async_unix v0.14.0 [required by async] - install base v0.14.3 [required by sexp_pretty, sexp_select] - install base_bigstring v0.14.0 [required by core_kernel] - install base_quickcheck v0.14.1 [required by core_kernel] - install bin_prot v0.14.1 [required by core_kernel] - install core v0.14.1 [required by sexp] - install core_kernel v0.14.2 [required by sexp] - install csexp 1.5.2 [required by dune-configurator] - install csvfields v0.14.0 [required by sexp] - install dune 3.17.2 [required by sexp] - install dune-configurator 3.17.2 [required by base] - install fieldslib v0.14.0 [required by core_kernel] - install jane-street-headers v0.14.0 [required by core_kernel] - install jst-config v0.14.1 [required by core_kernel, core] - install num 1.5-1 [required by csvfields] - install ocaml-compiler-libs v0.12.4 [required by ppxlib] - install octavius 1.2.2 [required by ppx_js_style] - install parsexp v0.14.2 [required by sexplib] - install ppx_assert v0.14.0 [required by core_kernel] - install ppx_base v0.14.0 [required by sexp_pretty] - install ppx_bench v0.14.1 [required by ppx_jane] - install ppx_bin_prot v0.14.0 [required by ppx_jane] - install ppx_cold v0.14.0 [required by ppx_base] - install ppx_compare v0.14.0 [required by ppx_base, bin_prot] - 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_base] - install ppx_expect v0.14.2 [required by ppx_jane] - install ppx_fields_conv v0.14.2 [required by ppx_jane] - install ppx_fixed_literal v0.14.0 [required by ppx_jane] - install ppx_hash v0.14.0 [required by core_kernel] - install ppx_here v0.14.0 [required by ppx_jane] - install ppx_inline_test v0.14.1 [required by core_kernel] - install ppx_jane v0.14.0 [required by sexp] - 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] - 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] - install ppx_sexp_message v0.14.1 [required by core_kernel] - install ppx_sexp_value v0.14.0 [required by ppx_jane] - 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_jane] - install ppxlib 0.25.1 [required by ppx_jane] - install protocol_version_header v0.14.0 [required by async_rpc_kernel] - install re 1.12.0 [required by sexp_pretty] - install re2 v0.14.0 [required by sexp] - install seq base [required by re] - install sexp v0.14.0 - install sexp_diff_kernel v0.14.0 [required by sexp] - install sexp_macro v0.14.0 [required by sexp] - install sexp_pretty v0.14.0 [required by sexp] - install sexp_select v0.14.0 [required by sexp] - install sexplib v0.14.0 [required by sexp] - install sexplib0 v0.14.0 [required by base, sexplib] - install spawn v0.17.0 [required by core] - install splittable_random v0.14.0 [required by core_kernel] - install stdio v0.14.0 [required by core_kernel] - install stdlib-shims 0.3.0 [required by ppxlib] - install textutils v0.14.0 [required by async] - install time_now v0.14.0 [required by core_kernel] - install timezone v0.14.0 [required by core] - install typerep v0.14.0 [required by core_kernel] - install variantslib v0.14.0 [required by core_kernel] <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved async.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/async-v0.14.0.tar.gz) -> retrieved async_kernel.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/async_kernel-v0.14.0.tar.gz) -> retrieved async_rpc_kernel.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/async_rpc_kernel-v0.14.0.tar.gz) -> retrieved async_unix.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/async_unix-v0.14.0.tar.gz) -> retrieved base.v0.14.3 (https://github.com/janestreet/base/archive/v0.14.3.tar.gz) -> retrieved base_bigstring.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/base_bigstring-v0.14.0.tar.gz) -> retrieved base_quickcheck.v0.14.1 (https://github.com/janestreet/base_quickcheck/archive/v0.14.1.tar.gz) -> retrieved bin_prot.v0.14.1 (https://github.com/janestreet/bin_prot/archive/refs/tags/v0.14.1.tar.gz) -> retrieved core.v0.14.1 (https://github.com/janestreet/core/archive/v0.14.1.tar.gz) -> retrieved core_kernel.v0.14.2 (https://github.com/janestreet/core_kernel/archive/v0.14.2.tar.gz) -> retrieved csexp.1.5.2 (cached) -> retrieved csvfields.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/csvfields-v0.14.0.tar.gz) -> retrieved dune.3.17.2, dune-configurator.3.17.2 (cached) -> retrieved fieldslib.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/fieldslib-v0.14.0.tar.gz) -> retrieved jane-street-headers.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/jane-street-headers-v0.14.0.tar.gz) -> retrieved jst-config.v0.14.1 (https://github.com/janestreet/jst-config/archive/refs/tags/v0.14.1.tar.gz) -> retrieved num.1.5-1 (cached) -> retrieved ocaml-compiler-libs.v0.12.4 (cached) -> retrieved octavius.1.2.2 (cached) -> retrieved parsexp.v0.14.2 (https://github.com/janestreet/parsexp/archive/refs/tags/v0.14.2.tar.gz) -> retrieved ppx_assert.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_assert-v0.14.0.tar.gz) -> retrieved ppx_base.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_base-v0.14.0.tar.gz) -> retrieved ppx_bench.v0.14.1 (https://github.com/janestreet/ppx_bench/archive/v0.14.1.tar.gz) -> retrieved ppx_bin_prot.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_bin_prot-v0.14.0.tar.gz) -> retrieved ppx_cold.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_cold-v0.14.0.tar.gz) -> retrieved ppx_compare.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_compare-v0.14.0.tar.gz) -> retrieved ppx_custom_printf.v0.14.1 (https://github.com/janestreet/ppx_custom_printf/archive/v0.14.1.tar.gz) -> retrieved ppx_derivers.1.2.1 (cached) -> retrieved ppx_enumerate.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_enumerate-v0.14.0.tar.gz) -> installed num.1.5-1 -> retrieved ppx_expect.v0.14.2 (https://github.com/janestreet/ppx_expect/archive/v0.14.2.tar.gz) -> retrieved ppx_fields_conv.v0.14.2 (https://github.com/janestreet/ppx_fields_conv/archive/v0.14.2.tar.gz) -> retrieved ppx_fixed_literal.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_fixed_literal-v0.14.0.tar.gz) -> retrieved ppx_hash.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_hash-v0.14.0.tar.gz) -> retrieved ppx_here.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_here-v0.14.0.tar.gz) -> retrieved ppx_inline_test.v0.14.1 (https://github.com/janestreet/ppx_inline_test/archive/v0.14.1.tar.gz) -> retrieved ppx_jane.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_jane-v0.14.0.tar.gz) -> retrieved ppx_js_style.v0.14.1 (https://github.com/janestreet/ppx_js_style/archive/refs/tags/v0.14.1.tar.gz) -> retrieved ppx_let.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_let-v0.14.0.tar.gz) -> retrieved ppx_module_timer.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_module_timer-v0.14.0.tar.gz) -> retrieved ppx_optcomp.v0.14.3 (https://github.com/janestreet/ppx_optcomp/archive/v0.14.3.tar.gz) -> retrieved ppx_optional.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_optional-v0.14.0.tar.gz) -> retrieved ppx_pipebang.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_pipebang-v0.14.0.tar.gz) -> retrieved ppx_sexp_conv.v0.14.3 (https://github.com/janestreet/ppx_sexp_conv/archive/v0.14.3.tar.gz) -> retrieved ppx_sexp_message.v0.14.1 (https://github.com/janestreet/ppx_sexp_message/archive/v0.14.1.tar.gz) -> retrieved ppx_sexp_value.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_sexp_value-v0.14.0.tar.gz) -> retrieved ppx_stable.v0.14.1 (https://github.com/janestreet/ppx_stable/archive/v0.14.1.tar.gz) -> retrieved ppx_string.v0.14.1 (https://github.com/janestreet/ppx_string/archive/v0.14.1.tar.gz) -> retrieved ppx_typerep_conv.v0.14.2 (https://github.com/janestreet/ppx_typerep_conv/archive/v0.14.2.tar.gz) -> retrieved ppx_variants_conv.v0.14.2 (https://github.com/janestreet/ppx_variants_conv/archive/v0.14.2.tar.gz) -> retrieved ppxlib.0.25.1 (https://github.com/ocaml-ppx/ppxlib/releases/download/0.25.1/ppxlib-0.25.1.tbz) -> retrieved protocol_version_header.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/protocol_version_header-v0.14.0.tar.gz) -> retrieved re.1.12.0 (cached) -> retrieved re2.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/re2-v0.14.0.tar.gz) -> retrieved seq.base (cached) -> installed seq.base -> retrieved sexp.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/sexp-v0.14.0.tar.gz) -> retrieved sexp_diff_kernel.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/sexp_diff_kernel-v0.14.0.tar.gz) -> retrieved sexp_macro.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/sexp_macro-v0.14.0.tar.gz) -> retrieved sexp_pretty.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/sexp_pretty-v0.14.0.tar.gz) -> retrieved sexp_select.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/sexp_select-v0.14.0.tar.gz) -> retrieved sexplib.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/sexplib-v0.14.0.tar.gz) -> retrieved sexplib0.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/sexplib0-v0.14.0.tar.gz) -> retrieved spawn.v0.17.0 (https://github.com/janestreet/spawn/releases/download/v0.17.0/spawn-v0.17.0.tbz) -> retrieved splittable_random.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/splittable_random-v0.14.0.tar.gz) -> retrieved stdio.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/stdio-v0.14.0.tar.gz) -> retrieved stdlib-shims.0.3.0 (cached) -> retrieved textutils.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/textutils-v0.14.0.tar.gz) -> retrieved time_now.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/time_now-v0.14.0.tar.gz) -> retrieved timezone.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/timezone-v0.14.0.tar.gz) -> retrieved typerep.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/typerep-v0.14.0.tar.gz) -> retrieved variantslib.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/variantslib-v0.14.0.tar.gz) -> installed dune.3.17.2 -> installed jane-street-headers.v0.14.0 -> installed ppx_derivers.1.2.1 -> installed csexp.1.5.2 -> installed ocaml-compiler-libs.v0.12.4 -> installed octavius.1.2.2 -> installed re.1.12.0 -> installed sexplib0.v0.14.0 -> installed spawn.v0.17.0 -> installed stdlib-shims.0.3.0 -> installed dune-configurator.3.17.2 -> installed base.v0.14.3 -> installed fieldslib.v0.14.0 -> installed variantslib.v0.14.0 -> installed stdio.v0.14.0 -> installed typerep.v0.14.0 -> installed parsexp.v0.14.2 -> installed sexplib.v0.14.0 -> installed ppxlib.0.25.1 -> installed ppx_cold.v0.14.0 -> installed ppx_here.v0.14.0 -> installed ppx_optcomp.v0.14.3 -> installed ppx_stable.v0.14.1 -> installed ppx_let.v0.14.0 -> installed ppx_typerep_conv.v0.14.2 -> installed ppx_fields_conv.v0.14.2 -> installed ppx_variants_conv.v0.14.2 -> installed ppx_enumerate.v0.14.0 -> installed ppx_compare.v0.14.0 -> installed ppx_pipebang.v0.14.0 -> installed ppx_fixed_literal.v0.14.0 -> installed ppx_js_style.v0.14.1 -> installed ppx_optional.v0.14.0 -> installed ppx_sexp_conv.v0.14.3 -> installed ppx_hash.v0.14.0 -> installed ppx_assert.v0.14.0 -> installed ppx_sexp_value.v0.14.0 -> installed ppx_sexp_message.v0.14.1 -> installed ppx_custom_printf.v0.14.1 -> installed ppx_base.v0.14.0 -> installed jst-config.v0.14.1 -> installed sexp_pretty.v0.14.0 -> 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_jane.v0.14.0 -> installed sexp_select.v0.14.0 -> installed base_bigstring.v0.14.0 -> installed core_kernel.v0.14.2 -> installed protocol_version_header.v0.14.0 -> installed sexp_diff_kernel.v0.14.0 -> installed timezone.v0.14.0 -> installed async_kernel.v0.14.0 -> installed async_rpc_kernel.v0.14.0 -> installed core.v0.14.1 -> installed csvfields.v0.14.0 -> installed textutils.v0.14.0 -> installed async_unix.v0.14.0 -> installed async.v0.14.0 -> installed sexp_macro.v0.14.0 -> installed re2.v0.14.0 -> installed sexp.v0.14.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-03-05 16:55.32 ---> saved as "358ddf9831a3c5bb4c3a503efa9b16093843d02a7905a4f421f01fb9dd8a3e93" /home/opam: (run (network host) (shell "(opam reinstall --with-test sexp.v0.14.0) || true")) The following actions will be performed: === recompile 1 package - recompile sexp v0.14.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved sexp.v0.14.0 (https://ocaml.janestreet.com/ocaml-core/v0.14/files/sexp-v0.14.0.tar.gz) -> removed sexp.v0.14.0 -> installed sexp.v0.14.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-03-05 16:55.51 ---> saved as "3a617602f6992077eb991509e940051f117a1c67f8639f37da6733c6a42cbc49" /home/opam: (run (shell "opam reinstall --with-test --verbose sexp.v0.14.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\" != 'sexp.v0.14.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 - recompile sexp v0.14.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> Processing 1/4: [sexp.v0.14.0: extract] -> retrieved sexp.v0.14.0 (cached) Processing 2/4: [sexp: dune build] + /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "sexp" "-j" "31" (CWD=/home/opam/.opam/4.14/.opam-switch/build/sexp.v0.14.0) -> compiled sexp.v0.14.0 -> removed sexp.v0.14.0 -> installed sexp.v0.14.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-03-05 16:56.09 ---> saved as "18c73e70ad1c2e7d9f00b72d2e70490c29bf3332501630ec61507ac280dd149c" Job succeeded 2025-03-05 16:56.15: Job succeeded