Organisationsmefyltimmya566ff (feature/dune-pkg)freebsd-14.1-4.14_opam-2.3

freebsd-14.1-4.14_opam-2.3

Link Copied
Code Copied

Logs

2024-12-19 16:00.58: New job: test mefyl/timmy https://github.com/mefyl/timmy.git#refs/heads/feature/dune-pkg (a566ff2f56ac076df4fed2fae9b21ec8bc92e366) (freebsd-x86_64:freebsd-14.1-4.14_opam-2.3)
Base: freebsd-14.1-ocaml-4.14
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 freebsd-14.1-ocaml-4.14
# freebsd-14.1-4.14_opam-2.3
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/local/bin/opam-2.3 /usr/local/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.16.3 base-bigarray.base base-bytes.base base-threads.base base-unix.base camlp-streams.5.0.1 cmdliner.1.3.0 conf-bash.1 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.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.3.7.2 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.16.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_here.v0.16.0 ppxlib.0.33.0 ptime.1.2.0 re.1.12.0 result.1.5 sedlex.3.3 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 stdio.v0.16.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 16:00.58: Using cache hint "mefyl/timmy-freebsd-14.1-ocaml-4.14-freebsd-14.1-4.14_opam-2.3-840c65979222d7cfe77b9c454a8ea009"
2024-12-19 16:00.58: Using OBuilder spec:
((from freebsd-14.1-ocaml-4.14)
(comment freebsd-14.1-4.14_opam-2.3)
(user (uid 1000) (gid 1000))
(env CLICOLOR_FORCE 1)
(env OPAMCOLOR always)
(workdir /src)
(run (shell "sudo ln -f /usr/local/bin/opam-2.3 /usr/local/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.16.3 base-bigarray.base base-bytes.base base-threads.base base-unix.base camlp-streams.5.0.1 cmdliner.1.3.0 conf-bash.1 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.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.3.7.2 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.16.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_here.v0.16.0 ppxlib.0.33.0 ptime.1.2.0 re.1.12.0 result.1.5 sedlex.3.3 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 stdio.v0.16.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 16:00.58: Waiting for resource in pool OCluster
2024-12-19 16:00.58: Waiting for worker…
2024-12-19 19:31.42: Got resource from pool OCluster
Building on summer
All commits already cached
HEAD is now at a566ff2 Migrate CI to `dune pkg`.


(from freebsd-14.1-ocaml-4.14)
2024-12-19 19:29.52 ---> using "ae13298952475462d6ff8423c053aa12bd6b321268da2da393f31b39d910ae06" from cache


/: (comment freebsd-14.1-4.14_opam-2.3)


/: (user (uid 1000) (gid 1000))


/: (env CLICOLOR_FORCE 1)


/: (env OPAMCOLOR always)


/: (workdir /src)


/src: (run (shell "sudo ln -f /usr/local/bin/opam-2.3 /usr/local/bin/opam"))
2024-12-19 19:29.52 ---> using "a01a14b3afaf0e96198b4995f7495eb095c8d446bea3004be25da82cfecae768" from cache


/src: (run (shell "opam init --reinit -ni"))
No configuration file found, using built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.


This version of opam requires an update to the layout of /home/opam/.opam from version 2.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.


Continue? [y/n] y
[NOTE] The 'jobs' option was reset, its value was 1 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=1 --global
Format upgrade done.


<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2024-12-19 19:29.52 ---> using "a60b36efeb57e54e6ca4e23dae975fff8d0668822376b173ed63b66aa24444bc" from cache


/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
FreeBSD 14.1-RELEASE-p5
The OCaml toplevel, version 4.14.2
2.3.0
2024-12-19 19:29.52 ---> using "188549049d3e68e7a3a1a01e1161c07610550818a3f0b75ffbaafa2a77641d27" from cache


/src: (workdir /src)


/src: (run (shell "sudo chown opam /src"))
2024-12-19 19:29.53 ---> using "39fdaef227d4780a13f56312f6b694c46af609f82c1eca907bb338ae047f238f" 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
c31c18de15..40261e81b0  master     -> origin/master
40261e81b0 Merge pull request #27148 from mtelvers/opam-publish-ocaml-version.3.7.2


<><> 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).


The following packages are not being upgraded because the new versions conflict with other installed packages:
- ocaml.5.4.0
- ocaml-config.3
However, you may "opam upgrade" these packages explicitly, which will ask permission to downgrade or uninstall the conflicting packages.
Nothing to do.
2024-12-19 19:29.53 ---> using "a7cc929077879835bfc705d6ed420f23cf85d97a1603bd0a24dd7cedaa51e038" from cache


/src: (run (shell "mkdir -p 'opam/'"))
2024-12-19 19:29.53 ---> saved as "c5bc68cb000472ab00e0620b2f64268563c6fd0222171731b39db8e804796f66"


/src: (copy (src timmy.opam timmy-unix.opam timmy-lwt.opam timmy-jsoo.opam)
(dst ./))
2024-12-19 19:29.54 ---> saved as "fc944814fa7b2824fbb2b0e61fd838a1c88a7a481adc68008f53e0812be1038d"


/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-19 19:29.54 ---> saved as "524e1665a25a437cbd72a9757e05f9a6f9c67274b8e5510bfa386ceba96d4778"


/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-19 19:30.12 ---> saved as "9d84f86fb32f15a9511f41b7d842bab2e0c47cf233d162bd95c9c59ece6a3a93"


/src: (run (network host)
(shell  "echo '(lang dune 3.0)' > './dune-project' && \
\necho '(lang dune 3.0)' > 'opam/dune-project'"))
2024-12-19 19:30.16 ---> saved as "6220b5ada1062f8ac77f0dbf9448dff221e43a0f783601e5a7fffcaeff382f8d"


/src: (env DEPS "alcotest.1.8.0 alcotest-lwt.1.8.0 astring.0.8.5 base.v0.16.3 base-bigarray.base base-bytes.base base-threads.base base-unix.base camlp-streams.5.0.1 cmdliner.1.3.0 conf-bash.1 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.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.3.7.2 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.16.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_here.v0.16.0 ppxlib.0.33.0 ptime.1.2.0 re.1.12.0 result.1.5 sedlex.3.3 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 stdio.v0.16.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"))
[WARNING] Unknown update command for bsd, skipping system update


<><> 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 2).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).
[NOTE] Package ocaml is already installed (current version is 4.14.2).
[NOTE] Package 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-bigarray is already installed (current version is base).


