Organisationsocaml-opamopam-publish54ab6a (master)fedora-42-4.14_opam-2.3

fedora-42-4.14_opam-2.3

Link Copied
Code Copied

Logs

2025-06-12 14:13.58: New job: test ocaml-opam/opam-publish https://github.com/ocaml-opam/opam-publish.git#refs/heads/master (54ab6a82a50bd41bfb342f5b1730466277fcd7a9) (linux-x86_64:fedora-42-4.14_opam-2.3)
Base: ocaml/opam:fedora-42-ocaml-4.14@sha256:f60202529f0e671d35a9c5727247194b4e01010bab004e314476c120258a2115
Opam project build


To reproduce locally:


git clone --recursive "https://github.com/ocaml-opam/opam-publish.git" -b "master" && cd "opam-publish" && git reset --hard 54ab6a82
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-42-ocaml-4.14@sha256:f60202529f0e671d35a9c5727247194b4e01010bab004e314476c120258a2115
# fedora-42-4.14_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 a28eb8a148feb4fbc6466fa0791668993513dbde || git fetch origin master) && git reset -q --hard a28eb8a148feb4fbc6466fa0791668993513dbde && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 opam-publish.opam ./
RUN opam pin add -yn opam-publish.dev './'
RUN echo '(lang dune 3.0)' > './dune-project'
ENV DEPS="angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atd.2.16.0 atdgen.2.15.0 atdgen-runtime.2.16.0 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 bigstringaf.0.10.0 biniou.1.2.2 bos.0.2.1 ca-certs.1.0.1 camlp-streams.5.0.1 cmdliner.1.3.0 cohttp.6.1.1 cohttp-lwt.6.1.1 cohttp-lwt-unix.6.1.1 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-libssl.4 conf-pkg-config.4 cppo.1.8.0 csexp.1.5.2 digestif.1.3.0 domain-name.0.4.1 dune.3.19.1 dune-configurator.3.19.1 duration.0.2.1 easy-format.1.3.4 eqaf.0.10 fmt.0.10.0 fpath.0.7.3 github.4.4.1 github-data.4.4.1 github-unix.4.4.1 gmap.0.3.0 http.6.1.1 ipaddr.5.6.0 ipaddr-sexp.5.6.0 jsonm.1.0.2 kdf.1.0.0 logs.0.8.0 lwt.5.9.1 lwt_ssl.1.2.0 macaddr.5.6.0 magic-mime.1.3.1 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 mirage-crypto.2.0.1 mirage-crypto-ec.2.0.1 mirage-crypto-pk.2.0.1 mirage-crypto-rng.2.0.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 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocamlgraph.2.2.0 ocplib-endian.1.2 ohex.0.2.0 opam-core.2.3.0 opam-file-format.2.1.6 opam-format.2.3.0 opam-repository.2.3.0 opam-state.2.3.0 ppx_derivers.1.2.1 ppx_sexp_conv.v0.16.0 ppxlib.0.35.0 ptime.1.2.0 re.1.12.0 rresult.0.7.0 seq.base sexplib0.v0.16.0 sha.1.15.4 spdx_licenses.1.3.0 ssl.0.7.0 stdlib-shims.0.3.0 stringext.1.6.0 swhid_core.0.1 topkg.1.0.8 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.2.2.2 zarith.1.14"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.3 --depext-only -y opam-publish.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-12 14:13.58: Using cache hint "ocaml-opam/opam-publish-ocaml/opam:fedora-42-ocaml-4.14@sha256:f60202529f0e671d35a9c5727247194b4e01010bab004e314476c120258a2115-fedora-42-4.14_opam-2.3-0941e73839acf62f6c57a0519f37c138"
2025-06-12 14:13.58: Using OBuilder spec:
((from ocaml/opam:fedora-42-ocaml-4.14@sha256:f60202529f0e671d35a9c5727247194b4e01010bab004e314476c120258a2115)
(comment fedora-42-4.14_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 a28eb8a148feb4fbc6466fa0791668993513dbde || git fetch origin master) && git reset -q --hard a28eb8a148feb4fbc6466fa0791668993513dbde && git log --no-decorate -n1 --oneline && opam update -u"))
(copy (src opam-publish.opam) (dst ./))
(run (network host)
(shell "opam pin add -yn opam-publish.dev './'"))
(run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
(env DEPS "angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atd.2.16.0 atdgen.2.15.0 atdgen-runtime.2.16.0 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 bigstringaf.0.10.0 biniou.1.2.2 bos.0.2.1 ca-certs.1.0.1 camlp-streams.5.0.1 cmdliner.1.3.0 cohttp.6.1.1 cohttp-lwt.6.1.1 cohttp-lwt-unix.6.1.1 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-libssl.4 conf-pkg-config.4 cppo.1.8.0 csexp.1.5.2 digestif.1.3.0 domain-name.0.4.1 dune.3.19.1 dune-configurator.3.19.1 duration.0.2.1 easy-format.1.3.4 eqaf.0.10 fmt.0.10.0 fpath.0.7.3 github.4.4.1 github-data.4.4.1 github-unix.4.4.1 gmap.0.3.0 http.6.1.1 ipaddr.5.6.0 ipaddr-sexp.5.6.0 jsonm.1.0.2 kdf.1.0.0 logs.0.8.0 lwt.5.9.1 lwt_ssl.1.2.0 macaddr.5.6.0 magic-mime.1.3.1 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 mirage-crypto.2.0.1 mirage-crypto-ec.2.0.1 mirage-crypto-pk.2.0.1 mirage-crypto-rng.2.0.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 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocamlgraph.2.2.0 ocplib-endian.1.2 ohex.0.2.0 opam-core.2.3.0 opam-file-format.2.1.6 opam-format.2.3.0 opam-repository.2.3.0 opam-state.2.3.0 ppx_derivers.1.2.1 ppx_sexp_conv.v0.16.0 ppxlib.0.35.0 ptime.1.2.0 re.1.12.0 rresult.0.7.0 seq.base sexplib0.v0.16.0 sha.1.15.4 spdx_licenses.1.3.0 ssl.0.7.0 stdlib-shims.0.3.0 stringext.1.6.0 swhid_core.0.1 topkg.1.0.8 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.2.2.2 zarith.1.14")
(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 opam-publish.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-12 14:13.58: Waiting for resource in pool OCluster
2025-06-12 15:36.04: Waiting for worker…
2025-06-12 15:43.04: Got resource from pool OCluster
Building on phoebe
All commits already cached
HEAD is now at 54ab6a8 Release 2.5.1


(from ocaml/opam:fedora-42-ocaml-4.14@sha256:f60202529f0e671d35a9c5727247194b4e01010bab004e314476c120258a2115)
2025-06-12 15:43.06 ---> using "0c9fa00c7381c2bef022d455c458fb12e0fe005657193a245d99786f4b015275" from cache


/: (comment fedora-42-4.14_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 - x86_64 - Updates           100% |  84.0 KiB/s |  11.6 KiB |  00m00s
Fedora 42 - x86_64 - Updates           100% |   1.1 MiB/s |   2.4 MiB |  00m02s
Repositories loaded.
Package "findutils-1:4.10.0-5.fc42.x86_64" is already installed.


Nothing to do.
2025-06-12 15:43.06 ---> using "6cfcfe6cc05508147fbfd6f3d29897e43db84543975742450b9ed2a84ae04e5b" from cache


/src: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-06-12 15:43.06 ---> using "d4250e95a7518a0cde9d59ba9e92bc8197be88ddb03f210ae71d96d77204aba5" 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] Initialised
2025-06-12 15:43.06 ---> using "6d6cfc5d42fd0c8fb13bae0c6396cb55a73dbbfefd70d86b1b3a1caf86b33974" from cache


/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 6.8.0-60-generic
The OCaml toplevel, version 4.14.2
2.3.0
2025-06-12 15:43.06 ---> using "76a02d07f33025f18248e3bd4b90747c43926802c4a3a0c0a86b542f45b5717f" from cache


/src: (workdir /src)


/src: (run (shell "sudo chown opam /src"))
2025-06-12 15:43.06 ---> using "e9fcb2d10f2fa0acc84482ce54c961c88e6e4fb63e1f2cd6067abf4be444b783" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e a28eb8a148feb4fbc6466fa0791668993513dbde || git fetch origin master) && git reset -q --hard a28eb8a148feb4fbc6466fa0791668993513dbde && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
* branch                  master     -> FETCH_HEAD
bc726805e3..a28eb8a148  master     -> origin/master
a28eb8a148 Merge pull request #28017 from maiste/release-dune-3.19.1


<><> 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-12 15:43.06 ---> using "4d3164979b759bfc1b19726c22365163c6d8eacc3e0ed19fea7cd66726ee408c" from cache


/src: (copy (src opam-publish.opam) (dst ./))
2025-06-12 15:43.07 ---> saved as "99295b41a61bdaeee2f7de7ce139c08e9c27cd314462065993d0045d483c9535"


/src: (run (network host)
(shell "opam pin add -yn opam-publish.dev './'"))
[opam-publish.dev] synchronised (file:///src)
opam-publish is now pinned to file:///src (version dev)
2025-06-12 15:43.08 ---> saved as "58a47a173375ed46df35d422fdfe6a9d8fb9f59c5c9ceb8af559d87dffb21645"


/src: (run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
2025-06-12 15:43.09 ---> saved as "4ea89b847f17a05196873952d0de05d619c8776f77db083aa9e4931f25ef50de"


/src: (env DEPS "angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atd.2.16.0 atdgen.2.15.0 atdgen-runtime.2.16.0 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 bigstringaf.0.10.0 biniou.1.2.2 bos.0.2.1 ca-certs.1.0.1 camlp-streams.5.0.1 cmdliner.1.3.0 cohttp.6.1.1 cohttp-lwt.6.1.1 cohttp-lwt-unix.6.1.1 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-libssl.4 conf-pkg-config.4 cppo.1.8.0 csexp.1.5.2 digestif.1.3.0 domain-name.0.4.1 dune.3.19.1 dune-configurator.3.19.1 duration.0.2.1 easy-format.1.3.4 eqaf.0.10 fmt.0.10.0 fpath.0.7.3 github.4.4.1 github-data.4.4.1 github-unix.4.4.1 gmap.0.3.0 http.6.1.1 ipaddr.5.6.0 ipaddr-sexp.5.6.0 jsonm.1.0.2 kdf.1.0.0 logs.0.8.0 lwt.5.9.1 lwt_ssl.1.2.0 macaddr.5.6.0 magic-mime.1.3.1 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 mirage-crypto.2.0.1 mirage-crypto-ec.2.0.1 mirage-crypto-pk.2.0.1 mirage-crypto-rng.2.0.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 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocamlgraph.2.2.0 ocplib-endian.1.2 ohex.0.2.0 opam-core.2.3.0 opam-file-format.2.1.6 opam-format.2.3.0 opam-repository.2.3.0 opam-state.2.3.0 ppx_derivers.1.2.1 ppx_sexp_conv.v0.16.0 ppxlib.0.35.0 ptime.1.2.0 re.1.12.0 rresult.0.7.0 seq.base sexplib0.v0.16.0 sha.1.15.4 spdx_licenses.1.3.0 ssl.0.7.0 stdlib-shims.0.3.0 stringext.1.6.0 swhid_core.0.1 topkg.1.0.8 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.2.2.2 zarith.1.14")


/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 opam-publish.dev $DEPS"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
- Repositories loaded.
- Metadata cache created.


<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[opam-publish.dev] synchronised (file:///src)


[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 2).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).
[NOTE] Package ocaml is already installed (current version is 4.14.2).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).


The following system packages will first need to be installed:
gmp-devel openssl-devel


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


+ /usr/sbin/sudo "yum" "install" "-y" "gmp-devel" "openssl-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package        Arch   Version        Repository      Size
- Installing:
-  gmp-devel     x86_64 1:6.3.0-4.fc42 fedora     352.3 KiB
-  openssl-devel x86_64 1:3.2.4-3.fc42 fedora       4.3 MiB
- Installing dependencies:
-  gmp-c++       x86_64 1:6.3.0-4.fc42 fedora      27.6 KiB
- 
- Transaction Summary:
-  Installing:         3 packages
- 
- Total size of inbound packages is 3 MiB. Need to download 3 MiB.
- After this operation, 5 MiB extra will be used (install 5 MiB, remove 0 B).
- [1/3] gmp-c++-1:6.3.0-4.fc42.x86_64     100% |  84.8 KiB/s |  18.5 KiB |  00m00s
- [2/3] gmp-devel-1:6.3.0-4.fc42.x86_64   100% | 481.8 KiB/s | 174.4 KiB |  00m00s
- [3/3] openssl-devel-1:3.2.4-3.fc42.x86_ 100% |   2.9 MiB/s |   2.8 MiB |  00m01s
- --------------------------------------------------------------------------------
- [3/3] Total                             100% |   2.7 MiB/s |   3.0 MiB |  00m01s
- Running transaction
- [1/5] Verify package files              100% |  50.0   B/s |   3.0   B |  00m00s
- [2/5] Prepare transaction               100% |  20.0   B/s |   3.0   B |  00m00s
- [3/5] Installing gmp-c++-1:6.3.0-4.fc42 100% | 256.5 KiB/s |  28.5 KiB |  00m00s
- [4/5] Installing gmp-devel-1:6.3.0-4.fc 100% |   4.3 MiB/s | 354.1 KiB |  00m00s
- [5/5] Installing openssl-devel-1:3.2.4- 100% |  14.1 MiB/s |   5.2 MiB |  00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "gmp-devel" "openssl-devel"
- gmp-devel-6.3.0-4.fc42.x86_64
- openssl-devel-3.2.4-3.fc42.x86_64
2025-06-12 15:44.09 ---> saved as "398d512ba47837e7ec544f349f559ac7cc0e8229c787cdcb6ae183aae2dcd74c"


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 2).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).
[NOTE] Package ocaml is already installed (current version is 4.14.2).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 91 packages
- install angstrom            0.16.1
- install asn1-combinators    0.3.2
- install astring             0.8.5
- install atd                 2.16.0
- install atdgen              2.15.0
- install atdgen-runtime      2.16.0
- install base                v0.16.4
- install base-bytes          base
- install base64              3.5.1
- install bigstringaf         0.10.0
- install biniou              1.2.2
- install bos                 0.2.1
- install ca-certs            1.0.1
- install camlp-streams       5.0.1
- install cmdliner            1.3.0
- install cohttp              6.1.1
- install cohttp-lwt          6.1.1
- install cohttp-lwt-unix     6.1.1
- install conduit             8.0.0
- install conduit-lwt         8.0.0
- install conduit-lwt-unix    8.0.0
- install conf-gmp            5
- install conf-gmp-powm-sec   4
- install conf-libssl         4
- install conf-pkg-config     4
- install cppo                1.8.0
- install csexp               1.5.2
- install digestif            1.3.0
- install domain-name         0.4.1
- install dune                3.19.1
- install dune-configurator   3.19.1
- install duration            0.2.1
- install easy-format         1.3.4
- install eqaf                0.10
- install fmt                 0.10.0
- install fpath               0.7.3
- install github              4.4.1
- install github-data         4.4.1
- install github-unix         4.4.1
- install gmap                0.3.0
- install http                6.1.1
- install ipaddr              5.6.0
- install ipaddr-sexp         5.6.0
- install jsonm               1.0.2
- install kdf                 1.0.0
- install logs                0.8.0
- install lwt                 5.9.1
- install lwt_ssl             1.2.0
- install macaddr             5.6.0
- install magic-mime          1.3.1
- install menhir              20240715
- install menhirCST           20240715
- install menhirLib           20240715
- install menhirSdk           20240715
- install mirage-crypto       2.0.1
- install mirage-crypto-ec    2.0.1
- install mirage-crypto-pk    2.0.1
- install mirage-crypto-rng   2.0.1
- install ocaml-compiler-libs v0.12.4
- install ocaml-syntax-shims  1.0.0
- install ocamlbuild          0.16.1
- install ocamlfind           1.9.8
- install ocamlgraph          2.2.0
- install ocplib-endian       1.2
- install ohex                0.2.0
- install opam-core           2.3.0
- install opam-file-format    2.1.6
- install opam-format         2.3.0
- install opam-repository     2.3.0
- install opam-state          2.3.0
- install ppx_derivers        1.2.1
- install ppx_sexp_conv       v0.16.0
- install ppxlib              0.35.0
- install ptime               1.2.0
- install re                  1.12.0
- install rresult             0.7.0
- install seq                 base
- install sexplib0            v0.16.0
- install sha                 1.15.4
- install spdx_licenses       1.3.0
- install ssl                 0.7.0
- install stdlib-shims        0.3.0
- install stringext           1.6.0
- install swhid_core          0.1
- install topkg               1.0.8
- install uri                 4.4.0
- install uri-sexp            4.4.0
- install uutf                1.0.4
- install x509                1.0.6
- install yojson              2.2.2
- install zarith              1.14


<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved asn1-combinators.0.3.2  (cached)
-> retrieved angstrom.0.16.1  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.16.4  (cached)
-> retrieved atd.2.16.0, atdgen-runtime.2.16.0  (cached)
-> retrieved atdgen.2.15.0  (cached)
-> retrieved base64.3.5.1  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved biniou.1.2.2  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved ca-certs.1.0.1  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> retrieved conf-libssl.4  (cached)
-> retrieved cohttp.6.1.1, cohttp-lwt.6.1.1, cohttp-lwt-unix.6.1.1, http.6.1.1  (cached)
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2  (cached)
-> retrieved domain-name.0.4.1  (cached)
-> installed conf-gmp-powm-sec.4
-> installed conf-libssl.4
-> retrieved duration.0.2.1  (cached)
-> retrieved easy-format.1.3.4  (cached)
-> retrieved eqaf.0.10  (cached)
-> retrieved fmt.0.10.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved digestif.1.3.0  (cached)
-> retrieved github.4.4.1, github-data.4.4.1, github-unix.4.4.1  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved ipaddr.5.6.0, ipaddr-sexp.5.6.0, macaddr.5.6.0  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved kdf.1.0.0  (cached)
-> retrieved logs.0.8.0  (cached)
-> retrieved lwt_ssl.1.2.0  (cached)
-> retrieved magic-mime.1.3.1  (cached)
-> retrieved lwt.5.9.1  (cached)
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715  (cached)
-> retrieved mirage-crypto.2.0.1, mirage-crypto-ec.2.0.1, mirage-crypto-pk.2.0.1, mirage-crypto-rng.2.0.1  (cached)
-> retrieved dune.3.19.1, dune-configurator.3.19.1  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocamlgraph.2.2.0  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved ohex.0.2.0  (cached)
-> retrieved opam-file-format.2.1.6  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> retrieved opam-core.2.3.0, opam-format.2.3.0, opam-repository.2.3.0, opam-state.2.3.0  (cached)
-> installed cmdliner.1.3.0
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved re.1.12.0  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved sha.1.15.4  (cached)
-> retrieved spdx_licenses.1.3.0  (cached)
-> retrieved ssl.0.7.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved swhid_core.0.1  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved topkg.1.0.8  (cached)
-> retrieved x509.1.0.6  (cached)
-> retrieved yojson.2.2.2  (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.0.8
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed fmt.0.10.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed dune.3.19.1
-> installed camlp-streams.5.0.1
-> installed csexp.1.5.2
-> installed asn1-combinators.0.3.2
-> installed base64.3.5.1
-> installed cppo.1.8.0
-> installed domain-name.0.4.1
-> installed duration.0.2.1
-> installed easy-format.1.3.4
-> installed eqaf.0.10
-> installed gmap.0.3.0
-> installed http.6.1.1
-> installed macaddr.5.6.0
-> installed magic-mime.1.3.1
-> installed menhirCST.20240715
-> installed menhirLib.20240715
-> installed menhirSdk.20240715
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed ohex.0.2.0
-> installed opam-file-format.2.1.6
-> installed ppx_derivers.1.2.1
-> installed re.1.12.0
-> installed sexplib0.v0.16.0
-> installed spdx_licenses.1.3.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed swhid_core.0.1
-> installed yojson.2.2.2
-> installed ocplib-endian.1.2
-> installed biniou.1.2.2
-> installed ipaddr.5.6.0
-> installed digestif.1.3.0
-> installed atdgen-runtime.2.16.0
-> installed sha.1.15.4
-> installed ocamlgraph.2.2.0
-> installed dune-configurator.3.19.1
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed mirage-crypto.2.0.1
-> installed kdf.1.0.0
-> installed ssl.0.7.0
-> installed uri.4.4.0
-> installed lwt.5.9.1
-> installed opam-core.2.3.0
-> installed lwt_ssl.1.2.0
-> installed base.v0.16.4
-> installed logs.0.8.0
-> installed mirage-crypto-rng.2.0.1
-> installed mirage-crypto-pk.2.0.1
-> installed opam-format.2.3.0
-> installed bos.0.2.1
-> installed ppxlib.0.35.0
-> installed mirage-crypto-ec.2.0.1
-> installed x509.1.0.6
-> installed opam-repository.2.3.0
-> installed ca-certs.1.0.1
-> installed menhir.20240715
-> installed ppx_sexp_conv.v0.16.0
-> installed ipaddr-sexp.5.6.0
-> installed uri-sexp.4.4.0
-> installed atd.2.16.0
-> installed conduit.8.0.0
-> installed atdgen.2.15.0
-> installed cohttp.6.1.1
-> installed opam-state.2.3.0
-> installed conduit-lwt.8.0.0
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt.6.1.1
-> installed github-data.4.4.1
-> installed github.4.4.1
-> installed cohttp-lwt-unix.6.1.1
-> installed github-unix.4.4.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-12 15:50.23 ---> saved as "76e25d3b3cf1505984f797474e992ed89a0f78b69a83e8d40864ce93505abf96"


/src: (copy (src .) (dst /src))
2025-06-12 15:50.24 ---> saved as "6b5257344a0c5f1529ea7929bc6b389e3b701c2f9486be9dc073cfbe8901c8a5"


/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
2025-06-12 15:50.28 ---> saved as "99e94ac97cb66e6db63bf73ef9f1398aabb4a036b10c97f196b8463a8764e35a"
Job succeeded
2025-06-12 15:50.28: Job succeeded