Organisationsmefyltimmya566ff (feature/dune-pkg)fedora-41-5.2_opam-2.3

fedora-41-5.2_opam-2.3

Link Copied
Code Copied

Logs

2024-12-19 23:16.43: New job: test mefyl/timmy https://github.com/mefyl/timmy.git#refs/heads/feature/dune-pkg (a566ff2f56ac076df4fed2fae9b21ec8bc92e366) (linux-x86_64:fedora-41-5.2_opam-2.3)
Base: ocaml/opam:fedora-41-ocaml-5.2@sha256:c17cc6ab841b4b1b5b09f6e2e65c4ed5af1175168e69aff5897b5bdcd4348776
Opam project build


To reproduce locally:


git clone --recursive "https://github.com/mefyl/timmy.git" -b "feature/dune-pkg" && cd "timmy" && git reset --hard a566ff2f
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-41-ocaml-5.2@sha256:c17cc6ab841b4b1b5b09f6e2e65c4ed5af1175168e69aff5897b5bdcd4348776
# fedora-41-5.2_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 40261e81b0d4449cd32f7834e272aa9d38a28c49 || git fetch origin master) && git reset -q --hard 40261e81b0d4449cd32f7834e272aa9d38a28c49 && git log --no-decorate -n1 --oneline && opam update -u
RUN mkdir -p 'opam/'
COPY --chown=1000:1000 timmy.opam timmy-unix.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-macos.opam opam/timmy-lwt-windows.opam opam/timmy-lwt-macos.opam opam/timmy-jsoo-windows.opam opam/timmy-jsoo-macos.opam opam/
RUN opam pin add -yn timmy.dev './' && \
opam pin add -yn timmy-unix.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-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-jsoo-windows.dev 'opam/' && \
opam pin add -yn timmy-jsoo-macos.dev 'opam/'
RUN echo '(lang dune 3.0)' > './dune-project' && \
echo '(lang dune 3.0)' > 'opam/dune-project'
ENV DEPS="alcotest.1.8.0 alcotest-lwt.1.8.0 astring.0.8.5 base.v0.17.1 base-bigarray.base base-bytes.base base-domains.base base-nnp.base base-threads.base base-unix.base camlp-streams.5.0.1 cmdliner.1.3.0 conf-npm.1 conf-tzdata.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.17.1 dune-build-info.3.17.1 dune-configurator.3.17.1 either.1.0.0 ezjsonm.1.3.0 fix.20230505 fmt.0.9.0 fpath.0.7.3 gen.1.1 hex.1.5.0 host-arch-x86_64.1 host-system-other.1 js_of_ocaml.5.9.1 js_of_ocaml-compiler.5.9.1 js_of_ocaml-ppx.5.9.1 jsonm.1.0.2 logs.0.7.0 lwt.5.9.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 num.1.5-1 ocaml.5.2.1 ocaml-base-compiler.5.2.1 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.3.7.2 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.15.0 ocamlfind.1.9.6 ocamlformat.0.26.2 ocamlformat-lib.0.26.2 ocp-indent.1.8.1 ocplib-endian.1.2 opam-file-format.2.1.6 parsexp.v0.17.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_here.v0.17.0 ppxlib.0.33.0 ptime.1.2.0 re.1.12.0 result.1.5 sedlex.3.3 seq.base sexplib.v0.17.0 sexplib0.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 topkg.1.0.7 uucp.16.0.0 uuseg.16.0.0 uutf.1.0.3 yojson.2.2.2"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.3 --depext-only -y timmy.dev timmy-unix.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