The following system packages will first need to be installed:
npm


<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>


+ /usr/local/bin/sudo "pkg" "install" "-y" "npm"
- Updating FreeBSD repository catalogue...
- [summer] Fetching data.pkg: ..
- ........ done
- Processing entries: .
- .
- ..
- ..
- .
- ..
- . done
- FreeBSD repository update completed. 35568 packages processed.
- All repositories are up to date.
- The following 8 package(s) will be affected (of 0 checked):
- 
- New packages to be INSTALLED:
- 	brotli: 1.1.0,1
- 	c-ares: 1.33.1
- 	ca_root_nss: 3.104
- 	icu: 74.2_1,1
- 	libuv: 1.49.0
- 	node20: 20.17.0
- 	npm: 10.8.3
- 	npm-node20: 10.8.3
- 
- Number of packages to be installed: 8
- 
- The process will require 109 MiB more space.
- 26 MiB to be downloaded.
- [summer] [1/8] Fetching c-ares-1.33.1.pkg: ......... done
- [summer] [2/8] Fetching npm-node20-10.8.3.pkg: .....
- ..... done
- [summer] [3/8] Fetching icu-74.2_1,1.pkg: .
- ...
- ....
- .. done
- [summer] [4/8] Fetching libuv-1.49.0.pkg: ........
- . done
- [summer] [5/8] Fetching npm-10.8.3.pkg: . done
- [summer] [6/8] Fetching brotli-1.1.0,1.pkg: .......... done
- [summer] [7/8] Fetching ca_root_nss-3.104.pkg: .......... done
- [summer] [8/8] Fetching node20-20.17.0.pkg:
- .
- ...
- ...
- ... done
- Checking integrity...
-  done (0 conflicting)
- [summer] [1/8] Installing c-ares-1.33.1...
- [summer] [1/8] Extracting c-ares-1.33.1: .......... done
- [summer] [2/8] Installing icu-74.2_1,1...
- [summer] [2/8] Extracting icu-74.2_1,1: .......... done
- [summer] [3/8] Installing libuv-1.49.0...
- [summer] [3/8] Extracting libuv-1.49.0: .......... done
- [summer] [4/8] Installing brotli-1.1.0,1...
- [summer] [4/8] Extracting brotli-1.1.0,1: .......... done
- [summer] [5/8] Installing ca_root_nss-3.104...
- [summer] [5/8] Extracting ca_root_nss-3.104: ....... done
- Scanning /usr/share/certs/untrusted for certificates...
- Scanning /usr/share/certs/trusted for certificates...
- Scanning /usr/local/share/certs for certificates...
- [summer] [6/8] Installing node20-20.17.0...
- [summer] [6/8] Extracting node20-20.17.0: .......... done
- [summer] [7/8] Installing npm-node20-10.8.3...
- [summer] [7/8] Extracting npm-node20-10.8.3: .......... done
- [summer] [8/8] Installing npm-10.8.3...
- [summer] [8/8] Extracting npm-10.8.3: ... done
- =====
- Message from ca_root_nss-3.104:
- 
- --
- FreeBSD does not, and can not warrant that the certification authorities
- whose certificates are included in this package have in any way been
- audited for trustworthiness or RFC 3647 compliance.
- 
- Assessment and verification of trust is the complete responsibility of
- the system administrator.
- 
- This package installs symlinks to support root certificate discovery
- for software that either uses other cryptographic libraries than
- OpenSSL, or use OpenSSL but do not follow recommended practice.
- 
- If you prefer to do this manually, replace the following symlinks with
- either an empty file or your site-local certificate bundle.
- 
-   * /etc/ssl/cert.pem
-   * /usr/local/etc/ssl/cert.pem
-   * /usr/local/openssl/cert.pem
- =====
- Message from node20-20.17.0:
- 
- --
- Note: If you need npm (Node Package Manager), please install www/npm.
2024-12-19 19:32.05 ---> saved as "52dba75edec50657724f95a7b7fbee434aac18b29a794fc296f9dcacfb4c8501"


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 2).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).
[NOTE] Package ocaml is already installed (current version is 4.14.2).
[NOTE] Package 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-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 63 packages
 alcotest             1.8.0
 alcotest-lwt         1.8.0
 astring              0.8.5
 base                 v0.16.3
 base-bytes           base
 camlp-streams        5.0.1
 cmdliner             1.3.0
 conf-bash            1
 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
 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-compiler-libs  v0.12.4
 ocaml-syntax-shims   1.0.0
 ocaml-version        3.7.2
 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.16.0
 ppx_derivers         1.2.1
 ppx_deriving         6.0.3
 ppx_here             v0.16.0
 ppxlib               0.33.0
 ptime                1.2.0
 re                   1.12.0
 result               1.5
 sedlex               3.3
 seq                  base
 sexplib              v0.16.0
 sexplib0             v0.16.0
 stdio                v0.16.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


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


