2025-07-23 08:41.35: New job: test ocaml-opam/opam-compiler https://github.com/ocaml-opam/opam-compiler.git#refs/heads/master (6efad3959bcad0aecf882a2c896d42b2946d4929) (linux-x86_64:alpine-3.21-4.14_opam-2.3)
Base: ocaml/opam:alpine-3.21-ocaml-4.14@sha256:ce7c521de2e50e6ba02ecb769afb8f518fd84aef8447affa8b443c3175d9dc33
Opam project build
To reproduce locally:
git clone --recursive "https://github.com/ocaml-opam/opam-compiler.git" -b "master" && cd "opam-compiler" && git reset --hard 6efad395
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:alpine-3.21-ocaml-4.14@sha256:ce7c521de2e50e6ba02ecb769afb8f518fd84aef8447affa8b443c3175d9dc33
# alpine-3.21-4.14_opam-2.3
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
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 64169c3d1d6774ef4ce0fcc471269bb09cd215f5 || git fetch origin master) && git reset -q --hard 64169c3d1d6774ef4ce0fcc471269bb09cd215f5 && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 opam-compiler.opam ./
RUN opam pin add -yn opam-compiler.dev './'
RUN echo '(lang dune 3.0)' > './dune-project'
ENV DEPS="alcotest.1.9.0 angstrom.0.16.1 astring.0.8.5 atd.2.16.0 atdgen.2.15.0 atdgen-runtime.2.16.0 base-bigarray.base base-threads.base base-unix.base bigstringaf.0.10.0 biniou.1.2.2 bos.0.2.1 camlp-streams.5.0.1 cmdliner.1.3.0 csexp.1.5.2 curly.0.3.0 dune.3.19.1 dune-configurator.3.19.1 easy-format.1.3.4 either.1.0.0 fmt.0.10.0 fpath.0.7.3 github-data.4.4.1 logs.0.9.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 re.1.13.2 result.1.5 rresult.0.7.0 seq.base stdlib-shims.0.3.0 stringext.1.6.0 topkg.1.0.8 uri.4.4.0 uutf.1.0.4 yojson.2.2.2"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.3 --depext-only -y opam-compiler.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-07-23 08:41.35: Using cache hint "ocaml-opam/opam-compiler-ocaml/opam:alpine-3.21-ocaml-4.14@sha256:ce7c521de2e50e6ba02ecb769afb8f518fd84aef8447affa8b443c3175d9dc33-alpine-3.21-4.14_opam-2.3-88dd4de6f89bd1dd4c496523692b6930"
2025-07-23 08:41.35: Using OBuilder spec:
((from ocaml/opam:alpine-3.21-ocaml-4.14@sha256:ce7c521de2e50e6ba02ecb769afb8f518fd84aef8447affa8b443c3175d9dc33)
(comment alpine-3.21-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/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 64169c3d1d6774ef4ce0fcc471269bb09cd215f5 || git fetch origin master) && git reset -q --hard 64169c3d1d6774ef4ce0fcc471269bb09cd215f5 && git log --no-decorate -n1 --oneline && opam update -u"))
(copy (src opam-compiler.opam) (dst ./))
(run (network host)
(shell "opam pin add -yn opam-compiler.dev './'"))
(run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
(env DEPS "alcotest.1.9.0 angstrom.0.16.1 astring.0.8.5 atd.2.16.0 atdgen.2.15.0 atdgen-runtime.2.16.0 base-bigarray.base base-threads.base base-unix.base bigstringaf.0.10.0 biniou.1.2.2 bos.0.2.1 camlp-streams.5.0.1 cmdliner.1.3.0 csexp.1.5.2 curly.0.3.0 dune.3.19.1 dune-configurator.3.19.1 easy-format.1.3.4 either.1.0.0 fmt.0.10.0 fpath.0.7.3 github-data.4.4.1 logs.0.9.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 re.1.13.2 result.1.5 rresult.0.7.0 seq.base stdlib-shims.0.3.0 stringext.1.6.0 topkg.1.0.8 uri.4.4.0 uutf.1.0.4 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 opam-compiler.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-07-23 08:41.35: Waiting for resource in pool OCluster
2025-07-23 08:41.36: Waiting for worker…
2025-07-23 08:41.36: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 6efad39 Add example for using github urls
(from ocaml/opam:alpine-3.21-ocaml-4.14@sha256:ce7c521de2e50e6ba02ecb769afb8f518fd84aef8447affa8b443c3175d9dc33)
Unable to find image 'ocaml/opam:alpine-3.21-ocaml-4.14@sha256:ce7c521de2e50e6ba02ecb769afb8f518fd84aef8447affa8b443c3175d9dc33' locally
docker.io/ocaml/opam@sha256:ce7c521de2e50e6ba02ecb769afb8f518fd84aef8447affa8b443c3175d9dc33: Pulling from ocaml/opam
f18232174bc9: Pulling fs layer
e435b1bc6765: Pulling fs layer
504218c123c0: Pulling fs layer
3d1adc3444db: Pulling fs layer
949b4e53049e: Pulling fs layer
8f30d8d0a846: Pulling fs layer
1c2148a11545: Pulling fs layer
0688ce6bab1b: Pulling fs layer
9fff074a1f8d: Pulling fs layer
2f670f1f18e5: Pulling fs layer
4327a1eff3e9: Pulling fs layer
6416d634e0f0: Pulling fs layer
226a04ebb5cc: Pulling fs layer
524ffc10718d: Pulling fs layer
edbef0ed17ce: Pulling fs layer
4f4fb700ef54: Pulling fs layer
f41102d57d16: Pulling fs layer
74c0a3cca53d: Pulling fs layer
3d1adc3444db: Waiting
20433c03b8ee: Pulling fs layer
d15cae79f6ee: Pulling fs layer
8f30d8d0a846: Waiting
c49df74bbb30: Pulling fs layer
c7e2533797d3: Pulling fs layer
4327a1eff3e9: Waiting
f7a7b488445e: Pulling fs layer
6416d634e0f0: Waiting
4100580b8204: Pulling fs layer
fbc8271f8aed: Pulling fs layer
2f3cf6786764: Pulling fs layer
eabb0eb9a599: Pulling fs layer
ed0e937dd1f9: Pulling fs layer
74233ff0361f: Pulling fs layer
e0f8996903d5: Pulling fs layer
20433c03b8ee: Waiting
2decd1769587: Pulling fs layer
e2fe16af1f37: Pulling fs layer
8596850f1643: Pulling fs layer
9b056d789ba8: Pulling fs layer
c49df74bbb30: Waiting
c1650c02722d: Pulling fs layer
5b41b547e796: Pulling fs layer
edbef0ed17ce: Waiting
ff378e7406b2: Pulling fs layer
808871be9e84: Pulling fs layer
eabb0eb9a599: Waiting
74233ff0361f: Waiting
8596850f1643: Waiting
f7a7b488445e: Waiting
ed0e937dd1f9: Waiting
e0f8996903d5: Waiting
2f3cf6786764: Waiting
ff378e7406b2: Waiting
4f4fb700ef54: Waiting
4100580b8204: Waiting
808871be9e84: Waiting
fbc8271f8aed: Waiting
2decd1769587: Waiting
74c0a3cca53d: Waiting
1c2148a11545: Waiting
e2fe16af1f37: Waiting
5b41b547e796: Waiting
c1650c02722d: Waiting
226a04ebb5cc: Waiting
9fff074a1f8d: Waiting
524ffc10718d: Waiting
e435b1bc6765: Verifying Checksum
e435b1bc6765: Download complete
f18232174bc9: Verifying Checksum
f18232174bc9: Download complete
f18232174bc9: Pull complete
e435b1bc6765: Pull complete
949b4e53049e: Verifying Checksum
949b4e53049e: Download complete
8f30d8d0a846: Verifying Checksum
8f30d8d0a846: Download complete
504218c123c0: Verifying Checksum
504218c123c0: Download complete
504218c123c0: Pull complete
0688ce6bab1b: Verifying Checksum
0688ce6bab1b: Download complete
9fff074a1f8d: Verifying Checksum
9fff074a1f8d: Download complete
3d1adc3444db: Verifying Checksum
3d1adc3444db: Download complete
4327a1eff3e9: Verifying Checksum
4327a1eff3e9: Download complete
2f670f1f18e5: Verifying Checksum
2f670f1f18e5: Download complete
6416d634e0f0: Verifying Checksum
6416d634e0f0: Download complete
226a04ebb5cc: Verifying Checksum
226a04ebb5cc: Download complete
edbef0ed17ce: Verifying Checksum
edbef0ed17ce: Download complete
1c2148a11545: Verifying Checksum
1c2148a11545: Download complete
f41102d57d16: Verifying Checksum
f41102d57d16: Download complete
4f4fb700ef54: Download complete
524ffc10718d: Verifying Checksum
524ffc10718d: Download complete
20433c03b8ee: Verifying Checksum
20433c03b8ee: Download complete
c49df74bbb30: Download complete
c7e2533797d3: Verifying Checksum
c7e2533797d3: Download complete
d15cae79f6ee: Download complete
74c0a3cca53d: Verifying Checksum
74c0a3cca53d: Download complete
f7a7b488445e: Verifying Checksum
f7a7b488445e: Download complete
fbc8271f8aed: Download complete
2f3cf6786764: Verifying Checksum
2f3cf6786764: Download complete
4100580b8204: Verifying Checksum
4100580b8204: Download complete
ed0e937dd1f9: Download complete
e0f8996903d5: Verifying Checksum
e0f8996903d5: Download complete
eabb0eb9a599: Download complete
e2fe16af1f37: Verifying Checksum
e2fe16af1f37: Download complete
3d1adc3444db: Pull complete
8596850f1643: Download complete
949b4e53049e: Pull complete
9b056d789ba8: Download complete
8f30d8d0a846: Pull complete
1c2148a11545: Pull complete
0688ce6bab1b: Pull complete
9fff074a1f8d: Pull complete
2f670f1f18e5: Pull complete
4327a1eff3e9: Pull complete
6416d634e0f0: Pull complete
226a04ebb5cc: Pull complete
524ffc10718d: Pull complete
2decd1769587: Verifying Checksum
2decd1769587: Download complete
5b41b547e796: Verifying Checksum
5b41b547e796: Download complete
edbef0ed17ce: Pull complete
4f4fb700ef54: Pull complete
ff378e7406b2: Verifying Checksum
ff378e7406b2: Download complete
f41102d57d16: Pull complete
74c0a3cca53d: Pull complete
20433c03b8ee: Pull complete
d15cae79f6ee: Pull complete
c49df74bbb30: Pull complete
c7e2533797d3: Pull complete
f7a7b488445e: Pull complete
4100580b8204: Pull complete
fbc8271f8aed: Pull complete
2f3cf6786764: Pull complete
eabb0eb9a599: Pull complete
ed0e937dd1f9: Pull complete
808871be9e84: Download complete
c1650c02722d: Verifying Checksum
c1650c02722d: Download complete
74233ff0361f: Verifying Checksum
74233ff0361f: Download complete
74233ff0361f: Pull complete
e0f8996903d5: Pull complete
2decd1769587: Pull complete
e2fe16af1f37: Pull complete
8596850f1643: Pull complete
9b056d789ba8: Pull complete
c1650c02722d: Pull complete
5b41b547e796: Pull complete
ff378e7406b2: Pull complete
808871be9e84: Pull complete
Digest: sha256:ce7c521de2e50e6ba02ecb769afb8f518fd84aef8447affa8b443c3175d9dc33
Status: Downloaded newer image for ocaml/opam@sha256:ce7c521de2e50e6ba02ecb769afb8f518fd84aef8447affa8b443c3175d9dc33
2025-07-23 08:43.05 ---> saved as "55d202f7fecfb1870e4e5ff40a2bf370c1ccb0b90b65ea9e954fa8fcf7fc2c95"
/: (comment alpine-3.21-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/bin/opam-2.3 /usr/bin/opam"))
2025-07-23 08:43.05 ---> saved as "57b9ec26c9d793b9841d4b9b0806229705a50fa368e146f4bfa780c65be697a9"
/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-07-23 08:43.27 ---> saved as "c5fb68b3751ecc9278ff2d149fb1343dcef6f7d8470fcb0193da697334885f4e"
/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-142-generic
The OCaml toplevel, version 4.14.2
2.3.0
2025-07-23 08:43.28 ---> saved as "c71ebc92fba988860b9c156257f28c79e1408d4794c998911176c5ddf483c859"
/src: (workdir /src)
/src: (run (shell "sudo chown opam /src"))
2025-07-23 08:43.28 ---> saved as "0de77c75cb625e4c58667571d1f22ce917bcfd7afcc95609af2c00442f4db95b"
/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 64169c3d1d6774ef4ce0fcc471269bb09cd215f5 || git fetch origin master) && git reset -q --hard 64169c3d1d6774ef4ce0fcc471269bb09cd215f5 && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
* branch master -> FETCH_HEAD
6dea2f9390..14fd69dba0 master -> origin/master
64169c3d1d Merge pull request #28149 from dbuenzli/b0-publish-logs.0.9.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-07-23 08:43.47 ---> saved as "5c6516233c2c9607d6700cdfb70a991e60fd51e9e973b1d688d0ccde11f6e2d9"
/src: (copy (src opam-compiler.opam) (dst ./))
2025-07-23 08:43.47 ---> saved as "3bcb40fe6752477a7107cab6d022b069b5110ed1d3180ca123ef34aa090fa63a"
/src: (run (network host)
(shell "opam pin add -yn opam-compiler.dev './'"))
[opam-compiler.dev] synchronised (file:///src)
opam-compiler is now pinned to file:///src (version dev)
2025-07-23 08:43.49 ---> saved as "3c9c000104e7972ecdd217e6b5299bdc94adaadcae4022e8162a197c2739d111"
/src: (run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
2025-07-23 08:43.49 ---> saved as "74fc593eb129a3ee8cfe005408b6c50056edf0125e713d40e3c0cbd34e89e243"
/src: (env DEPS "alcotest.1.9.0 angstrom.0.16.1 astring.0.8.5 atd.2.16.0 atdgen.2.15.0 atdgen-runtime.2.16.0 base-bigarray.base base-threads.base base-unix.base bigstringaf.0.10.0 biniou.1.2.2 bos.0.2.1 camlp-streams.5.0.1 cmdliner.1.3.0 csexp.1.5.2 curly.0.3.0 dune.3.19.1 dune-configurator.3.19.1 easy-format.1.3.4 either.1.0.0 fmt.0.10.0 fpath.0.7.3 github-data.4.4.1 logs.0.9.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 re.1.13.2 result.1.5 rresult.0.7.0 seq.base stdlib-shims.0.3.0 stringext.1.6.0 topkg.1.0.8 uri.4.4.0 uutf.1.0.4 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 opam-compiler.dev $DEPS"))
+ /usr/bin/sudo "apk" "update"
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.21/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.21/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz
- v3.21.4-12-g5f8325a8a60 [https://dl-cdn.alpinelinux.org/alpine/v3.21/main]
- v3.21.4-10-gdc5ab0099fa [https://dl-cdn.alpinelinux.org/alpine/v3.21/community]
- v3.23.0_alpha20250612-3122-g6b5cc0dc735 [https://dl-cdn.alpinelinux.org/alpine/edge/main]
- v3.23.0_alpha20250612-3125-g2f1cea6b8c0 [https://dl-cdn.alpinelinux.org/alpine/edge/community]
- v3.23.0_alpha20250612-3125-g2f1cea6b8c0 [https://dl-cdn.alpinelinux.org/alpine/edge/testing]
- OK: 59192 distinct packages available
<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[opam-compiler.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).
2025-07-23 08:43.58 ---> saved as "a9d5b92b80d884326bc9bf592825dd5e4b5ba20d262dce9ab8490159b4e09a27"
/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 39 packages
- install alcotest 1.9.0
- install angstrom 0.16.1
- install astring 0.8.5
- install atd 2.16.0
- install atdgen 2.15.0
- install atdgen-runtime 2.16.0
- install bigstringaf 0.10.0
- install biniou 1.2.2
- install bos 0.2.1
- install camlp-streams 5.0.1
- install cmdliner 1.3.0
- install csexp 1.5.2
- install curly 0.3.0
- install dune 3.19.1
- install dune-configurator 3.19.1
- install easy-format 1.3.4
- install either 1.0.0
- install fmt 0.10.0
- install fpath 0.7.3
- install github-data 4.4.1
- install logs 0.9.0
- install menhir 20240715
- install menhirCST 20240715
- install menhirLib 20240715
- install menhirSdk 20240715
- install ocaml-syntax-shims 1.0.0
- install ocaml-version 4.0.1
- install ocamlbuild 0.16.1
- install ocamlfind 1.9.8
- install re 1.13.2
- install result 1.5
- install rresult 0.7.0
- install seq base
- install stdlib-shims 0.3.0
- install stringext 1.6.0
- install topkg 1.0.8
- install uri 4.4.0
- install uutf 1.0.4
- install yojson 2.2.2
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (cached)
-> retrieved angstrom.0.16.1 (cached)
-> retrieved alcotest.1.9.0 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved biniou.1.2.2 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved curly.0.3.0 (cached)
-> retrieved atd.2.16.0, atdgen-runtime.2.16.0 (cached)
-> retrieved atdgen.2.15.0 (cached)
-> retrieved easy-format.1.3.4 (cached)
-> retrieved either.1.0.0 (cached)
-> retrieved dune.3.19.1, dune-configurator.3.19.1 (cached)
-> retrieved fmt.0.10.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved github-data.4.4.1 (cached)
-> retrieved logs.0.9.0 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocaml-version.4.0.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved re.1.13.2 (cached)
-> retrieved seq.base (cached)
-> installed cmdliner.1.3.0
-> installed seq.base
-> retrieved result.1.5 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved topkg.1.0.8 (cached)
-> retrieved uri.4.4.0 (cached)
-> retrieved yojson.2.2.2 (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.0.8
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed fmt.0.10.0
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed logs.0.9.0
-> installed bos.0.2.1
-> installed dune.3.19.1
-> installed camlp-streams.5.0.1
-> installed csexp.1.5.2
-> installed easy-format.1.3.4
-> installed either.1.0.0
-> installed menhirCST.20240715
-> installed menhirLib.20240715
-> installed menhirSdk.20240715
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-version.4.0.1
-> installed re.1.13.2
-> installed result.1.5
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed yojson.2.2.2
-> installed curly.0.3.0
-> installed biniou.1.2.2
-> installed atdgen-runtime.2.16.0
-> installed alcotest.1.9.0
-> installed dune-configurator.3.19.1
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed uri.4.4.0
-> installed menhir.20240715
-> installed atd.2.16.0
-> installed atdgen.2.15.0
-> installed github-data.4.4.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-07-23 08:44.50 ---> saved as "581eb7da2b5c4bd7d46ebc664a17af96376207993072805b6a1c2b378efcf6d0"
/src: (copy (src .) (dst /src))
2025-07-23 08:44.50 ---> saved as "5ae6766c66fa554b2ad5544af5d80b259a7fd6ee7279a2b9f170dbab23aeb260"
/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
(cd _build/default/test/unit && ./test.exe --compact)
Testing `opam-compiler'.
This run has ID `CN4O76JF'.
.........................
2025-07-23 08:44.52 ---> saved as "c3bae456b181cd73d0b7f2761fc0816990f4cbed5d7a07f49c76107e963508dd"
Job succeeded
2025-07-23 08:44.52: Job succeeded