2024-12-19 23:16.43: Using cache hint "mefyl/timmy-ocaml/opam:fedora-41-ocaml-5.2@sha256:c17cc6ab841b4b1b5b09f6e2e65c4ed5af1175168e69aff5897b5bdcd4348776-fedora-41-5.2_opam-2.3-34234e2dd07297d97c9f31e4a13de1c8"
2024-12-19 23:16.43: Using OBuilder spec:
((from ocaml/opam:fedora-41-ocaml-5.2@sha256:c17cc6ab841b4b1b5b09f6e2e65c4ed5af1175168e69aff5897b5bdcd4348776)
(comment fedora-41-5.2_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 40261e81b0d4449cd32f7834e272aa9d38a28c49 || git fetch origin master) && git reset -q --hard 40261e81b0d4449cd32f7834e272aa9d38a28c49 && git log --no-decorate -n1 --oneline && opam update -u"))
(run (shell "mkdir -p 'opam/'"))
(copy (src timmy.opam timmy-unix.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-macos.opam opam/timmy-lwt-windows.opam opam/timmy-lwt-macos.opam opam/timmy-jsoo-windows.opam opam/timmy-jsoo-macos.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-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-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-jsoo-windows.dev 'opam/' && \
\nopam pin add -yn timmy-jsoo-macos.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.8.0 alcotest-lwt.1.8.0 astring.0.8.5 base.v0.17.1 base-bigarray.base base-bytes.base base-domains.base base-nnp.base base-threads.base base-unix.base camlp-streams.5.0.1 cmdliner.1.3.0 conf-npm.1 conf-tzdata.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.17.1 dune-build-info.3.17.1 dune-configurator.3.17.1 either.1.0.0 ezjsonm.1.3.0 fix.20230505 fmt.0.9.0 fpath.0.7.3 gen.1.1 hex.1.5.0 host-arch-x86_64.1 host-system-other.1 js_of_ocaml.5.9.1 js_of_ocaml-compiler.5.9.1 js_of_ocaml-ppx.5.9.1 jsonm.1.0.2 logs.0.7.0 lwt.5.9.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 num.1.5-1 ocaml.5.2.1 ocaml-base-compiler.5.2.1 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.3.7.2 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.15.0 ocamlfind.1.9.6 ocamlformat.0.26.2 ocamlformat-lib.0.26.2 ocp-indent.1.8.1 ocplib-endian.1.2 opam-file-format.2.1.6 parsexp.v0.17.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_here.v0.17.0 ppxlib.0.33.0 ptime.1.2.0 re.1.12.0 result.1.5 sedlex.3.3 seq.base sexplib.v0.17.0 sexplib0.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 topkg.1.0.7 uucp.16.0.0 uuseg.16.0.0 uutf.1.0.3 yojson.2.2.2")
(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-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"))
)


2024-12-19 23:16.43: Waiting for resource in pool OCluster
2024-12-20 21:37.10: Waiting for worker…
2024-12-20 21:39.36: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at a566ff2 Migrate CI to `dune pkg`.


(from ocaml/opam:fedora-41-ocaml-5.2@sha256:c17cc6ab841b4b1b5b09f6e2e65c4ed5af1175168e69aff5897b5bdcd4348776)
2024-12-20 21:39.37 ---> using "3f500159ced7235f8f35049220cb95fc60fd97f465e9154ce33569c428bf278a" from cache


/: (comment fedora-41-5.2_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 41 - x86_64 - Updates           100% |  37.5 KiB/s |   9.1 KiB |  00m00s
Fedora 41 - x86_64 - Updates           100% |   6.4 MiB/s |   3.3 MiB |  00m01s
Repositories loaded.
Package "findutils-1:4.10.0-4.fc41.x86_64" is already installed.


Nothing to do.
2024-12-20 21:39.37 ---> using "a07c5fbc00bab256401c70a7d692411a95e17c0cacf082b418523e620df46b9c" from cache


/src: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2024-12-20 21:39.37 ---> using "3fed8c5c8535bca97649d83933759d9c40903288dcd86e04b1d1cdc368a16e68" 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 development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.


Continue? [y/n] y
Format upgrade done.


<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2024-12-20 21:39.37 ---> using "843a6686c6a55f995bba555dbf0a0a0420257858060a71a715a6bf317606991d" from cache


/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-126-generic
The OCaml toplevel, version 5.2.1
2.3.0
2024-12-20 21:39.37 ---> using "ed7325673449c65b562647aa936d88855501797e5b9820d4a22ece2a34787af4" from cache


/src: (workdir /src)


/src: (run (shell "sudo chown opam /src"))
2024-12-20 21:39.37 ---> using "726f604409da25617a6a841c246a357d2c3de6a73caedf0d4abcd4b145127aa1" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 40261e81b0d4449cd32f7834e272aa9d38a28c49 || git fetch origin master) && git reset -q --hard 40261e81b0d4449cd32f7834e272aa9d38a28c49 && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
* branch                  master     -> FETCH_HEAD
de786e28db..f51b2f3708  master     -> origin/master
40261e81b0 Merge pull request #27148 from mtelvers/opam-publish-ocaml-version.3.7.2


<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from 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)
2024-12-20 21:39.37 ---> using "c362def5878281cb5af8874a76b01c26fc639af5e952f6ce1345f9d42d2109ec" from cache


/src: (run (shell "mkdir -p 'opam/'"))
2024-12-20 21:39.37 ---> saved as "a7c13c087f35864662a9a6e89b3ea5b15153103acf64299f873e5aef430fd058"


/src: (copy (src timmy.opam timmy-unix.opam timmy-lwt.opam timmy-jsoo.opam)
(dst ./))
2024-12-20 21:39.37 ---> saved as "a6a64be42219791c9973a5e1dd6ae35fd7c25eb85fd055409acaaccdb9ce9f53"


/src: (copy (src opam/timmy-windows.opam opam/timmy-unix-windows.opam opam/timmy-unix-macos.opam opam/timmy-macos.opam opam/timmy-lwt-windows.opam opam/timmy-lwt-macos.opam opam/timmy-jsoo-windows.opam opam/timmy-jsoo-macos.opam)
(dst opam/))
2024-12-20 21:39.37 ---> saved as "8aae466bbd3464767b12e03718cebdc4ff98e9e420af7d868a9b25d2561ff74c"


/src: (run (network host)
(shell  "opam pin add -yn timmy.dev './' && \
\nopam pin add -yn timmy-unix.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-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-jsoo-windows.dev 'opam/' && \
\nopam pin add -yn timmy-jsoo-macos.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)
[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-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-jsoo-windows does not exist, create as a NEW package? [y/n] y
[timmy-jsoo-windows.dev] synchronised (file:///src/opam)
timmy-jsoo-windows is now pinned to file:///src/opam (version dev)
Package timmy-jsoo-macos does not exist, create as a NEW package? [y/n] y
[timmy-jsoo-macos.dev] synchronised (file:///src/opam)
timmy-jsoo-macos is now pinned to file:///src/opam (version dev)
2024-12-20 21:39.49 ---> saved as "c1d093fc006be3ada009a35331728da891aa4e8c5db079b718eeca8e2462f772"


/src: (run (network host)
(shell  "echo '(lang dune 3.0)' > './dune-project' && \
\necho '(lang dune 3.0)' > 'opam/dune-project'"))
2024-12-20 21:39.49 ---> saved as "4401b603b7a63465cb519b224b84ea89d212f8df3916802fa634df9da8f4d546"


/src: (env DEPS "alcotest.1.8.0 alcotest-lwt.1.8.0 astring.0.8.5 base.v0.17.1 base-bigarray.base base-bytes.base base-domains.base base-nnp.base base-threads.base base-unix.base camlp-streams.5.0.1 cmdliner.1.3.0 conf-npm.1 conf-tzdata.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.17.1 dune-build-info.3.17.1 dune-configurator.3.17.1 either.1.0.0 ezjsonm.1.3.0 fix.20230505 fmt.0.9.0 fpath.0.7.3 gen.1.1 hex.1.5.0 host-arch-x86_64.1 host-system-other.1 js_of_ocaml.5.9.1 js_of_ocaml-compiler.5.9.1 js_of_ocaml-ppx.5.9.1 jsonm.1.0.2 logs.0.7.0 lwt.5.9.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 num.1.5-1 ocaml.5.2.1 ocaml-base-compiler.5.2.1 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.3.7.2 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.15.0 ocamlfind.1.9.6 ocamlformat.0.26.2 ocamlformat-lib.0.26.2 ocp-indent.1.8.1 ocplib-endian.1.2 opam-file-format.2.1.6 parsexp.v0.17.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_here.v0.17.0 ppxlib.0.33.0 ptime.1.2.0 re.1.12.0 result.1.5 sedlex.3.3 seq.base sexplib.v0.17.0 sexplib0.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 topkg.1.0.7 uucp.16.0.0 uuseg.16.0.0 uutf.1.0.3 yojson.2.2.2")


/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-lwt.dev timmy-jsoo.dev $DEPS"))
+ /usr/bin/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-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-base-compiler is already installed (current version is 5.2.1).
[NOTE] Package ocaml is already installed (current version is 5.2.1).
[NOTE] Package host-system-other is already installed (current version is 1).
[NOTE] Package host-arch-x86_64 is already installed (current version is 1).
[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-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/bin/sudo "yum" "install" "-y" "npm"
- Updating and loading repositories:
- Repositories loaded.
- Package           Arch   Version                   Repository      Size
- Installing:
-  nodejs-npm       x86_64 1:10.9.0-1.22.11.0.3.fc41 updates      9.4 MiB
- Installing dependencies:
-  libuv            x86_64 1:1.49.2-1.fc41           updates    565.0 KiB
-  nodejs           x86_64 1:22.11.0-3.fc41          updates    148.5 KiB
-  nodejs-libs      x86_64 1:22.11.0-3.fc41          updates     73.8 MiB
- Installing weak dependencies:
-  nodejs-docs      noarch 1:22.11.0-3.fc41          updates     91.9 MiB
-  nodejs-full-i18n x86_64 1:22.11.0-3.fc41          updates     29.3 MiB
- 
- Transaction Summary:
-  Installing:         6 packages
- 
- Total size of inbound packages is 38 MiB. Need to download 38 MiB.
- After this operation, 205 MiB extra will be used (install 205 MiB, remove 0 B).
- [1/6] nodejs-1:22.11.0-3.fc41.x86_64    100% | 866.2 KiB/s |  45.0 KiB |  00m00s
- [2/6] libuv-1:1.49.2-1.fc41.x86_64      100% |   6.0 MiB/s | 262.1 KiB |  00m00s
- [3/6] nodejs-npm-1:10.9.0-1.22.11.0.3.f 100% |  15.5 MiB/s |   2.4 MiB |  00m00s
- [4/6] nodejs-docs-1:22.11.0-3.fc41.noar 100% |  32.5 MiB/s |   8.6 MiB |  00m00s
- [5/6] nodejs-full-i18n-1:22.11.0-3.fc41 100% |  24.7 MiB/s |   8.4 MiB |  00m00s
- [6/6] nodejs-libs-1:22.11.0-3.fc41.x86_ 100% |  30.6 MiB/s |  18.3 MiB |  00m01s
- --------------------------------------------------------------------------------
- [6/6] Total                             100% |  52.6 MiB/s |  38.0 MiB |  00m01s
- Running transaction
- [1/8] Verify package files              100% |  44.0   B/s |   6.0   B |  00m00s
- [2/8] Prepare transaction               100% |  65.0   B/s |   6.0   B |  00m00s
- [3/8] Installing libuv-1:1.49.2-1.fc41. 100% | 110.9 MiB/s | 567.8 KiB |  00m00s
- [4/8] Installing nodejs-libs-1:22.11.0- 100% | 272.3 MiB/s |  73.8 MiB |  00m00s
- [5/8] Installing nodejs-1:22.11.0-3.fc4 100% |  18.4 MiB/s | 150.6 KiB |  00m00s
- [6/8] Installing nodejs-npm-1:10.9.0-1. 100% |  27.9 MiB/s |   9.9 MiB |  00m00s
- [7/8] Installing nodejs-full-i18n-1:22. 100% | 268.9 MiB/s |  29.3 MiB |  00m00s
- [8/8] Installing nodejs-docs-1:22.11.0- 100% | 657.2 MiB/s |  92.0 MiB |  00m00s
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "npm"
- nodejs-npm-10.9.0-1.22.11.0.3.fc41.x86_64
2024-12-20 21:40.07 ---> saved as "1e032df392695049145d6affd4fda855ad914bf69a37d61dfa22c604e2cc274a"


/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-base-compiler is already installed (current version is 5.2.1).
[NOTE] Package ocaml is already installed (current version is 5.2.1).
[NOTE] Package host-system-other is already installed (current version is 1).
[NOTE] Package host-arch-x86_64 is already installed (current version is 1).
[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-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 63 packages
- install alcotest                1.8.0
- install alcotest-lwt            1.8.0
- install astring                 0.8.5
- install base                    v0.17.1
- install base-bytes              base
- install camlp-streams           5.0.1
- 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.17.1
- install dune-build-info         3.17.1
- install dune-configurator       3.17.1
- install either                  1.0.0
- install ezjsonm                 1.3.0
- install fix                     20230505
- install fmt                     0.9.0
- install fpath                   0.7.3
- install gen                     1.1
- install hex                     1.5.0
- install js_of_ocaml             5.9.1
- install js_of_ocaml-compiler    5.9.1
- install js_of_ocaml-ppx         5.9.1
- install jsonm                   1.0.2
- install logs                    0.7.0
- install lwt                     5.9.0
- install menhir                  20240715
- install menhirCST               20240715
- install menhirLib               20240715
- install menhirSdk               20240715
- install num                     1.5-1
- install ocaml-compiler-libs     v0.17.0
- install ocaml-syntax-shims      1.0.0
- install ocaml-version           3.7.2
- install ocaml_intrinsics_kernel v0.17.1
- install ocamlbuild              0.15.0
- install ocamlfind               1.9.6
- install ocamlformat             0.26.2
- install ocamlformat-lib         0.26.2
- install ocp-indent              1.8.1
- install ocplib-endian           1.2
- install opam-file-format        2.1.6
- install parsexp                 v0.17.0
- install ppx_derivers            1.2.1
- install ppx_deriving            6.0.3
- install ppx_here                v0.17.0
- install ppxlib                  0.33.0
- install ptime                   1.2.0
- install re                      1.12.0
- install result                  1.5
- install sedlex                  3.3
- install seq                     base
- install sexplib                 v0.17.0
- install sexplib0                v0.17.0
- install stdio                   v0.17.0
- install stdlib-shims            0.3.0
- install topkg                   1.0.7
- install uucp                    16.0.0
- install uuseg                   16.0.0
- install uutf                    1.0.3
- install yojson                  2.2.2


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/bin/sudo "yum" "install" "-y" "npm"
- Updating and loading repositories:
- Repositories loaded.
- Package "nodejs-npm-1:10.9.0-1.22.11.0.3.fc41.x86_64" is already installed.
- 
- Nothing to do.
+ /usr/bin/rpm "-q" "--whatprovides" "npm"
- nodejs-npm-10.9.0-1.22.11.0.3.fc41.x86_64


<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved base.v0.17.1  (cached)
-> retrieved alcotest.1.8.0, alcotest-lwt.1.8.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 either.1.0.0  (cached)
-> retrieved ezjsonm.1.3.0  (cached)
-> installed conf-npm.1
-> retrieved fix.20230505  (cached)
-> retrieved fmt.0.9.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved hex.1.5.0  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved logs.0.7.0  (cached)
-> retrieved lwt.5.9.0  (cached)
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715  (cached)
-> retrieved dune.3.17.1, dune-build-info.3.17.1, dune-configurator.3.17.1  (cached)
-> retrieved js_of_ocaml.5.9.1, js_of_ocaml-compiler.5.9.1, js_of_ocaml-ppx.5.9.1  (cached)
-> retrieved num.1.5-1  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocaml-version.3.7.2  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved ocamlbuild.0.15.0  (cached)
-> installed cmdliner.1.3.0
-> retrieved ocamlfind.1.9.6  (cached)
-> retrieved ocamlformat.0.26.2, ocamlformat-lib.0.26.2  (cached)
-> retrieved ocp-indent.1.8.1  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved opam-file-format.2.1.6  (cached)
-> retrieved parsexp.v0.17.0  (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 ppxlib.0.33.0  (cached)
-> retrieved sedlex.3.3  (cached)
-> retrieved sexplib.v0.17.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdio.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved uuseg.16.0.0  (cached)
-> retrieved topkg.1.0.7  (cached)
-> retrieved uutf.1.0.3  (cached)
-> retrieved yojson.2.2.2  (cached)
-> retrieved uucp.16.0.0  (cached)
-> installed num.1.5-1
-> installed ocamlfind.1.9.6
-> installed base-bytes.base
-> installed ocamlbuild.0.15.0
-> installed topkg.1.0.7
-> installed uutf.1.0.3
-> installed fmt.0.9.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed dune.3.17.1
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed camlp-streams.5.0.1
-> installed cppo.1.8.0
-> installed csexp.1.5.2
-> installed cstruct.6.2.0
-> installed either.1.0.0
-> installed fix.20230505
-> installed gen.1.1
-> installed menhirCST.20240715
-> installed menhirLib.20240715
-> installed menhirSdk.20240715
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-version.3.7.2
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ocp-indent.1.8.1
-> installed opam-file-format.2.1.6
-> installed ppx_derivers.1.2.1
-> installed re.1.12.0
-> installed result.1.5
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed yojson.2.2.2
-> installed ocplib-endian.1.2
-> installed hex.1.5.0
-> installed ezjsonm.1.3.0
-> installed dune-build-info.3.17.1
-> installed alcotest.1.8.0
-> installed parsexp.v0.17.0
-> installed dune-configurator.3.17.1
-> installed sexplib.v0.17.0
-> installed lwt.5.9.0
-> installed base.v0.17.1
-> installed stdio.v0.17.0
-> installed menhir.20240715
-> installed ppxlib.0.33.0
-> installed ppx_here.v0.17.0
-> installed ppx_deriving.6.0.3
-> installed uucp.16.0.0
-> installed sedlex.3.3
-> installed uuseg.16.0.0
-> installed ocamlformat-lib.0.26.2
-> installed ocamlformat.0.26.2
-> installed js_of_ocaml-compiler.5.9.1
-> installed js_of_ocaml.5.9.1
-> installed logs.0.7.0
-> installed alcotest-lwt.1.8.0
-> installed js_of_ocaml-ppx.5.9.1
Done.


<><> ocp-indent.1.8.1 installed successfully ><><><><><><><><><><><><><><><><><>
=> This package requires additional configuration for use in editors. Install package 'user-setup', or manually:


* for Emacs, add these lines to ~/.emacs:
(add-to-list 'load-path "/home/opam/.opam/5.2/share/emacs/site-lisp")
(require 'ocp-indent)


* for Vim, add this line to ~/.vimrc:
set rtp^="/home/opam/.opam/5.2/share/ocp-indent/vim"
# To update the current shell environment, run: eval $(opam env)
2024-12-20 21:41.40 ---> saved as "81964026bbaad9947562fa81a2f415bdaf88037c53ba602ca1402d02d58dd0ee"


/src: (copy (src .) (dst /src))
2024-12-20 21:41.40 ---> saved as "27d02c2a59013707e54ba509d4e69ecd927e2e4664d415ce85638bd2c72575db"


/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
2024-12-20 21:41.40: Job failed: Failed: Build failed