2025-12-06 16:38.31: New job: test ocurrent/ocaml-dockerfile https://github.com/ocurrent/ocaml-dockerfile.git#refs/heads/master (92895725e029269d6d2d6cac8e9e51ca508e1afd) (linux-x86_64:debian-12-4.14_opam-2.4) Base: ocaml/opam:debian-12-ocaml-4.14@sha256:27192162a487f07795b9aa344a84ae5887f60b664e5f348b20c64f508df4c854 Opam project build To reproduce locally: git clone --recursive "https://github.com/ocurrent/ocaml-dockerfile.git" -b "master" && cd "ocaml-dockerfile" && git reset --hard 92895725 cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-12-ocaml-4.14@sha256:27192162a487f07795b9aa344a84ae5887f60b664e5f348b20c64f508df4c854 # debian-12-4.14_opam-2.4 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo ln -f /usr/bin/opam-2.4 /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 8a324a5b9945e0e515da441ede437f3756caa83d || git fetch origin master) && git reset -q --hard 8a324a5b9945e0e515da441ede437f3756caa83d && git log --no-decorate -n1 --oneline && opam update -u COPY --chown=1000:1000 dockerfile.opam dockerfile-opam.opam dockerfile-cmd.opam ./ RUN opam pin add -yn dockerfile.dev './' && \ opam pin add -yn dockerfile-opam.dev './' && \ opam pin add -yn dockerfile-cmd.dev './' RUN echo '(lang dune 3.0)' > './dune-project' ENV DEPS="alcotest.1.9.1 astring.0.8.5 base.v0.16.4 base-bigarray.base base-threads.base base-unix.base bos.0.2.1 cmdliner.2.1.0 csexp.1.5.2 dune.3.20.2 dune-configurator.3.20.2 fmt.0.11.0 fpath.0.7.3 logs.0.10.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.3 ocamlbuild.0.16.1 ocamlfind.1.9.8 ppx_derivers.1.2.1 ppx_sexp_conv.v0.16.0 ppxlib.0.35.0 re.1.14.0 rresult.0.7.0 sexplib0.v0.16.0 stdlib-shims.0.3.0 topkg.1.1.1 uutf.1.0.4" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.4 --depext-only -y dockerfile.dev dockerfile-opam.dev dockerfile-cmd.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-12-06 16:38.31: Using cache hint "ocurrent/ocaml-dockerfile-ocaml/opam:debian-12-ocaml-4.14@sha256:27192162a487f07795b9aa344a84ae5887f60b664e5f348b20c64f508df4c854-debian-12-4.14_opam-2.4-d9892590163a8ad65ee10fba5b12641a" 2025-12-06 16:38.31: Using OBuilder spec: ((from ocaml/opam:debian-12-ocaml-4.14@sha256:27192162a487f07795b9aa344a84ae5887f60b664e5f348b20c64f508df4c854) (comment debian-12-4.14_opam-2.4) (user (uid 1000) (gid 1000)) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (workdir /src) (run (shell "sudo ln -f /usr/bin/opam-2.4 /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 8a324a5b9945e0e515da441ede437f3756caa83d || git fetch origin master) && git reset -q --hard 8a324a5b9945e0e515da441ede437f3756caa83d && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src dockerfile.opam dockerfile-opam.opam dockerfile-cmd.opam) (dst ./)) (run (network host) (shell "opam pin add -yn dockerfile.dev './' && \ \nopam pin add -yn dockerfile-opam.dev './' && \ \nopam pin add -yn dockerfile-cmd.dev './'")) (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "alcotest.1.9.1 astring.0.8.5 base.v0.16.4 base-bigarray.base base-threads.base base-unix.base bos.0.2.1 cmdliner.2.1.0 csexp.1.5.2 dune.3.20.2 dune-configurator.3.20.2 fmt.0.11.0 fpath.0.7.3 logs.0.10.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.3 ocamlbuild.0.16.1 ocamlfind.1.9.8 ppx_derivers.1.2.1 ppx_sexp_conv.v0.16.0 ppxlib.0.35.0 re.1.14.0 rresult.0.7.0 sexplib0.v0.16.0 stdlib-shims.0.3.0 topkg.1.1.1 uutf.1.0.4") (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.4 --depext-only -y dockerfile.dev dockerfile-opam.dev dockerfile-cmd.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-12-06 16:38.31: Waiting for resource in pool OCluster 2025-12-06 16:38.31: Waiting for worker… 2025-12-06 16:38.31: Got resource from pool OCluster Building on laodoke.caelum.ci.dev All commits already cached HEAD is now at 9289572 Merge pull request #254 from mtelvers/alpine-3.23.0 (from ocaml/opam:debian-12-ocaml-4.14@sha256:27192162a487f07795b9aa344a84ae5887f60b664e5f348b20c64f508df4c854) Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:27192162a487f07795b9aa344a84ae5887f60b664e5f348b20c64f508df4c854' locally docker.io/ocaml/opam@sha256:27192162a487f07795b9aa344a84ae5887f60b664e5f348b20c64f508df4c854: Pulling from ocaml/opam 708274aafe49: Already exists 737ad2ee74be: Pulling fs layer 032e1e533064: Pulling fs layer a743bd4d475e: Pulling fs layer aaac0d8bb086: Pulling fs layer 2f47ce3dda7a: Pulling fs layer aaac0d8bb086: Waiting b362d301afa0: Pulling fs layer 2f47ce3dda7a: Waiting fe6e37b7e1da: Pulling fs layer b362d301afa0: Waiting 8a764116855e: Pulling fs layer fe6e37b7e1da: Waiting c12cc9c502a1: Pulling fs layer 8a764116855e: Waiting bbef696fc9f7: Pulling fs layer 38384e02ae76: Pulling fs layer bbef696fc9f7: Waiting 2ca0d6272582: Pulling fs layer 8aa0bd7664c4: Pulling fs layer 38384e02ae76: Waiting 2ca0d6272582: Waiting a666c9909299: Pulling fs layer 8aa0bd7664c4: Waiting 6f7e696d79a3: Pulling fs layer a666c9909299: Waiting ba2687b09ddc: Pulling fs layer f1bba56185ec: Pulling fs layer ba2687b09ddc: Waiting 863a2e448b4b: Pulling fs layer f1bba56185ec: Waiting 003964d3ed6f: Pulling fs layer 863a2e448b4b: Waiting 4f4fb700ef54: Pulling fs layer 863110cf126e: Pulling fs layer 003964d3ed6f: Waiting 4f4fb700ef54: Waiting 863110cf126e: Waiting 38d837da1f43: Pulling fs layer de5d0eb995c1: Pulling fs layer 38d837da1f43: Waiting 349cf7ff9b72: Pulling fs layer de5d0eb995c1: Waiting 89ea55c65d6b: Pulling fs layer 349cf7ff9b72: Waiting c93a56c20fbe: Pulling fs layer 89ea55c65d6b: Waiting 5b3fd95fb4eb: Pulling fs layer c93a56c20fbe: Waiting 5b3fd95fb4eb: Waiting ede16d5501f3: Pulling fs layer 13d38cef7b46: Pulling fs layer 615ecf5b3783: Pulling fs layer 13d38cef7b46: Waiting ede16d5501f3: Waiting 615ecf5b3783: Waiting f3ca79f8019f: Pulling fs layer 244314359dd9: Pulling fs layer f3ca79f8019f: Waiting d3b76ad71828: Pulling fs layer 244314359dd9: Waiting 5ccff3f0221a: Pulling fs layer d3b76ad71828: Waiting b26db2ec9ad9: Pulling fs layer 5ccff3f0221a: Waiting 0edb99110586: Pulling fs layer b26db2ec9ad9: Waiting 03bb3f13f54e: Pulling fs layer 0edb99110586: Waiting a7eb825b3a84: Pulling fs layer b74e64dc4a43: Pulling fs layer a7eb825b3a84: Waiting 03bb3f13f54e: Waiting cfd8920bd642: Pulling fs layer 9b1cc9a519f7: Pulling fs layer 364304a7dfe9: Pulling fs layer cfd8920bd642: Waiting 9b1cc9a519f7: Waiting 364304a7dfe9: Waiting 737ad2ee74be: Verifying Checksum 737ad2ee74be: Download complete 737ad2ee74be: Pull complete 032e1e533064: Download complete 032e1e533064: Pull complete aaac0d8bb086: Download complete a743bd4d475e: Verifying Checksum a743bd4d475e: Download complete b362d301afa0: Verifying Checksum b362d301afa0: Download complete a743bd4d475e: Pull complete aaac0d8bb086: Pull complete fe6e37b7e1da: Verifying Checksum fe6e37b7e1da: Download complete c12cc9c502a1: Verifying Checksum c12cc9c502a1: Download complete 8a764116855e: Verifying Checksum 8a764116855e: Download complete bbef696fc9f7: Verifying Checksum bbef696fc9f7: Download complete 2f47ce3dda7a: Verifying Checksum 2f47ce3dda7a: Download complete 8aa0bd7664c4: Verifying Checksum 8aa0bd7664c4: Download complete a666c9909299: Verifying Checksum a666c9909299: Download complete 6f7e696d79a3: Verifying Checksum 6f7e696d79a3: Download complete ba2687b09ddc: Verifying Checksum ba2687b09ddc: Download complete f1bba56185ec: Download complete 863a2e448b4b: Verifying Checksum 863a2e448b4b: Download complete 003964d3ed6f: Verifying Checksum 003964d3ed6f: Download complete 4f4fb700ef54: Verifying Checksum 4f4fb700ef54: Download complete 863110cf126e: Verifying Checksum 863110cf126e: Download complete 38d837da1f43: Verifying Checksum 38d837da1f43: Download complete de5d0eb995c1: Verifying Checksum de5d0eb995c1: Download complete 2ca0d6272582: Verifying Checksum 2ca0d6272582: Download complete 38384e02ae76: Verifying Checksum 38384e02ae76: Download complete 349cf7ff9b72: Verifying Checksum 349cf7ff9b72: Download complete 89ea55c65d6b: Verifying Checksum 89ea55c65d6b: Download complete 5b3fd95fb4eb: Verifying Checksum 5b3fd95fb4eb: Download complete ede16d5501f3: Verifying Checksum ede16d5501f3: Download complete c93a56c20fbe: Verifying Checksum c93a56c20fbe: Download complete 13d38cef7b46: Verifying Checksum 13d38cef7b46: Download complete 615ecf5b3783: Verifying Checksum 615ecf5b3783: Download complete 244314359dd9: Verifying Checksum 244314359dd9: Download complete f3ca79f8019f: Verifying Checksum f3ca79f8019f: Download complete 5ccff3f0221a: Verifying Checksum 5ccff3f0221a: Download complete 0edb99110586: Verifying Checksum 0edb99110586: Download complete 03bb3f13f54e: Verifying Checksum 03bb3f13f54e: Download complete a7eb825b3a84: Download complete 2f47ce3dda7a: Pull complete b362d301afa0: Pull complete fe6e37b7e1da: Pull complete 8a764116855e: Pull complete c12cc9c502a1: Pull complete bbef696fc9f7: Pull complete 38384e02ae76: Pull complete 2ca0d6272582: Pull complete 8aa0bd7664c4: Pull complete a666c9909299: Pull complete 6f7e696d79a3: Pull complete ba2687b09ddc: Pull complete f1bba56185ec: Pull complete 863a2e448b4b: Pull complete 003964d3ed6f: Pull complete 4f4fb700ef54: Pull complete 863110cf126e: Pull complete 38d837da1f43: Pull complete de5d0eb995c1: Pull complete 349cf7ff9b72: Pull complete 89ea55c65d6b: Pull complete c93a56c20fbe: Pull complete 5b3fd95fb4eb: Pull complete ede16d5501f3: Pull complete 13d38cef7b46: Pull complete 615ecf5b3783: Pull complete f3ca79f8019f: Pull complete 244314359dd9: Pull complete b26db2ec9ad9: Verifying Checksum b26db2ec9ad9: Download complete b74e64dc4a43: Verifying Checksum b74e64dc4a43: Download complete cfd8920bd642: Download complete 364304a7dfe9: Verifying Checksum 364304a7dfe9: Download complete 9b1cc9a519f7: Verifying Checksum 9b1cc9a519f7: Download complete d3b76ad71828: Verifying Checksum d3b76ad71828: Download complete d3b76ad71828: Pull complete 5ccff3f0221a: Pull complete b26db2ec9ad9: Pull complete 0edb99110586: Pull complete 03bb3f13f54e: Pull complete a7eb825b3a84: Pull complete b74e64dc4a43: Pull complete cfd8920bd642: Pull complete 9b1cc9a519f7: Pull complete 364304a7dfe9: Pull complete Digest: sha256:27192162a487f07795b9aa344a84ae5887f60b664e5f348b20c64f508df4c854 Status: Downloaded newer image for ocaml/opam@sha256:27192162a487f07795b9aa344a84ae5887f60b664e5f348b20c64f508df4c854 2025-12-06 16:41.20 ---> saved as "587e2e8aea5afe4962fd158c03c55e90c5094b8627335c40e718a6801056b3bb" /: (comment debian-12-4.14_opam-2.4) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (shell "sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam")) 2025-12-06 16:41.20 ---> saved as "8836ac379601f1e9460c7627b25e29a7bfd4a9a2222db56804fc8985c61f6c36" /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 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-12-06 16:41.40 ---> saved as "3450cd4d1ae6bd10d3d301b97768bf04e049abfd6a6357990310e225b72854b2" /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 6.8.0-86-generic The OCaml toplevel, version 4.14.2 2.4.1 2025-12-06 16:41.41 ---> saved as "59723acd01d044757913a702a7add3d1c4e45ad188556a35cc727537bbbc4603" /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2025-12-06 16:41.41 ---> saved as "5a5dc20e47f78287286646726336755e8fc38026e1234397d2eaa66da0331c6f" /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 8a324a5b9945e0e515da441ede437f3756caa83d || git fetch origin master) && git reset -q --hard 8a324a5b9945e0e515da441ede437f3756caa83d && git log --no-decorate -n1 --oneline && opam update -u")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD ee3428377a..3e41859015 master -> origin/master 8a324a5b99 Add: cmdliner.2.1.0 (#28962) <><> 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 at these versions (e.g. "opam upgrade ocaml.5.4.0"), 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-12-06 16:41.59 ---> saved as "e78381dd56d5d785d6df9388642bb44ad9a99def201ba3001e1d336836389489" /src: (copy (src dockerfile.opam dockerfile-opam.opam dockerfile-cmd.opam) (dst ./)) 2025-12-06 16:41.59 ---> saved as "09fa7d7abd80ee9fb09a662a20c0489f21e6bf80f29205f83064356906cc914c" /src: (run (network host) (shell "opam pin add -yn dockerfile.dev './' && \ \nopam pin add -yn dockerfile-opam.dev './' && \ \nopam pin add -yn dockerfile-cmd.dev './'")) [dockerfile.dev] synchronised (file:///src) dockerfile is now pinned to file:///src (version dev) [dockerfile-opam.dev] synchronised (file:///src) dockerfile-opam is now pinned to file:///src (version dev) [dockerfile-cmd.dev] synchronised (file:///src) dockerfile-cmd is now pinned to file:///src (version dev) 2025-12-06 16:42.03 ---> saved as "0d364aea714c746497610f57073a6875d1d09d778be72ed1a79031156ff6bd96" /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2025-12-06 16:42.03 ---> saved as "47279ce7c7c5287ab9fbb94dbf2417ff253fa754255b5149cb897d3332085ece" /src: (env DEPS "alcotest.1.9.1 astring.0.8.5 base.v0.16.4 base-bigarray.base base-threads.base base-unix.base bos.0.2.1 cmdliner.2.1.0 csexp.1.5.2 dune.3.20.2 dune-configurator.3.20.2 fmt.0.11.0 fpath.0.7.3 logs.0.10.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.3 ocamlbuild.0.16.1 ocamlfind.1.9.8 ppx_derivers.1.2.1 ppx_sexp_conv.v0.16.0 ppxlib.0.35.0 re.1.14.0 rresult.0.7.0 sexplib0.v0.16.0 stdlib-shims.0.3.0 topkg.1.1.1 uutf.1.0.4") /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.4 --depext-only -y dockerfile.dev dockerfile-opam.dev dockerfile-cmd.dev $DEPS")) + /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 [289 kB] - Fetched 393 kB in 0s (1257 kB/s) - Reading package lists... - <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [dockerfile.dev] synchronised (file:///src) [dockerfile-cmd.dev] synchronised (file:///src) [dockerfile-opam.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 2). [NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2). [NOTE] Package ocaml is already installed (current version is 4.14.2). [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-bigarray is already installed (current version is base). 2025-12-06 16:42.12 ---> saved as "8fb56c18e8a22f8226d76954d3585cc4ae18bc798daa6cfb9fbcd96180ef4931" /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 2). [NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2). [NOTE] Package ocaml is already installed (current version is 4.14.2). [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-bigarray is already installed (current version is base). The following actions will be performed: === install 25 packages - install alcotest 1.9.1 - install astring 0.8.5 - install base v0.16.4 - install bos 0.2.1 - install cmdliner 2.1.0 - install csexp 1.5.2 - install dune 3.20.2 - install dune-configurator 3.20.2 - install fmt 0.11.0 - install fpath 0.7.3 - install logs 0.10.0 - install ocaml-compiler-libs v0.12.4 - install ocaml-syntax-shims 1.0.0 - install ocaml-version 4.0.3 - install ocamlbuild 0.16.1 - install ocamlfind 1.9.8 - install ppx_derivers 1.2.1 - install ppx_sexp_conv v0.16.0 - install ppxlib 0.35.0 - install re 1.14.0 - install rresult 0.7.0 - install sexplib0 v0.16.0 - install stdlib-shims 0.3.0 - install topkg 1.1.1 - install uutf 1.0.4 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved alcotest.1.9.1 (cached) -> retrieved astring.0.8.5 (cached) -> retrieved base.v0.16.4 (cached) -> retrieved bos.0.2.1 (cached) -> retrieved cmdliner.2.1.0 (cached) -> retrieved csexp.1.5.2 (cached) -> retrieved fmt.0.11.0 (cached) -> retrieved fpath.0.7.3 (cached) -> retrieved logs.0.10.0 (cached) -> retrieved ocaml-compiler-libs.v0.12.4 (cached) -> retrieved ocaml-syntax-shims.1.0.0 (cached) -> retrieved ocaml-version.4.0.3 (cached) -> retrieved ocamlbuild.0.16.1 (cached) -> retrieved ocamlfind.1.9.8 (cached) -> retrieved ppx_derivers.1.2.1 (cached) -> retrieved ppx_sexp_conv.v0.16.0 (cached) -> retrieved re.1.14.0 (cached) -> retrieved rresult.0.7.0 (cached) -> retrieved sexplib0.v0.16.0 (cached) -> retrieved stdlib-shims.0.3.0 (cached) -> retrieved topkg.1.1.1 (cached) -> retrieved uutf.1.0.4 (cached) -> retrieved ppxlib.0.35.0 (cached) -> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached) -> installed cmdliner.2.1.0 -> installed ocamlbuild.0.16.1 -> installed ocamlfind.1.9.8 -> installed topkg.1.1.1 -> installed rresult.0.7.0 -> installed uutf.1.0.4 -> installed fmt.0.11.0 -> installed astring.0.8.5 -> installed logs.0.10.0 -> installed fpath.0.7.3 -> installed bos.0.2.1 -> installed dune.3.20.2 -> installed ppx_derivers.1.2.1 -> installed csexp.1.5.2 -> installed ocaml-compiler-libs.v0.12.4 -> installed ocaml-syntax-shims.1.0.0 -> installed ocaml-version.4.0.3 -> installed re.1.14.0 -> installed sexplib0.v0.16.0 -> installed stdlib-shims.0.3.0 -> installed alcotest.1.9.1 -> installed dune-configurator.3.20.2 -> installed base.v0.16.4 -> installed ppxlib.0.35.0 -> installed ppx_sexp_conv.v0.16.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-12-06 16:42.57 ---> saved as "fe24ee0d905c129af4befd995f0ca971a6104c3a7a5b969434aaf2f873750bd3" /src: (copy (src .) (dst /src)) 2025-12-06 16:42.57 ---> saved as "8d400f907b99480fb5ac0e0c9dfbd4a9ceff89286d5e29efa8705f946183fee3" /src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build")) (cd _build/default/test && ./dockerfile.exe) Testing `test'. This run has ID `UKQX4G24'. [OK] dockerfile 0 string_of_t. [OK] dockerfile 1 string_of_t. [OK] dockerfile 2 Format RUN heredocs. Full test results in `/src/_build/default/test/_build/_tests/test'. Test Successful in 0.000s. 3 tests run. (cd _build/default/test-opam && ./dockerfile.exe) Testing `test'. This run has ID `CDNFZQYC'. [OK] dockerfile-opam 0 Distro.compare. Full test results in `/src/_build/default/test-opam/_build/_tests/test'. Test Successful in 0.000s. 1 test run. 2025-12-06 16:42.59 ---> saved as "2752cb9e6dd99c698d247e9f6f5a0aaa7e103e9fd2ab4c41e8f0a29ebd4b1d88" Job succeeded 2025-12-06 16:43.00: Job succeeded