2025-01-11 17:58.52: New job: test ocaml-ppx/ppxlib https://github.com/ocaml-ppx/ppxlib.git#refs/pull/540/head (b7784c3149de7a48256a38fd1a3503b944d925cb) (linux-arm64:debian-12-5.3_arm32_opam-2.3) Base: ocaml/opam:debian-12-ocaml-5.3@sha256:d08b230adbdd11042a405c4e6a33d7f2603b0c58a79b2b91daa28c9a9f201303 Opam project build To reproduce locally: git clone --recursive "https://github.com/ocaml-ppx/ppxlib.git" && cd "ppxlib" && git fetch origin "refs/pull/540/head" && git reset --hard b7784c31 cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-12-ocaml-5.3@sha256:d08b230adbdd11042a405c4e6a33d7f2603b0c58a79b2b91daa28c9a9f201303 # debian-12-5.3_arm32_opam-2.3 USER 1000:1000 SHELL [ "/usr/bin/linux32", "/bin/sh", "-c" ] ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam RUN opam init --reinit -ni RUN uname -rs && opam exec -- ocaml -version && opam --version WORKDIR /src RUN sudo chown opam /src RUN cd ~/opam-repository && (git cat-file -e 82749c0bc5cc2afb8d47b6abd46d44554f7bf5bc || git fetch origin master) && git reset -q --hard 82749c0bc5cc2afb8d47b6abd46d44554f7bf5bc && git log --no-decorate -n1 --oneline && opam update -u COPY --chown=1000:1000 ppxlib.opam ppxlib-tools.opam ppxlib-bench.opam ./ RUN opam pin add -yn ppxlib.dev './' && \ opam pin add -yn ppxlib-tools.dev './' && \ opam pin add -yn ppxlib-bench.dev './' ENV DEPS="base.v0.16.3 base-bigarray.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base cinaps.v0.15.1 cmdliner.1.3.0 conf-bash.1 csexp.1.5.2 dune.3.17.1 dune-configurator.3.17.1 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-option-bytecode-only.1 ocaml-options-vanilla.1 ocamlfind.1.9.6 ppx_derivers.1.2.1 re.1.12.0 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 yojson.2.2.2" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.3 --depext-only -y ppxlib.dev ppxlib-tools.dev ppxlib-bench.dev $DEPS RUN opam install $DEPS COPY --chown=1000:1000 . /src RUN opam exec -- dune build @install @check @runtest && rm -rf _build END-OF-DOCKERFILE docker build . END-REPRO-BLOCK 2025-01-11 17:58.52: Using cache hint "ocaml-ppx/ppxlib-ocaml/opam:debian-12-ocaml-5.3@sha256:d08b230adbdd11042a405c4e6a33d7f2603b0c58a79b2b91daa28c9a9f201303-debian-12-5.3_arm32_opam-2.3-63a091925d80ec21632d31af7fb5614b" 2025-01-11 17:58.52: Using OBuilder spec: ((from ocaml/opam:debian-12-ocaml-5.3@sha256:d08b230adbdd11042a405c4e6a33d7f2603b0c58a79b2b91daa28c9a9f201303) (comment debian-12-5.3_arm32_opam-2.3) (user (uid 1000) (gid 1000)) (shell /usr/bin/linux32 /bin/sh -c) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (workdir /src) (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam")) (run (shell "opam init --reinit -ni")) (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) (workdir /src) (run (shell "sudo chown opam /src")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 82749c0bc5cc2afb8d47b6abd46d44554f7bf5bc || git fetch origin master) && git reset -q --hard 82749c0bc5cc2afb8d47b6abd46d44554f7bf5bc && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src ppxlib.opam ppxlib-tools.opam ppxlib-bench.opam) (dst ./)) (run (network host) (shell "opam pin add -yn ppxlib.dev './' && \ \nopam pin add -yn ppxlib-tools.dev './' && \ \nopam pin add -yn ppxlib-bench.dev './'")) (env DEPS "base.v0.16.3 base-bigarray.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base cinaps.v0.15.1 cmdliner.1.3.0 conf-bash.1 csexp.1.5.2 dune.3.17.1 dune-configurator.3.17.1 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-option-bytecode-only.1 ocaml-options-vanilla.1 ocamlfind.1.9.6 ppx_derivers.1.2.1 re.1.12.0 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 yojson.2.2.2") (env CI true) (env OCAMLCI true) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam update --depexts && opam install --cli=2.3 --depext-only -y ppxlib.dev ppxlib-tools.dev ppxlib-bench.dev $DEPS")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam install $DEPS")) (copy (src .) (dst /src)) (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build")) ) 2025-01-11 17:58.52: Waiting for resource in pool OCluster 2025-01-11 18:49.12: Waiting for worker… 2025-01-11 19:57.37: Got resource from pool OCluster Building on ocaml-2.osuosl.ci.dev All commits already cached HEAD is now at b7784c31 Add changes entry (from ocaml/opam:debian-12-ocaml-5.3@sha256:d08b230adbdd11042a405c4e6a33d7f2603b0c58a79b2b91daa28c9a9f201303) Unable to find image 'ocaml/opam:debian-12-ocaml-5.3@sha256:d08b230adbdd11042a405c4e6a33d7f2603b0c58a79b2b91daa28c9a9f201303' locally docker.io/ocaml/opam@sha256:d08b230adbdd11042a405c4e6a33d7f2603b0c58a79b2b91daa28c9a9f201303: Pulling from ocaml/opam 5b7bc1946100: Pulling fs layer 5b7bc1946100: Verifying Checksum 5b7bc1946100: Download complete 5b7bc1946100: Pull complete Digest: sha256:d08b230adbdd11042a405c4e6a33d7f2603b0c58a79b2b91daa28c9a9f201303 Status: Downloaded newer image for ocaml/opam@sha256:d08b230adbdd11042a405c4e6a33d7f2603b0c58a79b2b91daa28c9a9f201303 2025-01-11 19:57.38 ---> using "1eaccb3a580b9fb7413db6d386838c76ec597668f42d900bcfcd1f061d0e5a21" from cache /: (comment debian-12-5.3_arm32_opam-2.3) /: (user (uid 1000) (gid 1000)) /: (shell /usr/bin/linux32 /bin/sh -c) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam")) 2025-01-11 19:57.38 ---> using "1f0b627fdc80a9b7edcc7d853174aea1497b1ee9c7b6ecf27125788bc84c482f" from cache /src: (run (shell "opam init --reinit -ni")) Configuring from /home/opam/.opamrc and then 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 79 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=79 --global Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [default] synchronised from file:///home/opam/opam-repository 2025-01-11 19:57.38 ---> using "088017675ae0d5db57b5053b9bbc02371ccb1a387a6ce2b5c1a8cdd80a5f4c85" from cache /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 6.8.0-51-generic The OCaml toplevel, version 5.3.0 2.3.0 2025-01-11 19:57.38 ---> using "d41b25b1d0ac25aab253f1d9bfd5fbd1040b072bc52f8aa931ed669fda8db9ab" from cache /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2025-01-11 19:57.38 ---> using "713c95598f349b5f058cb554e5bd5c3b942229a0787990f4bc89636479c7ec5c" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 82749c0bc5cc2afb8d47b6abd46d44554f7bf5bc || git fetch origin master) && git reset -q --hard 82749c0bc5cc2afb8d47b6abd46d44554f7bf5bc && git log --no-decorate -n1 --oneline && opam update -u")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD f93eb7cb02..84f0fe59c5 master -> origin/master 82749c0bc5 Merge pull request #27235 from dbuenzli/erratique-maintenance-intent <><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><> [default] synchronised from file:///home/opam/opam-repository Everything as up-to-date as possible (run with --verbose to show unavailable upgrades). However, you may "opam upgrade" these packages explicitly, which will ask permission to downgrade or uninstall the conflicting packages. Nothing to do. # To update the current shell environment, run: eval $(opam env) 2025-01-11 19:57.38 ---> using "cefa1bdeb7e99a6c4835a98b0e5a25d0b06cffe61a9e2cfc1881dd8bc971e7ad" from cache /src: (copy (src ppxlib.opam ppxlib-tools.opam ppxlib-bench.opam) (dst ./)) 2025-01-11 19:57.43 ---> saved as "d207ea7848991978b421cda292d483989afcf26e0ffe41f6a04e5f7ff35a3d52" /src: (run (network host) (shell "opam pin add -yn ppxlib.dev './' && \ \nopam pin add -yn ppxlib-tools.dev './' && \ \nopam pin add -yn ppxlib-bench.dev './'")) [ppxlib.dev] synchronised (file:///src) ppxlib is now pinned to file:///src (version dev) [ppxlib-tools.dev] synchronised (file:///src) ppxlib-tools is now pinned to file:///src (version dev) Package ppxlib-bench does not exist, create as a NEW package? [y/n] y [ppxlib-bench.dev] synchronised (file:///src) ppxlib-bench is now pinned to file:///src (version dev) 2025-01-11 19:57.53 ---> saved as "d65886561d09cc8eeded8a2b0a79743629f3bb8f76702055f7aa2429e5a81552" /src: (env DEPS "base.v0.16.3 base-bigarray.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base cinaps.v0.15.1 cmdliner.1.3.0 conf-bash.1 csexp.1.5.2 dune.3.17.1 dune-configurator.3.17.1 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-option-bytecode-only.1 ocaml-options-vanilla.1 ocamlfind.1.9.6 ppx_derivers.1.2.1 re.1.12.0 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 yojson.2.2.2") /src: (env CI true) /src: (env OCAMLCI true) /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam update --depexts && opam install --cli=2.3 --depext-only -y ppxlib.dev ppxlib-tools.dev ppxlib-bench.dev $DEPS")) + /usr/bin/sudo "apt-get" "update" - Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] - 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 bookworm/main armhf Packages [8507 kB] - Get:5 http://deb.debian.org/debian-security bookworm-security/main armhf Packages [222 kB] - Fetched 8983 kB in 1s (6228 kB/s) - Reading package lists... - <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [ppxlib-tools.dev] synchronised (no changes) [ppxlib.dev] synchronised (no changes) [ppxlib-bench.dev] synchronised (no changes) [NOTE] Package ocaml-options-vanilla is already installed (current version is 1). [NOTE] Package ocaml-option-bytecode-only is already installed (current version is 1). [NOTE] Package ocaml-config is already installed (current version is 3). [NOTE] Package ocaml-compiler is already installed (current version is 5.3.0). [NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0). [NOTE] Package ocaml is already installed (current version is 5.3.0). [NOTE] Package base-unix is already installed (current version is base). [NOTE] Package base-threads is already installed (current version is base). [NOTE] Package base-nnp is already installed (current version is base). [NOTE] Package base-effects is already installed (current version is base). [NOTE] Package base-domains is already installed (current version is base). [NOTE] Package base-bigarray is already installed (current version is base). 2025-01-11 19:58.27 ---> saved as "0deba4aeda1ba8fe2cde1e8a79d9c858732dc4f895cc6ec251792fab697fb3cb" /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam install $DEPS")) [NOTE] Package ocaml-options-vanilla is already installed (current version is 1). [NOTE] Package ocaml-option-bytecode-only is already installed (current version is 1). [NOTE] Package ocaml-config is already installed (current version is 3). [NOTE] Package ocaml-compiler is already installed (current version is 5.3.0). [NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0). [NOTE] Package ocaml is already installed (current version is 5.3.0). [NOTE] Package base-unix is already installed (current version is base). [NOTE] Package base-threads is already installed (current version is base). [NOTE] Package base-nnp is already installed (current version is base). [NOTE] Package base-effects is already installed (current version is base). [NOTE] Package base-domains is already installed (current version is base). [NOTE] Package base-bigarray is already installed (current version is base). The following actions will be performed: === install 15 packages - install base v0.16.3 - install cinaps v0.15.1 - install cmdliner 1.3.0 - install conf-bash 1 - install csexp 1.5.2 - install dune 3.17.1 - install dune-configurator 3.17.1 - install ocaml-compiler-libs v0.17.0 - install ocamlfind 1.9.6 - install ppx_derivers 1.2.1 - install re 1.12.0 - install seq base - install sexplib0 v0.16.0 - install stdlib-shims 0.3.0 - install yojson 2.2.2 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved cinaps.v0.15.1 (cached) -> retrieved cmdliner.1.3.0 (cached) -> retrieved base.v0.16.3 (cached) -> retrieved csexp.1.5.2 (cached) -> installed conf-bash.1 -> retrieved ocaml-compiler-libs.v0.17.0 (cached) -> retrieved ocamlfind.1.9.6 (cached) -> retrieved ppx_derivers.1.2.1 (cached) -> retrieved seq.base (cached) -> installed seq.base -> retrieved re.1.12.0 (cached) -> retrieved sexplib0.v0.16.0 (cached) -> retrieved stdlib-shims.0.3.0 (cached) -> retrieved yojson.2.2.2 (cached) -> retrieved dune.3.17.1, dune-configurator.3.17.1 (cached) -> installed cmdliner.1.3.0 -> installed ocamlfind.1.9.6 -> installed dune.3.17.1 -> installed ppx_derivers.1.2.1 -> installed csexp.1.5.2 -> installed re.1.12.0 -> installed sexplib0.v0.16.0 -> installed stdlib-shims.0.3.0 -> installed yojson.2.2.2 -> installed cinaps.v0.15.1 -> installed ocaml-compiler-libs.v0.17.0 -> installed dune-configurator.3.17.1 -> installed base.v0.16.3 Done. # To update the current shell environment, run: eval $(opam env) 2025-01-11 20:00.28 ---> saved as "90886a22e89b0053c8272b6606241d4a46cb1dc5164c96c181d5138b8d5d2518" /src: (copy (src .) (dst /src)) 2025-01-11 20:00.30 ---> saved as "9c8d456fa641b5e3cdcd0e4b4901a76545344b6a4b3dc124792ef01108b5b2f2" /src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build")) 2025-01-11 20:01.40 ---> saved as "3edbd1295d63844379f7bc8e5f94425970b3f392846018083eea6b2b8b02dfb1" Job succeeded 2025-01-11 20:01.41: Job succeeded