2025-10-18 16:34.59: New job: test mefyl/timmy https://github.com/mefyl/timmy.git#refs/heads/master (36aedcfdbc79593e8dc203e78782f0c4e4b5377d) (linux-x86_64:fedora-43-4.14_opam-2.4) Base: ocaml/opam:fedora-43-ocaml-4.14@sha256:f74281c30f6a8c4817ab69eac6866ac072273427ed8dde9ee56fec4b9ad0cb52 Opam project build To reproduce locally: git clone --recursive "https://github.com/mefyl/timmy.git" -b "master" && cd "timmy" && git reset --hard 36aedcfd cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:fedora-43-ocaml-4.14@sha256:f74281c30f6a8c4817ab69eac6866ac072273427ed8dde9ee56fec4b9ad0cb52 # fedora-43-4.14_opam-2.4 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo dnf install -y findutils 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 deb3de7fc5bdf4eb6ebbacd9c3207c8d6820bc64 || git fetch origin master) && git reset -q --hard deb3de7fc5bdf4eb6ebbacd9c3207c8d6820bc64 && git log --no-decorate -n1 --oneline && opam update -u RUN mkdir -p 'opam/' COPY --chown=1000:1000 timmy.opam timmy-unix.opam timmy-timezones.opam timmy-lwt.opam timmy-jsoo.opam ./ COPY --chown=1000:1000 opam/timmy-windows.opam opam/timmy-unix-windows.opam opam/timmy-unix-macos.opam opam/timmy-unix-ios.opam opam/timmy-unix-android.opam opam/timmy-timezones-windows.opam opam/timmy-timezones-macos.opam opam/timmy-timezones-ios.opam opam/timmy-timezones-android.opam opam/timmy-macos.opam opam/timmy-lwt-windows.opam opam/timmy-lwt-macos.opam opam/timmy-lwt-ios.opam opam/timmy-lwt-android.opam opam/timmy-jsoo-windows.opam opam/timmy-jsoo-macos.opam opam/timmy-jsoo-ios.opam opam/timmy-jsoo-android.opam opam/timmy-ios.opam opam/timmy-android.opam opam/ RUN opam pin add -yn timmy.dev './' && \ opam pin add -yn timmy-unix.dev './' && \ opam pin add -yn timmy-timezones.dev './' && \ opam pin add -yn timmy-lwt.dev './' && \ opam pin add -yn timmy-jsoo.dev './' && \ opam pin add -yn timmy-windows.dev 'opam/' && \ opam pin add -yn timmy-unix-windows.dev 'opam/' && \ opam pin add -yn timmy-unix-macos.dev 'opam/' && \ opam pin add -yn timmy-unix-ios.dev 'opam/' && \ opam pin add -yn timmy-unix-android.dev 'opam/' && \ opam pin add -yn timmy-timezones-windows.dev 'opam/' && \ opam pin add -yn timmy-timezones-macos.dev 'opam/' && \ opam pin add -yn timmy-timezones-ios.dev 'opam/' && \ opam pin add -yn timmy-timezones-android.dev 'opam/' && \ opam pin add -yn timmy-macos.dev 'opam/' && \ opam pin add -yn timmy-lwt-windows.dev 'opam/' && \ opam pin add -yn timmy-lwt-macos.dev 'opam/' && \ opam pin add -yn timmy-lwt-ios.dev 'opam/' && \ opam pin add -yn timmy-lwt-android.dev 'opam/' && \ opam pin add -yn timmy-jsoo-windows.dev 'opam/' && \ opam pin add -yn timmy-jsoo-macos.dev 'opam/' && \ opam pin add -yn timmy-jsoo-ios.dev 'opam/' && \ opam pin add -yn timmy-jsoo-android.dev 'opam/' && \ opam pin add -yn timmy-ios.dev 'opam/' && \ opam pin add -yn timmy-android.dev 'opam/' RUN echo '(lang dune 3.0)' > './dune-project' && \ echo '(lang dune 3.0)' > 'opam/dune-project' ENV DEPS="alcotest.1.9.1 alcotest-lwt.1.9.1 angstrom.0.16.1 astring.0.8.5 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base bigstringaf.0.10.0 cmdliner.2.0.0 conf-npm.1 conf-tzdata.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.20.2 dune-configurator.3.20.2 ezjsonm.1.3.0 fmt.0.11.0 gen.1.1 hex.1.5.0 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 js_of_ocaml-ppx.6.2.0 jsonm.1.0.2 logs.0.9.0 lwt.5.9.2 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 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 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ppx_derivers.1.2.1 ppx_deriving.6.1.1 ppx_here.v0.16.0 ppxlib.0.37.0 ptime.1.2.0 re.1.14.0 result.1.5 sedlex.3.7 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 timedesc.3.1.0 timedesc-tzdb.3.1.0 timedesc-tzlocal.3.1.0 topkg.1.1.0 uutf.1.0.4 yojson.3.0.0" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.4 --depext-only -y timmy.dev timmy-unix.dev timmy-timezones.dev timmy-lwt.dev timmy-jsoo.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-10-18 16:34.59: Using cache hint "mefyl/timmy-ocaml/opam:fedora-43-ocaml-4.14@sha256:f74281c30f6a8c4817ab69eac6866ac072273427ed8dde9ee56fec4b9ad0cb52-fedora-43-4.14_opam-2.4-e9373806bdfde1e17243f7e1f0e64a0f" 2025-10-18 16:34.59: Using OBuilder spec: ((from ocaml/opam:fedora-43-ocaml-4.14@sha256:f74281c30f6a8c4817ab69eac6866ac072273427ed8dde9ee56fec4b9ad0cb52) (comment fedora-43-4.14_opam-2.4) (user (uid 1000) (gid 1000)) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (workdir /src) (run (network host) (shell "sudo dnf install -y findutils")) (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 deb3de7fc5bdf4eb6ebbacd9c3207c8d6820bc64 || git fetch origin master) && git reset -q --hard deb3de7fc5bdf4eb6ebbacd9c3207c8d6820bc64 && git log --no-decorate -n1 --oneline && opam update -u")) (run (shell "mkdir -p 'opam/'")) (copy (src timmy.opam timmy-unix.opam timmy-timezones.opam timmy-lwt.opam timmy-jsoo.opam) (dst ./)) (copy (src opam/timmy-windows.opam opam/timmy-unix-windows.opam opam/timmy-unix-macos.opam opam/timmy-unix-ios.opam opam/timmy-unix-android.opam opam/timmy-timezones-windows.opam opam/timmy-timezones-macos.opam opam/timmy-timezones-ios.opam opam/timmy-timezones-android.opam opam/timmy-macos.opam opam/timmy-lwt-windows.opam opam/timmy-lwt-macos.opam opam/timmy-lwt-ios.opam opam/timmy-lwt-android.opam opam/timmy-jsoo-windows.opam opam/timmy-jsoo-macos.opam opam/timmy-jsoo-ios.opam opam/timmy-jsoo-android.opam opam/timmy-ios.opam opam/timmy-android.opam) (dst opam/)) (run (network host) (shell "opam pin add -yn timmy.dev './' && \ \nopam pin add -yn timmy-unix.dev './' && \ \nopam pin add -yn timmy-timezones.dev './' && \ \nopam pin add -yn timmy-lwt.dev './' && \ \nopam pin add -yn timmy-jsoo.dev './' && \ \nopam pin add -yn timmy-windows.dev 'opam/' && \ \nopam pin add -yn timmy-unix-windows.dev 'opam/' && \ \nopam pin add -yn timmy-unix-macos.dev 'opam/' && \ \nopam pin add -yn timmy-unix-ios.dev 'opam/' && \ \nopam pin add -yn timmy-unix-android.dev 'opam/' && \ \nopam pin add -yn timmy-timezones-windows.dev 'opam/' && \ \nopam pin add -yn timmy-timezones-macos.dev 'opam/' && \ \nopam pin add -yn timmy-timezones-ios.dev 'opam/' && \ \nopam pin add -yn timmy-timezones-android.dev 'opam/' && \ \nopam pin add -yn timmy-macos.dev 'opam/' && \ \nopam pin add -yn timmy-lwt-windows.dev 'opam/' && \ \nopam pin add -yn timmy-lwt-macos.dev 'opam/' && \ \nopam pin add -yn timmy-lwt-ios.dev 'opam/' && \ \nopam pin add -yn timmy-lwt-android.dev 'opam/' && \ \nopam pin add -yn timmy-jsoo-windows.dev 'opam/' && \ \nopam pin add -yn timmy-jsoo-macos.dev 'opam/' && \ \nopam pin add -yn timmy-jsoo-ios.dev 'opam/' && \ \nopam pin add -yn timmy-jsoo-android.dev 'opam/' && \ \nopam pin add -yn timmy-ios.dev 'opam/' && \ \nopam pin add -yn timmy-android.dev 'opam/'")) (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project' && \ \necho '(lang dune 3.0)' > 'opam/dune-project'")) (env DEPS "alcotest.1.9.1 alcotest-lwt.1.9.1 angstrom.0.16.1 astring.0.8.5 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base bigstringaf.0.10.0 cmdliner.2.0.0 conf-npm.1 conf-tzdata.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.20.2 dune-configurator.3.20.2 ezjsonm.1.3.0 fmt.0.11.0 gen.1.1 hex.1.5.0 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 js_of_ocaml-ppx.6.2.0 jsonm.1.0.2 logs.0.9.0 lwt.5.9.2 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 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 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ppx_derivers.1.2.1 ppx_deriving.6.1.1 ppx_here.v0.16.0 ppxlib.0.37.0 ptime.1.2.0 re.1.14.0 result.1.5 sedlex.3.7 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 timedesc.3.1.0 timedesc-tzdb.3.1.0 timedesc-tzlocal.3.1.0 topkg.1.1.0 uutf.1.0.4 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.4 --depext-only -y timmy.dev timmy-unix.dev timmy-timezones.dev timmy-lwt.dev timmy-jsoo.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-10-18 16:34.59: Waiting for resource in pool OCluster 2025-10-18 17:09.40: Waiting for worker… 2025-10-18 17:11.15: Got resource from pool OCluster Building on asteria.caelum.ci.dev All commits already cached HEAD is now at 36aedcf Format. (from ocaml/opam:fedora-43-ocaml-4.14@sha256:f74281c30f6a8c4817ab69eac6866ac072273427ed8dde9ee56fec4b9ad0cb52) Unable to find image 'ocaml/opam:fedora-43-ocaml-4.14@sha256:f74281c30f6a8c4817ab69eac6866ac072273427ed8dde9ee56fec4b9ad0cb52' locally docker.io/ocaml/opam@sha256:f74281c30f6a8c4817ab69eac6866ac072273427ed8dde9ee56fec4b9ad0cb52: Pulling from ocaml/opam 3a6ccf50917d: Already exists 698b8d1610af: Already exists 7e5b745a56a4: Already exists e8859609bfb8: Pulling fs layer 51242d36b3fd: Pulling fs layer 61958fadfb74: Pulling fs layer 04578677ff3f: Pulling fs layer 01b19b859bd1: Pulling fs layer 47b008c442e7: Pulling fs layer 434ff16e8a1b: Pulling fs layer e2e8d2ec1110: Pulling fs layer bb8f1dbb2acd: Pulling fs layer c914fb01d9b0: Pulling fs layer 61958fadfb74: Waiting acbc7d112060: Pulling fs layer 7b0ca93f3f54: Pulling fs layer 47b008c442e7: Waiting 5a223856338a: Pulling fs layer e2e8d2ec1110: Waiting ace6a731f305: Pulling fs layer 04578677ff3f: Waiting 434ff16e8a1b: Waiting a6230b7fafa0: Pulling fs layer 01b19b859bd1: Waiting 917f9b8155b5: Pulling fs layer bb8f1dbb2acd: Waiting 8f7a3b7d908f: Pulling fs layer c914fb01d9b0: Waiting acbc7d112060: Waiting 4f4fb700ef54: Pulling fs layer 5a223856338a: Waiting 7af8a72dec52: Pulling fs layer a6230b7fafa0: Waiting 7b0ca93f3f54: Waiting 9565a36b4e3a: Pulling fs layer 917f9b8155b5: Waiting a1ba7d9452a1: Pulling fs layer 8f7a3b7d908f: Waiting ace6a731f305: Waiting 24a9095bda75: Pulling fs layer 4f4fb700ef54: Waiting 7af8a72dec52: Waiting 16c026bd2ca7: Pulling fs layer 9565a36b4e3a: Waiting 6b821f07d597: Pulling fs layer 24a9095bda75: Waiting afd0175f27f4: Pulling fs layer a1ba7d9452a1: Waiting 88ab18f654c7: Pulling fs layer 16c026bd2ca7: Waiting 6b821f07d597: Waiting be69a91a3ef7: Pulling fs layer afd0175f27f4: Waiting ce8a4e53f5e3: Pulling fs layer 88ab18f654c7: Waiting 3e2bdc6df5e4: Pulling fs layer be69a91a3ef7: Waiting ff986d64677f: Pulling fs layer 9c9f7117b120: Pulling fs layer 8bc6797e23fc: Pulling fs layer ff986d64677f: Waiting 3e2bdc6df5e4: Waiting 07b81fe7312a: Pulling fs layer ce8a4e53f5e3: Waiting 9c9f7117b120: Waiting 8bc6797e23fc: Waiting 43fc65bb52eb: Pulling fs layer a5d75845130a: Pulling fs layer 07b81fe7312a: Waiting 1eec13083f65: Pulling fs layer 43fc65bb52eb: Waiting 502b0eef2b39: Pulling fs layer a5d75845130a: Waiting c1a5e9a62af8: Pulling fs layer 13ca68c1356e: Pulling fs layer 1eec13083f65: Waiting b02e3b0a0c41: Pulling fs layer c1a5e9a62af8: Waiting 502b0eef2b39: Waiting 13ca68c1356e: Waiting b02e3b0a0c41: Waiting 51242d36b3fd: Verifying Checksum 51242d36b3fd: Download complete 61958fadfb74: Verifying Checksum 61958fadfb74: Download complete 04578677ff3f: Verifying Checksum 04578677ff3f: Download complete 01b19b859bd1: Verifying Checksum 01b19b859bd1: Download complete 47b008c442e7: Verifying Checksum 47b008c442e7: Download complete 434ff16e8a1b: Verifying Checksum 434ff16e8a1b: Download complete e2e8d2ec1110: Verifying Checksum e2e8d2ec1110: Download complete bb8f1dbb2acd: Verifying Checksum bb8f1dbb2acd: Download complete c914fb01d9b0: Verifying Checksum c914fb01d9b0: Download complete acbc7d112060: Download complete 7b0ca93f3f54: Download complete 5a223856338a: Download complete ace6a731f305: Verifying Checksum ace6a731f305: Download complete a6230b7fafa0: Download complete 917f9b8155b5: Verifying Checksum 917f9b8155b5: Download complete 8f7a3b7d908f: Verifying Checksum 8f7a3b7d908f: Download complete 4f4fb700ef54: Download complete 7af8a72dec52: Verifying Checksum 7af8a72dec52: Download complete 9565a36b4e3a: Download complete a1ba7d9452a1: Verifying Checksum a1ba7d9452a1: Download complete 24a9095bda75: Verifying Checksum 24a9095bda75: Download complete 16c026bd2ca7: Verifying Checksum 16c026bd2ca7: Download complete 6b821f07d597: Verifying Checksum 6b821f07d597: Download complete afd0175f27f4: Verifying Checksum afd0175f27f4: Download complete 88ab18f654c7: Verifying Checksum 88ab18f654c7: Download complete be69a91a3ef7: Verifying Checksum be69a91a3ef7: Download complete ce8a4e53f5e3: Verifying Checksum ce8a4e53f5e3: Download complete 3e2bdc6df5e4: Verifying Checksum 3e2bdc6df5e4: Download complete ff986d64677f: Verifying Checksum ff986d64677f: Download complete 9c9f7117b120: Verifying Checksum 9c9f7117b120: Download complete e8859609bfb8: Verifying Checksum e8859609bfb8: Pull complete 51242d36b3fd: Pull complete 61958fadfb74: Pull complete 04578677ff3f: Pull complete 01b19b859bd1: Pull complete 47b008c442e7: Pull complete 8bc6797e23fc: Download complete 434ff16e8a1b: Pull complete e2e8d2ec1110: Pull complete bb8f1dbb2acd: Pull complete c914fb01d9b0: Pull complete acbc7d112060: Pull complete 43fc65bb52eb: Verifying Checksum 43fc65bb52eb: Download complete 7b0ca93f3f54: Pull complete 5a223856338a: Pull complete ace6a731f305: Pull complete a6230b7fafa0: Pull complete 917f9b8155b5: Pull complete 8f7a3b7d908f: Pull complete 4f4fb700ef54: Pull complete 7af8a72dec52: Pull complete 9565a36b4e3a: Pull complete a5d75845130a: Download complete a1ba7d9452a1: Pull complete 24a9095bda75: Pull complete 16c026bd2ca7: Pull complete 6b821f07d597: Pull complete afd0175f27f4: Pull complete 88ab18f654c7: Pull complete be69a91a3ef7: Pull complete ce8a4e53f5e3: Pull complete 3e2bdc6df5e4: Pull complete ff986d64677f: Pull complete 1eec13083f65: Download complete 9c9f7117b120: Pull complete 8bc6797e23fc: Pull complete 07b81fe7312a: Download complete 07b81fe7312a: Pull complete 43fc65bb52eb: Pull complete a5d75845130a: Pull complete 1eec13083f65: Pull complete 502b0eef2b39: Verifying Checksum 502b0eef2b39: Download complete c1a5e9a62af8: Verifying Checksum c1a5e9a62af8: Download complete 13ca68c1356e: Verifying Checksum 13ca68c1356e: Download complete b02e3b0a0c41: Verifying Checksum b02e3b0a0c41: Download complete 502b0eef2b39: Pull complete c1a5e9a62af8: Pull complete 13ca68c1356e: Pull complete b02e3b0a0c41: Pull complete Digest: sha256:f74281c30f6a8c4817ab69eac6866ac072273427ed8dde9ee56fec4b9ad0cb52 Status: Downloaded newer image for ocaml/opam@sha256:f74281c30f6a8c4817ab69eac6866ac072273427ed8dde9ee56fec4b9ad0cb52 2025-10-18 17:11.18 ---> using "eff1ce5e32c7f8b8343a5c02e7f09c1f2495c9a1c7103f693d04375f30e30d11" from cache /: (comment fedora-43-4.14_opam-2.4) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (network host) (shell "sudo dnf install -y findutils")) Updating and loading repositories: Fedora 43 - x86_64 - Updates 100% | 172.2 KiB/s | 23.9 KiB | 00m00s Repositories loaded. Package "findutils-1:4.10.0-6.fc43.x86_64" is already installed. Nothing to do. 2025-10-18 17:11.18 ---> using "539b6860d861916654a676969490f4b634b158f259c18d3ac592c3c997eba783" from cache /src: (run (shell "sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam")) 2025-10-18 17:11.18 ---> using "e12cefea2f2f5b469e179585d2c765ac2baf9332734082a245c7c52002bc9c65" 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 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 71 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=71 --global Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [default] Initialised 2025-10-18 17:11.18 ---> using "b2bbe53b4d2b95275e2c0bbaf344efd40767d651ade22efbcfb773f281af0097" from cache /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 5.15.0-157-generic The OCaml toplevel, version 4.14.2 2.4.1 2025-10-18 17:11.18 ---> using "2a9a612fdb4247c5cf9861b29cc7abeaa727473dda457b6ddcd5e0a27cc54521" from cache /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2025-10-18 17:11.18 ---> using "b7cd289f8f3fabdf5bb02ef230944cf9bf6d73f3ebc44c0711329c4bea2cde87" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e deb3de7fc5bdf4eb6ebbacd9c3207c8d6820bc64 || git fetch origin master) && git reset -q --hard deb3de7fc5bdf4eb6ebbacd9c3207c8d6820bc64 && git log --no-decorate -n1 --oneline && opam update -u")) deb3de7fc5 Merge pull request #28686 from NathanReb/release-ppxlib-0.37.0 <><> 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.3.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-10-18 17:11.18 ---> using "f85ac05ec05df94d35172729e72fb7f2094c353a1bd02aeba95ef5fd5666ead8" from cache /src: (run (shell "mkdir -p 'opam/'")) 2025-10-18 17:11.19 ---> saved as "a08418f65d08bdb4c77f71da06e96ef592800d9d24b3fbd5436bb568cb34a1fd" /src: (copy (src timmy.opam timmy-unix.opam timmy-timezones.opam timmy-lwt.opam timmy-jsoo.opam) (dst ./)) 2025-10-18 17:11.19 ---> saved as "f6b639273f2fa37d466da3aef0021a53689a63d928b74d5cc29bc154b6c47ea1" /src: (copy (src opam/timmy-windows.opam opam/timmy-unix-windows.opam opam/timmy-unix-macos.opam opam/timmy-unix-ios.opam opam/timmy-unix-android.opam opam/timmy-timezones-windows.opam opam/timmy-timezones-macos.opam opam/timmy-timezones-ios.opam opam/timmy-timezones-android.opam opam/timmy-macos.opam opam/timmy-lwt-windows.opam opam/timmy-lwt-macos.opam opam/timmy-lwt-ios.opam opam/timmy-lwt-android.opam opam/timmy-jsoo-windows.opam opam/timmy-jsoo-macos.opam opam/timmy-jsoo-ios.opam opam/timmy-jsoo-android.opam opam/timmy-ios.opam opam/timmy-android.opam) (dst opam/)) 2025-10-18 17:11.20 ---> saved as "935b04f7d6ab8905ef140e2d3f8b44f26c42beccefe15379095cbd1f00783418" /src: (run (network host) (shell "opam pin add -yn timmy.dev './' && \ \nopam pin add -yn timmy-unix.dev './' && \ \nopam pin add -yn timmy-timezones.dev './' && \ \nopam pin add -yn timmy-lwt.dev './' && \ \nopam pin add -yn timmy-jsoo.dev './' && \ \nopam pin add -yn timmy-windows.dev 'opam/' && \ \nopam pin add -yn timmy-unix-windows.dev 'opam/' && \ \nopam pin add -yn timmy-unix-macos.dev 'opam/' && \ \nopam pin add -yn timmy-unix-ios.dev 'opam/' && \ \nopam pin add -yn timmy-unix-android.dev 'opam/' && \ \nopam pin add -yn timmy-timezones-windows.dev 'opam/' && \ \nopam pin add -yn timmy-timezones-macos.dev 'opam/' && \ \nopam pin add -yn timmy-timezones-ios.dev 'opam/' && \ \nopam pin add -yn timmy-timezones-android.dev 'opam/' && \ \nopam pin add -yn timmy-macos.dev 'opam/' && \ \nopam pin add -yn timmy-lwt-windows.dev 'opam/' && \ \nopam pin add -yn timmy-lwt-macos.dev 'opam/' && \ \nopam pin add -yn timmy-lwt-ios.dev 'opam/' && \ \nopam pin add -yn timmy-lwt-android.dev 'opam/' && \ \nopam pin add -yn timmy-jsoo-windows.dev 'opam/' && \ \nopam pin add -yn timmy-jsoo-macos.dev 'opam/' && \ \nopam pin add -yn timmy-jsoo-ios.dev 'opam/' && \ \nopam pin add -yn timmy-jsoo-android.dev 'opam/' && \ \nopam pin add -yn timmy-ios.dev 'opam/' && \ \nopam pin add -yn timmy-android.dev 'opam/'")) [timmy.dev] synchronised (file:///src) timmy is now pinned to file:///src (version dev) [timmy-unix.dev] synchronised (file:///src) timmy-unix is now pinned to file:///src (version dev) [NOTE] Package timmy-timezones does not exist in opam repositories registered in the current switch. [timmy-timezones.dev] synchronised (file:///src) timmy-timezones is now pinned to file:///src (version dev) [timmy-lwt.dev] synchronised (file:///src) timmy-lwt is now pinned to file:///src (version dev) [timmy-jsoo.dev] synchronised (file:///src) timmy-jsoo is now pinned to file:///src (version dev) [NOTE] Package timmy-windows does not exist in opam repositories registered in the current switch. [timmy-windows.dev] synchronised (file:///src/opam) timmy-windows is now pinned to file:///src/opam (version dev) [NOTE] Package timmy-unix-windows does not exist in opam repositories registered in the current switch. [timmy-unix-windows.dev] synchronised (file:///src/opam) timmy-unix-windows is now pinned to file:///src/opam (version dev) [NOTE] Package timmy-unix-macos does not exist in opam repositories registered in the current switch. [timmy-unix-macos.dev] synchronised (file:///src/opam) timmy-unix-macos is now pinned to file:///src/opam (version dev) [NOTE] Package timmy-unix-ios does not exist in opam repositories registered in the current switch. [timmy-unix-ios.dev] synchronised (file:///src/opam) timmy-unix-ios is now pinned to file:///src/opam (version dev) [NOTE] Package timmy-unix-android does not exist in opam repositories registered in the current switch. [timmy-unix-android.dev] synchronised (file:///src/opam) timmy-unix-android is now pinned to file:///src/opam (version dev) [NOTE] Package timmy-timezones-windows does not exist in opam repositories registered in the current switch. [timmy-timezones-windows.dev] synchronised (file:///src/opam) timmy-timezones-windows is now pinned to file:///src/opam (version dev) [NOTE] Package timmy-timezones-macos does not exist in opam repositories registered in the current switch. [timmy-timezones-macos.dev] synchronised (file:///src/opam) timmy-timezones-macos is now pinned to file:///src/opam (version dev) [NOTE] Package timmy-timezones-ios does not exist in opam repositories registered in the current switch. [timmy-timezones-ios.dev] synchronised (file:///src/opam) timmy-timezones-ios is now pinned to file:///src/opam (version dev) [NOTE] Package timmy-timezones-android does not exist in opam repositories registered in the current switch. [timmy-timezones-android.dev] synchronised (file:///src/opam) timmy-timezones-android is now pinned to file:///src/opam (version dev) [NOTE] Package timmy-macos does not exist in opam repositories registered in the current switch. [timmy-macos.dev] synchronised (file:///src/opam) timmy-macos is now pinned to file:///src/opam (version dev) [NOTE] Package timmy-lwt-windows does not exist in opam repositories registered in the current switch. [timmy-lwt-windows.dev] synchronised (file:///src/opam) timmy-lwt-windows is now pinned to file:///src/opam (version dev) [NOTE] Package timmy-lwt-macos does not exist in opam repositories registered in the current switch. [timmy-lwt-macos.dev] synchronised (file:///src/opam) timmy-lwt-macos is now pinned to file:///src/opam (version dev) [NOTE] Package timmy-lwt-ios does not exist in opam repositories registered in the current switch. [timmy-lwt-ios.dev] synchronised (file:///src/opam) timmy-lwt-ios is now pinned to file:///src/opam (version dev) [NOTE] Package timmy-lwt-android does not exist in opam repositories registered in the current switch. [timmy-lwt-android.dev] synchronised (file:///src/opam) timmy-lwt-android is now pinned to file:///src/opam (version dev) [NOTE] Package timmy-jsoo-windows does not exist in opam repositories registered in the current switch. [timmy-jsoo-windows.dev] synchronised (file:///src/opam) timmy-jsoo-windows is now pinned to file:///src/opam (version dev) [NOTE] Package timmy-jsoo-macos does not exist in opam repositories registered in the current switch. [timmy-jsoo-macos.dev] synchronised (file:///src/opam) timmy-jsoo-macos is now pinned to file:///src/opam (version dev) [NOTE] Package timmy-jsoo-ios does not exist in opam repositories registered in the current switch. [timmy-jsoo-ios.dev] synchronised (file:///src/opam) timmy-jsoo-ios is now pinned to file:///src/opam (version dev) [NOTE] Package timmy-jsoo-android does not exist in opam repositories registered in the current switch. [timmy-jsoo-android.dev] synchronised (file:///src/opam) timmy-jsoo-android is now pinned to file:///src/opam (version dev) [NOTE] Package timmy-ios does not exist in opam repositories registered in the current switch. [timmy-ios.dev] synchronised (file:///src/opam) timmy-ios is now pinned to file:///src/opam (version dev) [NOTE] Package timmy-android does not exist in opam repositories registered in the current switch. [timmy-android.dev] synchronised (file:///src/opam) timmy-android is now pinned to file:///src/opam (version dev) 2025-10-18 17:11.47 ---> saved as "ec86d4524b7c2168a61058257083eb907726544a93554d26fe7c2df66c06a723" /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project' && \ \necho '(lang dune 3.0)' > 'opam/dune-project'")) 2025-10-18 17:11.48 ---> saved as "47dde4507bfbc617e939424df4f09fa41c804030e8032eb4bf350c1440f3aaf8" /src: (env DEPS "alcotest.1.9.1 alcotest-lwt.1.9.1 angstrom.0.16.1 astring.0.8.5 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base bigstringaf.0.10.0 cmdliner.2.0.0 conf-npm.1 conf-tzdata.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.20.2 dune-configurator.3.20.2 ezjsonm.1.3.0 fmt.0.11.0 gen.1.1 hex.1.5.0 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 js_of_ocaml-ppx.6.2.0 jsonm.1.0.2 logs.0.9.0 lwt.5.9.2 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 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 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ppx_derivers.1.2.1 ppx_deriving.6.1.1 ppx_here.v0.16.0 ppxlib.0.37.0 ptime.1.2.0 re.1.14.0 result.1.5 sedlex.3.7 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 timedesc.3.1.0 timedesc-tzdb.3.1.0 timedesc-tzlocal.3.1.0 topkg.1.1.0 uutf.1.0.4 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.4 --depext-only -y timmy.dev timmy-unix.dev timmy-timezones.dev timmy-lwt.dev timmy-jsoo.dev $DEPS")) + /usr/sbin/sudo "yum" "makecache" - Updating and loading repositories: - Repositories loaded. - Metadata cache created. <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [timmy.dev] synchronised (file:///src) [timmy-jsoo.dev] synchronised (file:///src) [timmy-lwt.dev] synchronised (file:///src) [timmy-timezones.dev] synchronised (file:///src) [timmy-unix.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). The following system packages will first need to be installed: npm <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> + /usr/sbin/sudo "yum" "install" "-y" "npm" - Updating and loading repositories: - Repositories loaded. - Package Arch Version Repository Size - Installing: - nodejs-npm x86_64 1:10.9.3-1.22.19.0.2.fc43 fedora 9.2 MiB - Installing dependencies: - c-ares x86_64 1.34.5-2.fc43 fedora 269.1 KiB - libuv x86_64 1:1.51.0-2.fc43 fedora 570.2 KiB - nodejs x86_64 1:22.19.0-2.fc43 fedora 160.6 KiB - nodejs-libs x86_64 1:22.19.0-2.fc43 fedora 79.3 MiB - Installing weak dependencies: - nodejs-docs noarch 1:22.19.0-2.fc43 fedora 96.6 MiB - nodejs-full-i18n x86_64 1:22.19.0-2.fc43 fedora 30.4 MiB - - Transaction Summary: - Installing: 7 packages - - Total size of inbound packages is 40 MiB. Need to download 40 MiB. - After this operation, 216 MiB extra will be used (install 216 MiB, remove 0 B). - [1/7] nodejs-1:22.19.0-2.fc43.x86_64 100% | 747.4 KiB/s | 50.1 KiB | 00m00s - [2/7] c-ares-0:1.34.5-2.fc43.x86_64 100% | 5.7 MiB/s | 117.0 KiB | 00m00s - [3/7] libuv-1:1.51.0-2.fc43.x86_64 100% | 7.9 MiB/s | 266.1 KiB | 00m00s - [4/7] nodejs-npm-1:10.9.3-1.22.19.0.2.f 100% | 13.0 MiB/s | 2.3 MiB | 00m00s - [5/7] nodejs-full-i18n-1:22.19.0-2.fc43 100% | 5.2 MiB/s | 8.5 MiB | 00m02s - [6/7] nodejs-docs-1:22.19.0-2.fc43.noar 100% | 4.8 MiB/s | 9.0 MiB | 00m02s - [7/7] nodejs-libs-1:22.19.0-2.fc43.x86_ 100% | 7.9 MiB/s | 19.9 MiB | 00m03s - -------------------------------------------------------------------------------- - [7/7] Total 100% | 15.2 MiB/s | 40.2 MiB | 00m03s - Running transaction - [1/9] Verify package files 100% | 34.0 B/s | 7.0 B | 00m00s - [2/9] Prepare transaction 100% | 68.0 B/s | 7.0 B | 00m00s - [3/9] Installing libuv-1:1.51.0-2.fc43. 100% | 69.9 MiB/s | 573.0 KiB | 00m00s - [4/9] Installing c-ares-0:1.34.5-2.fc43 100% | 66.1 MiB/s | 270.6 KiB | 00m00s - [5/9] Installing nodejs-libs-1:22.19.0- 100% | 173.8 MiB/s | 79.3 MiB | 00m00s - [6/9] Installing nodejs-1:22.19.0-2.fc4 100% | 4.5 MiB/s | 162.6 KiB | 00m00s - [7/9] Installing nodejs-npm-1:10.9.3-1. 100% | 18.3 MiB/s | 9.6 MiB | 00m01s - [8/9] Installing nodejs-full-i18n-1:22. 100% | 155.2 MiB/s | 30.4 MiB | 00m00s - [9/9] Installing nodejs-docs-1:22.19.0- 100% | 371.9 MiB/s | 96.7 MiB | 00m00s - Complete! + /usr/sbin/rpm "-q" "--whatprovides" "npm" - nodejs-npm-10.9.3-1.22.19.0.2.fc43.x86_64 2025-10-18 17:12.09 ---> saved as "246770fdec2635df86f9d6bfdd1cef2b0afecbde2d1877d10cc5c47b51830d17" /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 51 packages - install alcotest 1.9.1 - install alcotest-lwt 1.9.1 - install angstrom 0.16.1 - install astring 0.8.5 - install base v0.16.4 - install base-bytes base - install bigstringaf 0.10.0 - install cmdliner 2.0.0 - install conf-npm 1 - install conf-tzdata 1 - install cppo 1.8.0 - install csexp 1.5.2 - install cstruct 6.2.0 - install dune 3.20.2 - install dune-configurator 3.20.2 - install ezjsonm 1.3.0 - install fmt 0.11.0 - install gen 1.1 - install hex 1.5.0 - install js_of_ocaml 6.2.0 - install js_of_ocaml-compiler 6.2.0 - install js_of_ocaml-ppx 6.2.0 - install jsonm 1.0.2 - install logs 0.9.0 - install lwt 5.9.2 - install menhir 20250912 - install menhirCST 20250912 - install menhirLib 20250912 - install menhirSdk 20250912 - install ocaml-compiler-libs v0.12.4 - install ocaml-syntax-shims 1.0.0 - install ocamlbuild 0.16.1 - install ocamlfind 1.9.8 - install ocplib-endian 1.2 - install ppx_derivers 1.2.1 - install ppx_deriving 6.1.1 - install ppx_here v0.16.0 - install ppxlib 0.37.0 - install ptime 1.2.0 - install re 1.14.0 - install result 1.5 - install sedlex 3.7 - install seq base - install sexplib0 v0.16.0 - install stdlib-shims 0.3.0 - install timedesc 3.1.0 - install timedesc-tzdb 3.1.0 - install timedesc-tzlocal 3.1.0 - install topkg 1.1.0 - install uutf 1.0.4 - install yojson 3.0.0 The following system packages will first need to be installed: npm <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> opam believes some required external dependencies are missing. opam can: > 1. Run yum to install them (may need root/sudo access) 2. Display the recommended yum command and wait while you run it manually (e.g. in another terminal) 3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable 4. Abort the installation [1/2/3/4] 1 + /usr/sbin/sudo "yum" "install" "-y" "npm" - Updating and loading repositories: - Repositories loaded. - Package "nodejs-npm-1:10.9.3-1.22.19.0.2.fc43.x86_64" is already installed. - - Nothing to do. + /usr/sbin/rpm "-q" "--whatprovides" "npm" - nodejs-npm-10.9.3-1.22.19.0.2.fc43.x86_64 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved alcotest.1.9.1, alcotest-lwt.1.9.1 (cached) -> retrieved angstrom.0.16.1 (cached) -> retrieved astring.0.8.5 (cached) -> retrieved bigstringaf.0.10.0 (cached) -> retrieved base.v0.16.4 (cached) -> retrieved cmdliner.2.0.0 (cached) -> retrieved cppo.1.8.0 (cached) -> installed conf-tzdata.1 -> retrieved csexp.1.5.2 (cached) -> retrieved cstruct.6.2.0 (cached) -> retrieved ezjsonm.1.3.0 (cached) -> retrieved fmt.0.11.0 (cached) -> retrieved gen.1.1 (cached) -> retrieved hex.1.5.0 (cached) -> retrieved jsonm.1.0.2 (cached) -> retrieved logs.0.9.0 (cached) -> installed conf-npm.1 -> retrieved lwt.5.9.2 (cached) -> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached) -> retrieved ocaml-compiler-libs.v0.12.4 (cached) -> retrieved ocaml-syntax-shims.1.0.0 (cached) -> retrieved ocamlbuild.0.16.1 (cached) -> retrieved js_of_ocaml.6.2.0, js_of_ocaml-compiler.6.2.0, js_of_ocaml-ppx.6.2.0 (cached) -> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached) -> retrieved ocamlfind.1.9.8 (cached) -> retrieved ocplib-endian.1.2 (cached) -> retrieved ppx_derivers.1.2.1 (cached) -> retrieved ppx_deriving.6.1.1 (cached) -> retrieved ppx_here.v0.16.0 (cached) -> retrieved ptime.1.2.0 (cached) -> retrieved re.1.14.0 (cached) -> installed cmdliner.2.0.0 -> retrieved result.1.5 (cached) -> retrieved seq.base (cached) -> installed seq.base -> retrieved sedlex.3.7 (cached) -> retrieved sexplib0.v0.16.0 (cached) -> retrieved stdlib-shims.0.3.0 (cached) -> retrieved topkg.1.1.0 (cached) -> retrieved uutf.1.0.4 (cached) -> retrieved timedesc.3.1.0, timedesc-tzdb.3.1.0, timedesc-tzlocal.3.1.0 (cached) -> retrieved ppxlib.0.37.0 (cached) -> retrieved yojson.3.0.0 (cached) -> installed ocamlfind.1.9.8 -> installed base-bytes.base -> installed ocamlbuild.0.16.1 -> installed topkg.1.1.0 -> installed uutf.1.0.4 -> installed ptime.1.2.0 -> installed fmt.0.11.0 -> installed astring.0.8.5 -> installed jsonm.1.0.2 -> installed dune.3.20.2 -> installed csexp.1.5.2 -> installed cppo.1.8.0 -> installed cstruct.6.2.0 -> installed gen.1.1 -> installed menhirCST.20250912 -> installed menhirLib.20250912 -> installed menhirSdk.20250912 -> installed ocaml-compiler-libs.v0.12.4 -> installed ocaml-syntax-shims.1.0.0 -> installed ppx_derivers.1.2.1 -> installed re.1.14.0 -> installed result.1.5 -> installed sexplib0.v0.16.0 -> installed stdlib-shims.0.3.0 -> installed yojson.3.0.0 -> installed ocplib-endian.1.2 -> installed hex.1.5.0 -> installed timedesc-tzdb.3.1.0 -> installed timedesc-tzlocal.3.1.0 -> installed ezjsonm.1.3.0 -> installed alcotest.1.9.1 -> installed dune-configurator.3.20.2 -> installed bigstringaf.0.10.0 -> installed angstrom.0.16.1 -> installed timedesc.3.1.0 -> installed lwt.5.9.2 -> installed base.v0.16.4 -> installed ppxlib.0.37.0 -> installed menhir.20250912 -> installed ppx_here.v0.16.0 -> installed ppx_deriving.6.1.1 -> installed sedlex.3.7 -> installed js_of_ocaml-compiler.6.2.0 -> installed logs.0.9.0 -> installed alcotest-lwt.1.9.1 -> installed js_of_ocaml.6.2.0 -> installed js_of_ocaml-ppx.6.2.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-10-18 17:15.29 ---> saved as "c3634d52e8a669a9e0a9bb092b0c2ece956b85704d269230cb7d359b32b0db49" /src: (copy (src .) (dst /src)) 2025-10-18 17:15.30 ---> saved as "a6800b8c2e541702d62765d01a4d618af7e009102a58bd98fbf2f795d1252544" /src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build")) File "dune.lock/lock.dune", line 1, characters 0-0: Error: The lock dir is not sync with your dune-project Hint: run dune pkg lock "/usr/bin/env" "bash" "-c" "opam exec -- dune build @install @check @runtest && rm -rf _build" failed with exit status 1 2025-10-18 17:15.31: Job failed: Failed: Build failed