(for PR #27494)
2025-02-24 08:27.44: New job: test xapi-stdext-unix.4.24.0 with ocamlmod.0.1.0, using opam dev from https://github.com/ocaml/opam-repository.git#refs/pull/27494/head (0def47e7b511023db693d6098b7284568d1f56f0) on debian-12-ocaml-5.3/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/27494/head" && git reset --hard 0def47e7 git fetch origin master git merge --no-edit 4022a684b64be8161a05cf897f492f8680792469 cat > ../Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-12-ocaml-5.3@sha256:6434bcbbde140b05dae76dbfeb2fd716579c003b44f3df292eca16e85504ddfa 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 ocamlmod.0.1.0 0.1.0 RUN opam reinstall ocamlmod.0.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" != 'ocamlmod.0.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 xapi-stdext-unix.4.24.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" != 'xapi-stdext-unix.4.24.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 xapi-stdext-unix.4.24.0) || true RUN opam reinstall --with-test --verbose xapi-stdext-unix.4.24.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" != 'xapi-stdext-unix.4.24.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-02-24 08:27.44: Using cache hint "ocaml/opam:debian-12-ocaml-5.3@sha256:6434bcbbde140b05dae76dbfeb2fd716579c003b44f3df292eca16e85504ddfa-ocamlmod.0.1.0-xapi-stdext-unix.4.24.0-0def47e7b511023db693d6098b7284568d1f56f0" 2025-02-24 08:27.44: Using OBuilder spec: ((from ocaml/opam:debian-12-ocaml-5.3@sha256:6434bcbbde140b05dae76dbfeb2fd716579c003b44f3df292eca16e85504ddfa) (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 ocamlmod.0.1.0 0.1.0")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall ocamlmod.0.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\" != 'ocamlmod.0.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 xapi-stdext-unix.4.24.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\" != 'xapi-stdext-unix.4.24.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 xapi-stdext-unix.4.24.0) || true")) (run (shell "opam reinstall --with-test --verbose xapi-stdext-unix.4.24.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\" != 'xapi-stdext-unix.4.24.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-02-24 08:27.44: Waiting for resource in pool OCluster 2025-02-24 08:27.52: Waiting for worker… 2025-02-24 08:27.56: Got resource from pool OCluster Building on clete.caelum.ci.dev All commits already cached HEAD is now at 4022a684b6 Merge pull request #27464 from hannesm/release-crunch-v4.0.0 Updating 4022a684b6..0def47e7b5 Fast-forward packages/ocamlmod/ocamlmod.0.1.0/opam | 37 +++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 packages/ocamlmod/ocamlmod.0.1.0/opam (from ocaml/opam:debian-12-ocaml-5.3@sha256:6434bcbbde140b05dae76dbfeb2fd716579c003b44f3df292eca16e85504ddfa) 2025-02-24 08:28.16 ---> saved as "23dae15f16843ab5902c5cce9dbc18fd61fe6dc052057f0ca063cfb82b8c6dd6" /: (user (uid 1000) (gid 1000)) /: (workdir /home/opam) /home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam")) 2025-02-24 08:28.17 ---> saved as "183edc09aeb266c8756ce60cea25267fe78c7a43703c1513a283c115167b7488" /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-02-24 08:29.45 ---> saved as "8e1e5f9e47249315fa4f367468a5580b9a2d4fb00771b5f67957813a2010eb5a" /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 (34b7b4ec4af0ebd3c8fc4aee8088471be2ad48c7) # 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 (local), 1 (version-controlled) # pinned 1 (version) # current-switch 5.3 # invariant ["ocaml-base-compiler" {>= "5.3.0"}] # compiler-packages ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1 # ocaml:native true # ocaml:native-tools true # ocaml:native-dynlink true # ocaml:stubsdir /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml # ocaml:preinstalled false # ocaml:compiler 5.3.0 2025-02-24 08:29.47 ---> saved as "4cd6cccf714a1634d818d6eb3b887ad5badd1a7417d4e90c35d117f1146753a8" /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-02-24 08:29.56 ---> saved as "3ac4b16e3d83257487674750e6b6f55616930da6a06edec95bf943f1ece34ca9" /home/opam: (copy (src .) (dst opam-repository/)) 2025-02-24 08:30.06 ---> saved as "1c38e787d16f29c3597c5d40726661029f4fe0c698531818e285f99130d24419" /home/opam: (run (shell "opam repository set-url --strict default opam-repository/")) [default] Initialised 2025-02-24 08:30.50 ---> saved as "f0b53c67cd3e068efb6a6b3d130dd9b412070380b8fd1e4ec8f8b7a129670091" /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 (906 kB/s) - Reading package lists... - 2025-02-24 08:30.51 ---> saved as "c53107140f307b72e4e85063f7d75176980d3788184361659b0fd0307f9d092e" /home/opam: (run (shell "opam pin add -k version -yn ocamlmod.0.1.0 0.1.0")) ocamlmod is now pinned to version 0.1.0 2025-02-24 08:30.52 ---> saved as "3e40d7eca8182458466b5dd8a604eec903345a19e4a9382fb8bc4265abf29ee4" /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall ocamlmod.0.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\" != 'ocamlmod.0.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")) ocamlmod.0.1.0 is not installed. Install it? [Y/n] y The following actions will be performed: === install 2 packages - install dune 3.17.2 [required by ocamlmod] - install ocamlmod 0.1.0 (pinned) <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved dune.3.17.2 (cached) -> retrieved ocamlmod.0.1.0 (cached) -> installed dune.3.17.2 -> installed ocamlmod.0.1.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-02-24 08:31.31 ---> saved as "c6c6331fa6a5604d8af6254f166c8c8a030e766013f76a16a9bc754b5e924252" /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall xapi-stdext-unix.4.24.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\" != 'xapi-stdext-unix.4.24.0' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) xapi-stdext-unix.4.24.0 is not installed. Install it? [Y/n] y The following actions will be performed: === install 28 packages - install base v0.17.1 [required by ppx_sexp_conv] - install base64 3.5.1 [required by rpclib] - install cmdliner 1.3.0 [required by logs] - install csexp 1.5.2 [required by dune-configurator] - install dune-configurator 3.17.2 [required by base] - install fd-send-recv 2.0.2 [required by xapi-stdext-unix] - install logs 0.7.0 [required by xapi-stdext-pervasives] - install ocaml-compiler-libs v0.17.0 [required by ppxlib] - install ocaml_intrinsics_kernel v0.17.1 [required by base] - install ocamlbuild 0.15.0 [required by logs] - install ocamlfind 1.9.8 [required by logs] - install ppx_derivers 1.2.1 [required by ppxlib] - install ppx_deriving_rpc 9.0.0 [required by xapi-backtrace] - install ppx_sexp_conv v0.17.0 [required by xapi-backtrace] - install ppxlib 0.35.0 [required by ppx_deriving_rpc, ppx_sexp_conv] - install ppxlib_jane v0.17.2 [required by ppx_sexp_conv] - install result 1.5 [required by rpclib] - install rpclib 9.0.0 [required by xapi-backtrace] - install rresult 0.7.0 [required by ppx_deriving_rpc] - install seq base [required by yojson] - install sexplib0 v0.17.0 [required by ppx_sexp_conv] - install stdlib-shims 0.3.0 [required by ppxlib] - install topkg 1.0.7 [required by logs] - install xapi-backtrace 0.7 [required by xapi-stdext-unix] - install xapi-stdext-pervasives 4.24.0 [required by xapi-stdext-unix] - install xapi-stdext-unix 4.24.0 - install xmlm 1.4.0 [required by rpclib] - install yojson 2.2.2 [required by rpclib] <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved base.v0.17.1 (cached) -> retrieved base64.3.5.1 (cached) -> retrieved cmdliner.1.3.0 (cached) -> retrieved csexp.1.5.2 (cached) -> installed csexp.1.5.2 -> installed base64.3.5.1 -> retrieved dune-configurator.3.17.2 (cached) -> retrieved fd-send-recv.2.0.2 (cached) -> retrieved logs.0.7.0 (cached) -> retrieved ocaml-compiler-libs.v0.17.0 (cached) -> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached) -> retrieved ocamlbuild.0.15.0 (cached) -> retrieved ocamlfind.1.9.8 (cached) -> retrieved ppx_derivers.1.2.1 (cached) -> retrieved ppx_deriving_rpc.9.0.0, rpclib.9.0.0 (cached) -> retrieved ppx_sexp_conv.v0.17.0 (cached) -> installed cmdliner.1.3.0 -> installed fd-send-recv.2.0.2 -> installed ocaml_intrinsics_kernel.v0.17.1 -> installed ppx_derivers.1.2.1 -> retrieved ppxlib.0.35.0 (cached) -> retrieved ppxlib_jane.v0.17.2 (cached) -> retrieved result.1.5 (cached) -> retrieved rresult.0.7.0 (cached) -> retrieved seq.base (cached) -> installed seq.base -> installed ocaml-compiler-libs.v0.17.0 -> retrieved sexplib0.v0.17.0 (cached) -> retrieved stdlib-shims.0.3.0 (cached) -> retrieved topkg.1.0.7 (cached) -> retrieved xapi-backtrace.0.7 (cached) -> retrieved xapi-stdext-pervasives.4.24.0, xapi-stdext-unix.4.24.0 (cached) -> retrieved xmlm.1.4.0 (cached) -> retrieved yojson.2.2.2 (cached) -> installed result.1.5 -> installed dune-configurator.3.17.2 -> installed stdlib-shims.0.3.0 -> installed sexplib0.v0.17.0 -> installed yojson.2.2.2 -> installed ocamlfind.1.9.8 -> installed ocamlbuild.0.15.0 -> installed base.v0.17.1 -> installed topkg.1.0.7 -> installed rresult.0.7.0 -> installed logs.0.7.0 -> installed xmlm.1.4.0 -> installed rpclib.9.0.0 -> installed ppxlib.0.35.0 -> installed ppxlib_jane.v0.17.2 -> installed ppx_deriving_rpc.9.0.0 -> installed ppx_sexp_conv.v0.17.0 -> installed xapi-backtrace.0.7 -> installed xapi-stdext-pervasives.4.24.0 -> installed xapi-stdext-unix.4.24.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-02-24 08:32.54 ---> saved as "2875d0ef9acca612aac28c6f5a08a42d26d4e18bd79f43cb485cbe9c81c58db3" /home/opam: (run (network host) (shell "(opam reinstall --with-test xapi-stdext-unix.4.24.0) || true")) The following actions will be performed: === recompile 1 package - recompile xapi-stdext-unix 4.24.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved xapi-stdext-unix.4.24.0 (https://github.com/xapi-project/stdext/releases/download/v4.24.0/xapi-stdext-4.24.0.tbz) -> removed xapi-stdext-unix.4.24.0 -> installed xapi-stdext-unix.4.24.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-02-24 08:33.07 ---> saved as "f6f9483ff5c865b0558c7d77623756d6ccb042b54c1fd067c4c7e6fbd40f1d35" /home/opam: (run (shell "opam reinstall --with-test --verbose xapi-stdext-unix.4.24.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\" != 'xapi-stdext-unix.4.24.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 xapi-stdext-unix 4.24.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> Processing 1/4: [xapi-stdext-unix.4.24.0: extract] -> retrieved xapi-stdext-unix.4.24.0 (cached) Processing 2/4: [xapi-stdext-unix: dune build] + /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "xapi-stdext-unix" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.3/.opam-switch/build/xapi-stdext-unix.4.24.0) -> compiled xapi-stdext-unix.4.24.0 -> removed xapi-stdext-unix.4.24.0 -> installed xapi-stdext-unix.4.24.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-02-24 08:33.19 ---> saved as "e7a3b569ebb70356d2e2e97118842fef23f2ed2b7811858e21b273328b3fb9b5" Job succeeded 2025-02-24 08:33.46: Job succeeded