* for Vim, add this line to ~/.vimrc:
set rtp^="/home/opam/.opam/4.14.2/share/ocp-indent/vim"
2024-12-19 19:40.10 ---> saved as "9008b12506f63021a57eadf8cc4d95a8f1211fc1db395ec1d9416fd283975853"


/src: (copy (src .) (dst /src))
2024-12-19 19:40.20 ---> saved as "ee2beb0fa33437454edc2131191961de7dda7d26330bc93799a352b2067ee839"


/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
jail: /usr/bin/su -l opam -c cd '/src' && env OCAMLCI='true' CI='true' DEPS='alcotest.1.8.0 alcotest-lwt.1.8.0 astring.0.8.5 base.v0.16.3 base-bigarray.base base-bytes.base base-threads.base base-unix.base camlp-streams.5.0.1 cmdliner.1.3.0 conf-bash.1 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.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.3.7.2 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.16.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_here.v0.16.0 ppxlib.0.33.0 ptime.1.2.0 re.1.12.0 result.1.5 sedlex.3.3 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 stdio.v0.16.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' OPAMCOLOR='always' CLICOLOR_FORCE='1' '/usr/bin/env' 'bash' '-c' 'opam exec -- dune build @install @check @runtest && rm -rf _build': failed
"jail" "-c" "name=obuilder_23283_10253" "mount.devfs" "path=/obuilder/result/68654c63d876e763b32e56afc39752ee0b46a21f7cb9384e36a58647a1c5d71f/rootfs" "vnet" "exec.start=/sbin/ifconfig lo0 127.0.0.1/8" "command=/usr/bin/su" "-l" "opam" "-c" "cd '/src' && env OCAMLCI='true' CI='true' DEPS='alcotest.1.8.0 alcotest-lwt.1.8.0 astring.0.8.5 base.v0.16.3 base-bigarray.base base-bytes.base base-threads.base base-unix.base camlp-streams.5.0.1 cmdliner.1.3.0 conf-bash.1 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.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.3.7.2 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.16.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_here.v0.16.0 ppxlib.0.33.0 ptime.1.2.0 re.1.12.0 result.1.5 sedlex.3.3 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 stdio.v0.16.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' OPAMCOLOR='always' CLICOLOR_FORCE='1' '/usr/bin/env' 'bash' '-c' 'opam exec -- dune build @install @check @runtest && rm -rf _build'" failed with exit status 1
2024-12-19 19:51.35: Job failed: Failed: Build failed