2025-06-02 22:28.29: New job: test mefyl/timmy https://github.com/mefyl/timmy.git#refs/heads/sandbox/mefyl/ci (f04cba128089886d16e090e59ffa7eb4492bdbfa) (linux-x86_64:fedora-42-5.3_opam-2.3)
Base: ocaml/opam:fedora-42-ocaml-5.3@sha256:340ef8413fe195bbf54fd669127e946ef9bf60ec9b789cfee1f165e261f69373
Opam project build
To reproduce locally:
git clone --recursive "https://github.com/mefyl/timmy.git" -b "sandbox/mefyl/ci" && cd "timmy" && git reset --hard f04cba12
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-42-ocaml-5.3@sha256:340ef8413fe195bbf54fd669127e946ef9bf60ec9b789cfee1f165e261f69373
# fedora-42-5.3_opam-2.3
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.3 /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
WORKDIR /src
RUN sudo chown opam /src
RUN cd ~/opam-repository && (git cat-file -e 0e1a25ffde388b436cc1998777c138d69666193d || git fetch origin master) && git reset -q --hard 0e1a25ffde388b436cc1998777c138d69666193d && 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-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-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.0 alcotest-lwt.1.9.0 angstrom.0.16.1 astring.0.8.5 base.v0.17.2 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.1.3.0 conf-npm.1 conf-tzdata.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.19.0 dune-configurator.3.19.0 ezjsonm.1.3.0 fmt.0.10.0 gen.1.1 hex.1.5.0 js_of_ocaml.6.0.1 js_of_ocaml-compiler.6.0.1 js_of_ocaml-ppx.6.0.1 jsonm.1.0.2 logs.0.8.0 lwt.5.9.1 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-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.0.3 ppx_here.v0.17.0 ppxlib.0.35.0 ptime.1.2.0 re.1.12.0 result.1.5 sedlex.3.4 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.0.8 uutf.1.0.4 yojson.3.0.0"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.3 --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-06-02 22:28.29: Using cache hint "mefyl/timmy-ocaml/opam:fedora-42-ocaml-5.3@sha256:340ef8413fe195bbf54fd669127e946ef9bf60ec9b789cfee1f165e261f69373-fedora-42-5.3_opam-2.3-44083e8ba76d6a60b7c079ddfed020eb"
2025-06-02 22:28.29: Using OBuilder spec:
((from ocaml/opam:fedora-42-ocaml-5.3@sha256:340ef8413fe195bbf54fd669127e946ef9bf60ec9b789cfee1f165e261f69373)
(comment fedora-42-5.3_opam-2.3)
(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.3 /usr/bin/opam"))
(run (shell "opam init --reinit -ni"))
(run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
(workdir /src)
(run (shell "sudo chown opam /src"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 0e1a25ffde388b436cc1998777c138d69666193d || git fetch origin master) && git reset -q --hard 0e1a25ffde388b436cc1998777c138d69666193d && 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-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-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.0 alcotest-lwt.1.9.0 angstrom.0.16.1 astring.0.8.5 base.v0.17.2 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.1.3.0 conf-npm.1 conf-tzdata.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.19.0 dune-configurator.3.19.0 ezjsonm.1.3.0 fmt.0.10.0 gen.1.1 hex.1.5.0 js_of_ocaml.6.0.1 js_of_ocaml-compiler.6.0.1 js_of_ocaml-ppx.6.0.1 jsonm.1.0.2 logs.0.8.0 lwt.5.9.1 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-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.0.3 ppx_here.v0.17.0 ppxlib.0.35.0 ptime.1.2.0 re.1.12.0 result.1.5 sedlex.3.4 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.0.8 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.3 --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-06-02 22:28.29: Waiting for resource in pool OCluster
2025-06-02 23:51.47: Waiting for worker…
2025-06-02 23:58.31: Got resource from pool OCluster
Building on x86-bm-c5.sw.ocaml.org
All commits already cached
HEAD is now at f04cba1 Fix optional dependencies.
(from ocaml/opam:fedora-42-ocaml-5.3@sha256:340ef8413fe195bbf54fd669127e946ef9bf60ec9b789cfee1f165e261f69373)
2025-06-02 23:58.51 ---> using "58e80f2943667cc892930b8f00145b341640b9631e46b0e990690977929d47d4" from cache
/: (comment fedora-42-5.3_opam-2.3)
/: (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 42 openh264 (From Cisco) - x86_ 100% | 14.2 KiB/s | 989.0 B | 00m00s
Fedora 42 - x86_64 - Updates 100% | 281.6 KiB/s | 25.1 KiB | 00m00s
Fedora 42 - x86_64 100% | 270.3 KiB/s | 24.6 KiB | 00m00s
Fedora 42 - x86_64 - Updates 100% | 10.4 MiB/s | 6.0 MiB | 00m01s
Fedora 42 - x86_64 100% | 428.4 KiB/s | 310.2 KiB | 00m01s
Repositories loaded.
Package "findutils-1:4.10.0-5.fc42.x86_64" is already installed.
Nothing to do.
2025-06-02 23:58.51 ---> using "5e75f4f90bede632f1905a7c2c6dd18b38094c39f21cf56cfd80e66f2a5ea1fb" from cache
/src: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-06-02 23:58.51 ---> using "99c48dd0c90841dd0557a3605ead22147b57247e14e3720a707113a3fd5cb79d" 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] y
This development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
[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-06-02 23:58.51 ---> using "f466099dbad0be430d5d88b3056e1b5546981294ac309650866ef1379cd6d212" from cache
/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-134-generic
The OCaml toplevel, version 5.3.0
2.3.0
2025-06-02 23:58.51 ---> using "9495bb6675cefd0fde9c3d3172875d2f69d43b4b48aa2c1fc3cbbdc7685c23a4" from cache
/src: (workdir /src)
/src: (run (shell "sudo chown opam /src"))
2025-06-02 23:58.51 ---> using "32bd88dfd4a72ae99f6d3d856e0c727304b5b119984d04b7c88a6f9d56b49fb7" from cache
/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 0e1a25ffde388b436cc1998777c138d69666193d || git fetch origin master) && git reset -q --hard 0e1a25ffde388b436cc1998777c138d69666193d && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
* branch master -> FETCH_HEAD
0d013e603b..c037675bed master -> origin/master
0e1a25ffde Merge pull request #27956 from Leonidas-from-XIV/release-yojson-3.0.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, 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-06-02 23:58.51 ---> using "8ced8cbda069f69f3556c312d24e90a90c59622dcc77c83629ffc65d38665a58" from cache
/src: (run (shell "mkdir -p 'opam/'"))
2025-06-02 23:58.51 ---> using "177b90ff280fc1238f374a0168f60e0804b7ee98979aba390804a2199a50987f" from cache
/src: (copy (src timmy.opam timmy-unix.opam timmy-timezones.opam timmy-lwt.opam timmy-jsoo.opam)
(dst ./))
2025-06-02 23:58.51 ---> saved as "78b8f7818f7b5dfac533e0c12b63b91d2f2591187b436c736a098daef09ac799"
/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-ios.opam opam/timmy-android.opam)
(dst opam/))
2025-06-02 23:58.52 ---> saved as "253530ea8af60d624c84ed2a8b6cb7da77b519dbfb4bc2dd21c905771a8e336a"
/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-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)
Package timmy-timezones does not exist, create as a NEW package? [y/n] y
[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)
Package timmy-windows does not exist, create as a NEW package? [y/n] y
[timmy-windows.dev] synchronised (file:///src/opam)
timmy-windows is now pinned to file:///src/opam (version dev)
Package timmy-unix-windows does not exist, create as a NEW package? [y/n] y
[timmy-unix-windows.dev] synchronised (file:///src/opam)
timmy-unix-windows is now pinned to file:///src/opam (version dev)
Package timmy-unix-macos does not exist, create as a NEW package? [y/n] y
[timmy-unix-macos.dev] synchronised (file:///src/opam)
timmy-unix-macos is now pinned to file:///src/opam (version dev)
Package timmy-unix-ios does not exist, create as a NEW package? [y/n] y
[timmy-unix-ios.dev] synchronised (file:///src/opam)
timmy-unix-ios is now pinned to file:///src/opam (version dev)
Package timmy-unix-android does not exist, create as a NEW package? [y/n] y
[timmy-unix-android.dev] synchronised (file:///src/opam)
timmy-unix-android is now pinned to file:///src/opam (version dev)
Package timmy-timezones-windows does not exist, create as a NEW package? [y/n] y
[timmy-timezones-windows.dev] synchronised (file:///src/opam)
timmy-timezones-windows is now pinned to file:///src/opam (version dev)
Package timmy-timezones-macos does not exist, create as a NEW package? [y/n] y
[timmy-timezones-macos.dev] synchronised (file:///src/opam)
timmy-timezones-macos is now pinned to file:///src/opam (version dev)
Package timmy-timezones-ios does not exist, create as a NEW package? [y/n] y
[timmy-timezones-ios.dev] synchronised (file:///src/opam)
timmy-timezones-ios is now pinned to file:///src/opam (version dev)
Package timmy-timezones-android does not exist, create as a NEW package? [y/n] y
[timmy-timezones-android.dev] synchronised (file:///src/opam)
timmy-timezones-android is now pinned to file:///src/opam (version dev)
Package timmy-macos does not exist, create as a NEW package? [y/n] y
[timmy-macos.dev] synchronised (file:///src/opam)
timmy-macos is now pinned to file:///src/opam (version dev)
Package timmy-lwt-windows does not exist, create as a NEW package? [y/n] y
[timmy-lwt-windows.dev] synchronised (file:///src/opam)
timmy-lwt-windows is now pinned to file:///src/opam (version dev)
Package timmy-lwt-macos does not exist, create as a NEW package? [y/n] y
[timmy-lwt-macos.dev] synchronised (file:///src/opam)
timmy-lwt-macos is now pinned to file:///src/opam (version dev)
Package timmy-lwt-ios does not exist, create as a NEW package? [y/n] y
[timmy-lwt-ios.dev] synchronised (file:///src/opam)
timmy-lwt-ios is now pinned to file:///src/opam (version dev)
Package timmy-lwt-android does not exist, create as a NEW package? [y/n] y
[timmy-lwt-android.dev] synchronised (file:///src/opam)
timmy-lwt-android is now pinned to file:///src/opam (version dev)
Package timmy-ios does not exist, create as a NEW package? [y/n] y
[timmy-ios.dev] synchronised (file:///src/opam)
timmy-ios is now pinned to file:///src/opam (version dev)
Package timmy-android does not exist, create as a NEW package? [y/n] y
[timmy-android.dev] synchronised (file:///src/opam)
timmy-android is now pinned to file:///src/opam (version dev)
2025-06-02 23:59.25 ---> saved as "fa7aa154db3127060415d0a3c8a29c311c93daaefbb5b7e760641d0e616ecefc"
/src: (run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project' && \
\necho '(lang dune 3.0)' > 'opam/dune-project'"))
2025-06-02 23:59.26 ---> saved as "373459b7d2130c105416e212f30182c4577282c9497b7fdc16833873cdec33ec"
/src: (env DEPS "alcotest.1.9.0 alcotest-lwt.1.9.0 angstrom.0.16.1 astring.0.8.5 base.v0.17.2 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.1.3.0 conf-npm.1 conf-tzdata.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.19.0 dune-configurator.3.19.0 ezjsonm.1.3.0 fmt.0.10.0 gen.1.1 hex.1.5.0 js_of_ocaml.6.0.1 js_of_ocaml-compiler.6.0.1 js_of_ocaml-ppx.6.0.1 jsonm.1.0.2 logs.0.8.0 lwt.5.9.1 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-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.0.3 ppx_here.v0.17.0 ppxlib.0.35.0 ptime.1.2.0 re.1.12.0 result.1.5 sedlex.3.4 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.0.8 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.3 --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 3).
[NOTE] Package ocaml-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml is already installed (current version is 5.3.0).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-nnp is already installed (current version is base).
[NOTE] Package base-effects is already installed (current version is base).
[NOTE] Package base-domains is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following 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.2-1.22.15.1.1.fc42 updates 9.3 MiB
- Installing dependencies:
- libuv x86_64 1:1.51.0-1.fc42 updates 570.2 KiB
- nodejs x86_64 1:22.15.1-1.fc42 updates 156.3 KiB
- nodejs-libs x86_64 1:22.15.1-1.fc42 updates 79.2 MiB
- Installing weak dependencies:
- nodejs-docs noarch 1:22.15.1-1.fc42 updates 94.8 MiB
- nodejs-full-i18n x86_64 1:22.15.1-1.fc42 updates 30.4 MiB
-
- Transaction Summary:
- Installing: 6 packages
-
- Total size of inbound packages is 40 MiB. Need to download 40 MiB.
- After this operation, 214 MiB extra will be used (install 214 MiB, remove 0 B).
- [1/6] nodejs-1:22.15.1-1.fc42.x86_64 100% | 390.2 KiB/s | 46.0 KiB | 00m00s
- [2/6] libuv-1:1.51.0-1.fc42.x86_64 100% | 3.1 MiB/s | 266.3 KiB | 00m00s
- [3/6] nodejs-npm-1:10.9.2-1.22.15.1.1.f 100% | 7.6 MiB/s | 2.4 MiB | 00m00s
- [4/6] nodejs-docs-1:22.15.1-1.fc42.noar 100% | 21.4 MiB/s | 8.9 MiB | 00m00s
- [5/6] nodejs-full-i18n-1:22.15.1-1.fc42 100% | 19.4 MiB/s | 8.5 MiB | 00m00s
- [6/6] nodejs-libs-1:22.15.1-1.fc42.x86_ 100% | 21.2 MiB/s | 19.9 MiB | 00m01s
- --------------------------------------------------------------------------------
- [6/6] Total 100% | 38.4 MiB/s | 40.0 MiB | 00m01s
- Running transaction
- [1/8] Verify package files 100% | 10.0 B/s | 6.0 B | 00m01s
- [2/8] Prepare transaction 100% | 32.0 B/s | 6.0 B | 00m00s
- [3/8] Installing libuv-1:1.51.0-1.fc42. 100% | 50.9 MiB/s | 573.0 KiB | 00m00s
- [4/8] Installing nodejs-libs-1:22.15.1- 100% | 82.4 MiB/s | 79.2 MiB | 00m01s
- [5/8] Installing nodejs-1:22.15.1-1.fc4 100% | 3.2 MiB/s | 158.3 KiB | 00m00s
- [6/8] Installing nodejs-npm-1:10.9.2-1. 100% | 17.7 MiB/s | 9.8 MiB | 00m01s
- [7/8] Installing nodejs-full-i18n-1:22. 100% | 81.0 MiB/s | 30.4 MiB | 00m00s
- [8/8] Installing nodejs-docs-1:22.15.1- 100% | 271.9 MiB/s | 94.9 MiB | 00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "npm"
- nodejs-npm-10.9.2-1.22.15.1.1.fc42.x86_64
2025-06-02 23:59.56 ---> saved as "51964ffa3d2153bcfd9a4a47b3c8b1953b905584b80734511052cf18618fcfbc"
/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 3).
[NOTE] Package ocaml-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml is already installed (current version is 5.3.0).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-nnp is already installed (current version is base).
[NOTE] Package base-effects is already installed (current version is base).
[NOTE] Package base-domains is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 52 packages
- install alcotest 1.9.0
- install alcotest-lwt 1.9.0
- install angstrom 0.16.1
- install astring 0.8.5
- install base v0.17.2
- install base-bytes base
- install bigstringaf 0.10.0
- install cmdliner 1.3.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.19.0
- install dune-configurator 3.19.0
- install ezjsonm 1.3.0
- install fmt 0.10.0
- install gen 1.1
- install hex 1.5.0
- install js_of_ocaml 6.0.1
- install js_of_ocaml-compiler 6.0.1
- install js_of_ocaml-ppx 6.0.1
- install jsonm 1.0.2
- install logs 0.8.0
- install lwt 5.9.1
- install menhir 20240715
- install menhirCST 20240715
- install menhirLib 20240715
- install menhirSdk 20240715
- 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.0.3
- install ppx_here v0.17.0
- install ppxlib 0.35.0
- install ptime 1.2.0
- install re 1.12.0
- install result 1.5
- install sedlex 3.4
- 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.0.8
- 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.2-1.22.15.1.1.fc42.x86_64" is already installed.
-
- Nothing to do.
+ /usr/sbin/rpm "-q" "--whatprovides" "npm"
- nodejs-npm-10.9.2-1.22.15.1.1.fc42.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (cached)
-> retrieved angstrom.0.16.1 (cached)
-> retrieved alcotest.1.9.0, alcotest-lwt.1.9.0 (cached)
-> retrieved base.v0.17.2 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved cmdliner.1.3.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.10.0 (cached)
-> retrieved gen.1.1 (cached)
-> retrieved hex.1.5.0 (cached)
-> retrieved jsonm.1.0.2 (cached)
-> retrieved logs.0.8.0 (cached)
-> retrieved lwt.5.9.1 (cached)
-> installed conf-npm.1
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached)
-> retrieved dune.3.19.0, dune-configurator.3.19.0 (cached)
-> retrieved js_of_ocaml.6.0.1, js_of_ocaml-compiler.6.0.1, js_of_ocaml-ppx.6.0.1 (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 ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> installed cmdliner.1.3.0
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.0.3 (cached)
-> retrieved ppx_here.v0.17.0 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved result.1.5 (cached)
-> retrieved re.1.12.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sedlex.3.4 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved topkg.1.0.8 (cached)
-> retrieved timedesc.3.1.0, timedesc-tzdb.3.1.0, timedesc-tzlocal.3.1.0 (cached)
-> retrieved ppxlib.0.35.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.0.8
-> installed uutf.1.0.4
-> installed fmt.0.10.0
-> installed astring.0.8.5
-> installed ptime.1.2.0
-> installed jsonm.1.0.2
-> installed dune.3.19.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed cstruct.6.2.0
-> installed gen.1.1
-> installed menhirCST.20240715
-> installed menhirLib.20240715
-> installed menhirSdk.20240715
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ppx_derivers.1.2.1
-> installed result.1.5
-> installed ocaml-compiler-libs.v0.17.0
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed re.1.12.0
-> installed hex.1.5.0
-> installed timedesc-tzdb.3.1.0
-> installed timedesc-tzlocal.3.1.0
-> installed ocplib-endian.1.2
-> installed ezjsonm.1.3.0
-> installed yojson.3.0.0
-> installed alcotest.1.9.0
-> installed dune-configurator.3.19.0
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed timedesc.3.1.0
-> installed lwt.5.9.1
-> installed base.v0.17.2
-> installed menhir.20240715
-> installed ppxlib.0.35.0
-> installed ppx_here.v0.17.0
-> installed sedlex.3.4
-> installed ppx_deriving.6.0.3
-> installed js_of_ocaml-compiler.6.0.1
-> installed logs.0.8.0
-> installed alcotest-lwt.1.9.0
-> installed js_of_ocaml.6.0.1
-> installed js_of_ocaml-ppx.6.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-03 00:03.23 ---> saved as "75ba34aba4f6f4d1a212ef33ac500af7c895df7dad40111972cd896b48e67fe4"
/src: (copy (src .) (dst /src))
2025-06-03 00:03.24 ---> saved as "c660693c24595c9a9364cc39759a6e136c9e6ce781ee5f7c5b4ac0a769bf49ac"
/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-06-03 00:03.24: Job failed: Failed: Build failed