2025-07-15 13:34.36: New job: test ocaml-ppx/ppxlib https://github.com/ocaml-ppx/ppxlib.git#refs/heads/main (5b1276088341fc295999dd10a337478cd0f85344) (linux-x86_64:opensuse-15.6-5.3_opam-2.3) Base: ocaml/opam:opensuse-15.6-ocaml-5.3@sha256:0fac28c677868b193e3ca172de36d8b2356d0c39cbebc3c975d914e94c5d6b19 Opam project build To reproduce locally: git clone --recursive "https://github.com/ocaml-ppx/ppxlib.git" -b "main" && cd "ppxlib" && git reset --hard 5b127608 cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:opensuse-15.6-ocaml-5.3@sha256:0fac28c677868b193e3ca172de36d8b2356d0c39cbebc3c975d914e94c5d6b19 # opensuse-15.6-5.3_opam-2.3 USER 1000:1000 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 382e02b4c17b5b59d503254784ac3a5d78916d5a || git fetch origin master) && git reset -q --hard 382e02b4c17b5b59d503254784ac3a5d78916d5a && 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 './' RUN echo '(lang dune 3.0)' > './dune-project' ENV DEPS="base.v0.17.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 csexp.1.5.2 dune.3.19.1 dune-configurator.3.19.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-options-vanilla.1 ocaml_intrinsics_kernel.v0.17.1 ocamlfind.1.9.8 ppx_derivers.1.2.1 re.1.13.2 seq.base sexplib0.v0.17.0 stdlib-shims.0.3.0 yojson.3.0.0" 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-07-15 13:34.36: Using cache hint "ocaml-ppx/ppxlib-ocaml/opam:opensuse-15.6-ocaml-5.3@sha256:0fac28c677868b193e3ca172de36d8b2356d0c39cbebc3c975d914e94c5d6b19-opensuse-15.6-5.3_opam-2.3-89ba7dec5439846f48defa272304c2be" 2025-07-15 13:34.36: Using OBuilder spec: ((from ocaml/opam:opensuse-15.6-ocaml-5.3@sha256:0fac28c677868b193e3ca172de36d8b2356d0c39cbebc3c975d914e94c5d6b19) (comment opensuse-15.6-5.3_opam-2.3) (user (uid 1000) (gid 1000)) (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 382e02b4c17b5b59d503254784ac3a5d78916d5a || git fetch origin master) && git reset -q --hard 382e02b4c17b5b59d503254784ac3a5d78916d5a && 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 './'")) (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "base.v0.17.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 csexp.1.5.2 dune.3.19.1 dune-configurator.3.19.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-options-vanilla.1 ocaml_intrinsics_kernel.v0.17.1 ocamlfind.1.9.8 ppx_derivers.1.2.1 re.1.13.2 seq.base sexplib0.v0.17.0 stdlib-shims.0.3.0 yojson.3.0.0") (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-07-15 13:34.36: Waiting for resource in pool OCluster 2025-07-15 13:34.37: Waiting for worker… 2025-07-15 13:34.37: Got resource from pool OCluster Building on doris.caelum.ci.dev All commits already cached HEAD is now at 5b127608 Merge pull request #576 from patricoferris/module-binding-and-decls (from ocaml/opam:opensuse-15.6-ocaml-5.3@sha256:0fac28c677868b193e3ca172de36d8b2356d0c39cbebc3c975d914e94c5d6b19) Unable to find image 'ocaml/opam:opensuse-15.6-ocaml-5.3@sha256:0fac28c677868b193e3ca172de36d8b2356d0c39cbebc3c975d914e94c5d6b19' locally docker.io/ocaml/opam@sha256:0fac28c677868b193e3ca172de36d8b2356d0c39cbebc3c975d914e94c5d6b19: Pulling from ocaml/opam ffdbd69c0dd5: Pulling fs layer 51e87b95d38f: Pulling fs layer e6fbf7e4e982: Pulling fs layer ac0b7e8e40f5: Pulling fs layer 7e0ef1b1342b: Pulling fs layer fdc80fa19697: Pulling fs layer 74d7a51b48ac: Pulling fs layer ac0b7e8e40f5: Waiting b166828eaea8: Pulling fs layer b166828eaea8: Waiting 74d7a51b48ac: Waiting 7e0ef1b1342b: Waiting 51e87b95d38f: Verifying Checksum 51e87b95d38f: Download complete e6fbf7e4e982: Verifying Checksum e6fbf7e4e982: Download complete ac0b7e8e40f5: Verifying Checksum ac0b7e8e40f5: Download complete fdc80fa19697: Verifying Checksum fdc80fa19697: Download complete 74d7a51b48ac: Download complete b166828eaea8: Verifying Checksum b166828eaea8: Download complete ffdbd69c0dd5: Verifying Checksum ffdbd69c0dd5: Download complete 7e0ef1b1342b: Verifying Checksum 7e0ef1b1342b: Download complete ffdbd69c0dd5: Pull complete 51e87b95d38f: Pull complete e6fbf7e4e982: Pull complete ac0b7e8e40f5: Pull complete 7e0ef1b1342b: Pull complete fdc80fa19697: Pull complete 74d7a51b48ac: Pull complete b166828eaea8: Pull complete Digest: sha256:0fac28c677868b193e3ca172de36d8b2356d0c39cbebc3c975d914e94c5d6b19 Status: Downloaded newer image for ocaml/opam@sha256:0fac28c677868b193e3ca172de36d8b2356d0c39cbebc3c975d914e94c5d6b19 2025-07-15 13:36.20 ---> saved as "af134770f26c4dbbccdbf242b3fd60adcbadedaa16c898f81c412f84622b0d07" /: (comment opensuse-15.6-5.3_opam-2.3) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam")) 2025-07-15 13:36.20 ---> saved as "9a178abce306547f43d7329fc8f11ed15bcef579687926d74e02c51639869868" /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 Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [default] Initialised 2025-07-15 13:36.40 ---> saved as "90df1f73e18a7ea5b88ec6dfe73dd4450a9e32b9b83c57b0678af91b00010b4d" /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 5.15.0-142-generic The OCaml toplevel, version 5.3.0 2.3.0 2025-07-15 13:36.41 ---> saved as "470775936aec4077ad543a503cbf844ba2c378b1b0a828c1a60c50d4d95ea58d" /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2025-07-15 13:36.41 ---> saved as "c1397b40f74f7ea07c0987210968c83571f80d39f7fd9828ac7a495cb4cf4694" /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 382e02b4c17b5b59d503254784ac3a5d78916d5a || git fetch origin master) && git reset -q --hard 382e02b4c17b5b59d503254784ac3a5d78916d5a && git log --no-decorate -n1 --oneline && opam update -u")) 382e02b4c1 Merge pull request #28124 from kit-ty-kate/opam-publish-re.1.13.2 <><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><> [default] synchronised from git+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-07-15 13:37.00 ---> saved as "28411fab8b9fd3508dea5339753da5e39858996fb3125378bd179a073dad9a69" /src: (copy (src ppxlib.opam ppxlib-tools.opam ppxlib-bench.opam) (dst ./)) 2025-07-15 13:37.00 ---> saved as "3025bc739f3d0a0435bca71af5fe0cd2f5d9cc56ec8fc5196650c9411c6f351b" /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-07-15 13:37.15 ---> saved as "d37636ce65f8281278facaf50fdf65d7fe23ae3c590790023925073f718d7099" /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2025-07-15 13:37.15 ---> saved as "d77b1a96f27872fcb95654701774b2829b23fa6ee7605b77a44b8d4870788bc1" /src: (env DEPS "base.v0.17.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 csexp.1.5.2 dune.3.19.1 dune-configurator.3.19.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-options-vanilla.1 ocaml_intrinsics_kernel.v0.17.1 ocamlfind.1.9.8 ppx_derivers.1.2.1 re.1.13.2 seq.base sexplib0.v0.17.0 stdlib-shims.0.3.0 yojson.3.0.0") /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 "zypper" "--non-interactive" "refresh" - Retrieving repository 'Update repository of openSUSE Backports' metadata [. - . - Looking for gpg keys in repository Update repository of openSUSE Backports. - gpgkey=http://download.opensuse.org/update/leap/15.6/backports/repodata/repomd.xml.key - . - .....done] - Building repository 'Update repository of openSUSE Backports' cache [....done] - Retrieving repository 'Update repository with updates from SUSE Linux Enterprise 15' metadata [. - . - Looking for gpg keys in repository Update repository with updates from SUSE Linux Enterprise 15. - gpgkey=http://download.opensuse.org/update/leap/15.6/sle/repodata/repomd.xml.key - ........ - ....... - ...... - ........ - ......... - ........ - ........ - ........ - ......... - ........ - ........ - .... - ....... - ........ - ....... - ........ - ........ - ....... - ........ - ........ - ........ - ......... - ........ - ........ - ....... - ........ - ....... - ........ - ........ - ........ - ......... - ........ - ........ - ........ - ......... - ....... - ........ - ....... - ........ - ........ - ........ - ........ - ......... - ........ - ........ - ... - ........ - ........ - ...... - ....... - ......... - ........ - ........ - ........ - ......... - ........ - .... - .... - ........ - ....... - ........ - ........ - ........ - ..... - ..... - ........ - ......... - . - ..... - ........ - ........ - ... - ........ - ........ - ....... - ....... - ......... - ........ - ........ - ........ - ........ - ........ - ......... - ........ - ........ - ...done] - Building repository 'Update repository with updates from SUSE Linux Enterprise 15' cache [.. - ..done] - Repository 'Main Update Repository' is up to date. - Repository 'Update Repository (Non-Oss)' is up to date. - Repository 'Non-OSS Repository' is up to date. - Repository 'Main Repository' is up to date. - All repositories have been refreshed. <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [ppxlib.dev] synchronised (file:///src) [ppxlib-bench.dev] synchronised (file:///src) [ppxlib-tools.dev] synchronised (file:///src) [NOTE] Package ocaml-options-vanilla 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-07-15 13:39.10 ---> saved as "506a65b9f8ac274908748f9cf3718c8dbf8013ce512de58cc1d07ff0ddb2a690" /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-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.17.3 - install cinaps v0.15.1 - install cmdliner 1.3.0 - install csexp 1.5.2 - install dune 3.19.1 - install dune-configurator 3.19.1 - install ocaml-compiler-libs v0.17.0 - install ocaml_intrinsics_kernel v0.17.1 - install ocamlfind 1.9.8 - install ppx_derivers 1.2.1 - install re 1.13.2 - install seq base - install sexplib0 v0.17.0 - install stdlib-shims 0.3.0 - install yojson 3.0.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved cinaps.v0.15.1 (cached) -> retrieved csexp.1.5.2 (cached) -> retrieved base.v0.17.3 (cached) -> retrieved cmdliner.1.3.0 (cached) -> retrieved ocaml-compiler-libs.v0.17.0 (cached) -> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached) -> retrieved ppx_derivers.1.2.1 (cached) -> retrieved ocamlfind.1.9.8 (cached) -> retrieved seq.base (cached) -> installed seq.base -> retrieved re.1.13.2 (cached) -> retrieved sexplib0.v0.17.0 (cached) -> retrieved stdlib-shims.0.3.0 (cached) -> retrieved yojson.3.0.0 (cached) -> retrieved dune.3.19.1, dune-configurator.3.19.1 (cached) -> installed cmdliner.1.3.0 -> installed ocamlfind.1.9.8 -> installed dune.3.19.1 -> installed ppx_derivers.1.2.1 -> installed csexp.1.5.2 -> installed ocaml_intrinsics_kernel.v0.17.1 -> installed re.1.13.2 -> installed ocaml-compiler-libs.v0.17.0 -> installed sexplib0.v0.17.0 -> installed stdlib-shims.0.3.0 -> installed yojson.3.0.0 -> installed cinaps.v0.15.1 -> installed dune-configurator.3.19.1 -> installed base.v0.17.3 Done. # To update the current shell environment, run: eval $(opam env) 2025-07-15 13:39.49 ---> saved as "b85b965256bf41d9f9ca634dc20cde27688349a52036f64897472f1b7fc809c1" /src: (copy (src .) (dst /src)) 2025-07-15 13:39.49 ---> saved as "7b68dd3e4c14ea79344dfe43032de4a2c1d7b16125229dee99bc3b49dd30ab13" /src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build")) 2025-07-15 13:40.06 ---> saved as "b8074a276c8b2fcd8ac395d026d05a655d60bfcd348d084c6d80c888d1b875f5" Job succeeded 2025-07-15 13:40.06: Job succeeded