2025-11-28 11:47.21: New job: test mefyl/timmy https://github.com/mefyl/timmy.git#refs/heads/master (96c1345cb34e927bbf9720f2a41d9182730578eb) (linux-x86_64:fedora-43-5.4_opam-2.4)Base: ocaml/opam:fedora-43-ocaml-5.4@sha256:4f40afaba9cb3bfe7873dfa507d3cbd0919bdc57e78356dc26bf8ab981ba6566Opam project buildTo reproduce locally:git clone --recursive "https://github.com/mefyl/timmy.git" -b "master" && cd "timmy" && git reset --hard 96c1345ccat > Dockerfile <<'END-OF-DOCKERFILE'FROM ocaml/opam:fedora-43-ocaml-5.4@sha256:4f40afaba9cb3bfe7873dfa507d3cbd0919bdc57e78356dc26bf8ab981ba6566# fedora-43-5.4_opam-2.4USER 1000:1000ENV CLICOLOR_FORCE="1"ENV OPAMCOLOR="always"WORKDIR /srcRUN sudo dnf install -y findutilsRUN sudo ln -f /usr/bin/opam-2.4 /usr/bin/opamRUN opam init --reinit -niRUN uname -rs && opam exec -- ocaml -version && opam --versionWORKDIR /srcRUN sudo chown opam /srcRUN 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 -uRUN 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.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base bigstringaf.0.10.0 cmdliner.2.1.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.10.0 lwt.5.9.2 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics_kernel.v0.17.1 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.17.0 ppxlib.0.37.0 ptime.1.2.0 re.1.14.0 result.1.5 sedlex.3.7 seq.base sexplib0.v0.17.0 stdlib-shims.0.3.0 timedesc.3.1.0 timedesc-tzdb.3.1.0 timedesc-tzlocal.3.1.0 topkg.1.1.1 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 $DEPSRUN opam install $DEPSCOPY --chown=1000:1000 . /srcRUN opam exec -- dune build @install @check @runtest && rm -rf _buildEND-OF-DOCKERFILEdocker build .END-REPRO-BLOCK2025-11-28 11:47.21: Using cache hint "mefyl/timmy-ocaml/opam:fedora-43-ocaml-5.4@sha256:4f40afaba9cb3bfe7873dfa507d3cbd0919bdc57e78356dc26bf8ab981ba6566-fedora-43-5.4_opam-2.4-33ca5c98badec04432726604f3fa3f67"2025-11-28 11:47.21: Using OBuilder spec:((from ocaml/opam:fedora-43-ocaml-5.4@sha256:4f40afaba9cb3bfe7873dfa507d3cbd0919bdc57e78356dc26bf8ab981ba6566)(comment fedora-43-5.4_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 8a324a5b9945e0e515da441ede437f3756caa83d || git fetch origin master) && git reset -q --hard 8a324a5b9945e0e515da441ede437f3756caa83d && 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.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base bigstringaf.0.10.0 cmdliner.2.1.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.10.0 lwt.5.9.2 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics_kernel.v0.17.1 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.17.0 ppxlib.0.37.0 ptime.1.2.0 re.1.14.0 result.1.5 sedlex.3.7 seq.base sexplib0.v0.17.0 stdlib-shims.0.3.0 timedesc.3.1.0 timedesc-tzdb.3.1.0 timedesc-tzlocal.3.1.0 topkg.1.1.1 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-11-28 11:47.21: Waiting for resource in pool OCluster2025-11-28 11:47.21: Waiting for worker…2025-11-28 11:47.21: Got resource from pool OClusterBuilding on asteria.caelum.ci.devAll commits already cachedHEAD is now at 96c1345 Merge subtree logistic.(from ocaml/opam:fedora-43-ocaml-5.4@sha256:4f40afaba9cb3bfe7873dfa507d3cbd0919bdc57e78356dc26bf8ab981ba6566)Unable to find image 'ocaml/opam:fedora-43-ocaml-5.4@sha256:4f40afaba9cb3bfe7873dfa507d3cbd0919bdc57e78356dc26bf8ab981ba6566' locallydocker.io/ocaml/opam@sha256:4f40afaba9cb3bfe7873dfa507d3cbd0919bdc57e78356dc26bf8ab981ba6566: Pulling from ocaml/opam3a6ccf50917d: Already exists2ac39db0f7b1: Already exists4ab95fa37585: Already existsef05642a6c19: Already exists6ce4105a6817: Already exists482e731bee2c: Already exists82b20b1785fc: Already exists5033efba3ea4: Already existsac061f34d5de: Already exists3699d934db19: Already existsc70084606501: Already exists92cba88bcd96: Already exists87d6cf018c95: Already exists47a5774c8fa4: Already existsa7a793f430ef: Already exists50749af763e4: Already exists1931ff52ea8f: Already existsd6cbdb0b2976: Already existsc21f3fb8010b: Already exists006e8a0d5bfe: Already exists4f4fb700ef54: Already existsbff3cbb02176: Already existsb5138c38b1e4: Already existsf9df0a6b27ec: Already exists199f7dd22bb1: Already exists4704820b8848: Already exists813e8e89161a: Already exists3fef5dd9f9c7: Already exists33b83451bd83: Already existsf32a57644710: Already exists40216abfd9f1: Already existsd689b2a1b34b: Already existsc515a0f2353f: Already exists6b7f7c537f40: Already exists2def47abdae6: Already existsfd11b9527539: Already existsb49b2a2f9119: Already exists23b9806e7d7a: Already exists251f6be3be0f: Already exists77df5933f202: Pulling fs layerf363410542aa: Pulling fs layer02b0f83c8144: Pulling fs layer561ad12063d7: Pulling fs layerbb777ec2f169: Pulling fs layerf363410542aa: Waiting02b0f83c8144: Waiting77df5933f202: Waitingbb777ec2f169: Waiting561ad12063d7: Waiting77df5933f202: Download complete77df5933f202: Pull completef363410542aa: Download complete02b0f83c8144: Download complete561ad12063d7: Verifying Checksum561ad12063d7: Download completebb777ec2f169: Download completef363410542aa: Pull complete02b0f83c8144: Pull complete561ad12063d7: Pull completebb777ec2f169: Pull completeDigest: sha256:4f40afaba9cb3bfe7873dfa507d3cbd0919bdc57e78356dc26bf8ab981ba6566Status: Downloaded newer image for ocaml/opam@sha256:4f40afaba9cb3bfe7873dfa507d3cbd0919bdc57e78356dc26bf8ab981ba65662025-11-28 11:47.23 ---> using "ba6d18b62928370460223f977de9308ec394ac268d94d34b0cee5d6ca2044b67" from cache/: (comment fedora-43-5.4_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 100% | 58.4 KiB/s | 23.7 KiB | 00m00sFedora 43 - x86_64 - Updates 100% | 113.9 KiB/s | 20.2 KiB | 00m00sRepositories loaded.Package "findutils-1:4.10.0-6.fc43.x86_64" is already installed.Nothing to do.2025-11-28 11:47.23 ---> using "ebfa901ac87bf29ca544c436b2f9cbf6f6f1bdfd291057300223062de1ad063b" from cache/src: (run (shell "sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam"))2025-11-28 11:47.23 ---> using "3744f82be5b6b77c96af9c3adea90de92e65e64c2cc811548d5ea0e65762bb62" 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.Continue? [Y/n] yThis 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.[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 --globalFormat upgrade done.<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>[default] Initialised2025-11-28 11:47.23 ---> using "bb474263ea5495105e41a9e56a75be580b1f25658eb0d1b39eb4f6fdcc85d812" from cache/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))Linux 6.8.0-87-genericThe OCaml toplevel, version 5.4.02.4.12025-11-28 11:47.23 ---> using "24297fa171fb50abf71238f13f5d2788863dfb642ff69f0b34b0ee964ecb8732" from cache/src: (workdir /src)/src: (run (shell "sudo chown opam /src"))2025-11-28 11:47.23 ---> using "f9b8f77de7cecf0e74a6275f4190edb64fc8391a175a0014fd0901beb2d7a51c" from cache/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_HEAD2ec6d6cc92..eb45f7ec86 master -> origin/master8a324a5b99 Add: cmdliner.2.1.0 (#28962)<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>[default] synchronised from git+file:///home/opam/opam-repositoryAlready up-to-date.Nothing to do.# To update the current shell environment, run: eval $(opam env)2025-11-28 11:47.23 ---> using "448ee0bf3b884a6bd697facf83134490163697f531cc93264013f45812bd5637" from cache/src: (run (shell "mkdir -p 'opam/'"))2025-11-28 11:47.23 ---> using "56193b3bf4df0708deb8d0a7a175eacc41aa712eb2e1f85ec995e3840b26d797" from cache/src: (copy (src timmy.opam timmy-unix.opam timmy-timezones.opam timmy-lwt.opam timmy-jsoo.opam)(dst ./))2025-11-28 11:47.23 ---> using "068a4b919b1b725823d209cd29f86f681f27b2ee72f7b9a0d764da0b143ea6da" from cache/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-11-28 11:47.23 ---> using "9d2c6787e7e4c2d9a77f3e4f1b37808e305203c2c06ac7a7817985113ee44f92" from cache/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-11-28 11:47.23 ---> using "96c1959d85195b30f2f63568e824810c5ad3fe3a8486e0595ab13cd54497e3ef" from cache/src: (run (network host)(shell "echo '(lang dune 3.0)' > './dune-project' && \\necho '(lang dune 3.0)' > 'opam/dune-project'"))2025-11-28 11:47.23 ---> using "309806e5f886bd88bdd88ab9508c48065ff90f0ea2ebde2c90615cb6f643e8b0" from cache/src: (env DEPS "alcotest.1.9.1 alcotest-lwt.1.9.1 angstrom.0.16.1 astring.0.8.5 base.v0.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base bigstringaf.0.10.0 cmdliner.2.1.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.10.0 lwt.5.9.2 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics_kernel.v0.17.1 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.17.0 ppxlib.0.37.0 ptime.1.2.0 re.1.14.0 result.1.5 sedlex.3.7 seq.base sexplib0.v0.17.0 stdlib-shims.0.3.0 timedesc.3.1.0 timedesc-tzdb.3.1.0 timedesc-tzlocal.3.1.0 topkg.1.1.1 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:- Fedora 43 - x86_64 - Updates 100% | 103.1 KiB/s | 20.6 KiB | 00m00s- 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 3).[NOTE] Package ocaml-compiler is already installed (current version is 5.4.0).[NOTE] Package ocaml-base-compiler is already installed (current version is 5.4.0).[NOTE] Package ocaml is already installed (current version is 5.4.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 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.20.0.1.fc43 updates 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.20.0-1.fc43 updates 161.0 KiB- nodejs-libs x86_64 1:22.20.0-1.fc43 updates 77.9 MiB- Installing weak dependencies:- nodejs-docs noarch 1:22.20.0-1.fc43 updates 97.1 MiB- nodejs-full-i18n x86_64 1:22.20.0-1.fc43 updates 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.20.0-1.fc43.x86_64 100% | 554.6 KiB/s | 50.5 KiB | 00m00s- [2/7] c-ares-0:1.34.5-2.fc43.x86_64 100% | 2.6 MiB/s | 117.0 KiB | 00m00s- [3/7] libuv-1:1.51.0-2.fc43.x86_64 100% | 8.4 MiB/s | 266.1 KiB | 00m00s- [4/7] nodejs-npm-1:10.9.3-1.22.20.0.1.f 100% | 5.7 MiB/s | 2.3 MiB | 00m00s- [5/7] nodejs-docs-1:22.20.0-1.fc43.noar 100% | 7.7 MiB/s | 9.1 MiB | 00m01s- [6/7] nodejs-full-i18n-1:22.20.0-1.fc43 100% | 6.1 MiB/s | 8.5 MiB | 00m01s- [7/7] nodejs-libs-1:22.20.0-1.fc43.x86_ 100% | 8.7 MiB/s | 19.6 MiB | 00m02s- --------------------------------------------------------------------------------- [7/7] Total 100% | 15.5 MiB/s | 40.0 MiB | 00m03s- Running transaction- [1/9] Verify package files 100% | 37.0 B/s | 7.0 B | 00m00s- [2/9] Prepare transaction 100% | 67.0 B/s | 7.0 B | 00m00s- [3/9] Installing libuv-1:1.51.0-2.fc43. 100% | 79.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.20.0- 100% | 214.1 MiB/s | 77.9 MiB | 00m00s- [6/9] Installing nodejs-1:22.20.0-1.fc4 100% | 5.9 MiB/s | 163.1 KiB | 00m00s- [7/9] Installing nodejs-npm-1:10.9.3-1. 100% | 26.3 MiB/s | 9.6 MiB | 00m00s- [8/9] Installing nodejs-full-i18n-1:22. 100% | 243.3 MiB/s | 30.4 MiB | 00m00s- [9/9] Installing nodejs-docs-1:22.20.0- 100% | 537.2 MiB/s | 97.2 MiB | 00m00s- Complete!+ /usr/sbin/rpm "-q" "--whatprovides" "npm"- nodejs-npm-10.9.3-1.22.20.0.1.fc43.x86_642025-11-28 11:47.23 ---> using "6913445dda1fcd3bcf1a6ae0c93cc9cb4839d70013fb0f65a117690a0ed9dc1c" from cache/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.4.0).[NOTE] Package ocaml-base-compiler is already installed (current version is 5.4.0).[NOTE] Package ocaml is already installed (current version is 5.4.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 52 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.17.3- install base-bytes base- install bigstringaf 0.10.0- install cmdliner 2.1.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.10.0- install lwt 5.9.2- install menhir 20250912- install menhirCST 20250912- install menhirLib 20250912- install menhirSdk 20250912- install ocaml-compiler-libs v0.17.0- install ocaml-syntax-shims 1.0.0- install ocaml_intrinsics_kernel v0.17.1- 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.17.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.17.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.1- install uutf 1.0.4- install yojson 3.0.0The 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 detectable4. 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.20.0.1.fc43.x86_64" is already installed.-- Nothing to do.+ /usr/sbin/rpm "-q" "--whatprovides" "npm"- nodejs-npm-10.9.3-1.22.20.0.1.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.17.3 (cached)-> retrieved cmdliner.2.1.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.10.0 (cached)-> installed conf-npm.1-> retrieved lwt.5.9.2 (cached)-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached)-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)-> retrieved js_of_ocaml.6.2.0, js_of_ocaml-compiler.6.2.0, js_of_ocaml-ppx.6.2.0 (cached)-> retrieved ocaml-compiler-libs.v0.17.0 (cached)-> retrieved ocaml-syntax-shims.1.0.0 (cached)-> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached)-> retrieved ocamlfind.1.9.8 (cached)-> retrieved ocamlbuild.0.16.1 (cached)-> installed cmdliner.2.1.0-> retrieved ocplib-endian.1.2 (cached)-> retrieved ppx_derivers.1.2.1 (cached)-> retrieved ppx_deriving.6.1.1 (cached)-> retrieved ppx_here.v0.17.0 (cached)-> retrieved ptime.1.2.0 (cached)-> retrieved result.1.5 (cached)-> retrieved re.1.14.0 (cached)-> retrieved seq.base (cached)-> installed seq.base-> retrieved sedlex.3.7 (cached)-> retrieved sexplib0.v0.17.0 (cached)-> retrieved stdlib-shims.0.3.0 (cached)-> retrieved topkg.1.1.1 (cached)-> retrieved ppxlib.0.37.0 (cached)-> retrieved timedesc.3.1.0, timedesc-tzdb.3.1.0, timedesc-tzlocal.3.1.0 (cached)-> retrieved uutf.1.0.4 (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.1-> installed uutf.1.0.4-> installed fmt.0.11.0-> installed ptime.1.2.0-> installed dune.3.20.2-> installed astring.0.8.5-> installed jsonm.1.0.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.17.0-> installed ocaml-syntax-shims.1.0.0-> installed ocaml_intrinsics_kernel.v0.17.1-> installed ppx_derivers.1.2.1-> installed re.1.14.0-> installed result.1.5-> installed sexplib0.v0.17.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.17.3-> installed menhir.20250912-> installed ppxlib.0.37.0-> installed ppx_here.v0.17.0-> installed ppx_deriving.6.1.1-> installed sedlex.3.7-> installed js_of_ocaml-compiler.6.2.0-> installed logs.0.10.0-> installed alcotest-lwt.1.9.1-> installed js_of_ocaml.6.2.0-> installed js_of_ocaml-ppx.6.2.0Done.# To update the current shell environment, run: eval $(opam env)2025-11-28 11:47.23 ---> using "44e8ffd07893845127a13b16518820f69dfd9b5cd88b92ba9ab51ed2c177e1fe" from cache/src: (copy (src .) (dst /src))2025-11-28 11:47.24 ---> saved as "822f959b51c00bcb1bbb97a4f47efad17811701eca9f5253840a0ad848951f1e"/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-projectHint: run dune pkg lock"/usr/bin/env" "bash" "-c" "opam exec -- dune build @install @check @runtest && rm -rf _build" failed with exit status 12025-11-28 11:47.24: Job failed: Failed: Build failed