- github
- ocaml
- opam-repository
- b8473f
- compilers,4.14,js_of_ocaml-compiler.5.8.2-floats,revdeps,tezos-plompiler.1.0.0
(not at the head of any monitored branch or PR)
2024-09-23 14:48.39: New job: test tezos-plompiler.1.0.0 with js_of_ocaml-compiler.5.8.2-floats, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/26591/head (b8473f79f5a13ca0944431816df1de99d3887e69)
on debian-12-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/26591/head" && git reset --hard b8473f79
git fetch origin master
git merge --no-edit a2d1b9539bb95e849b639d06e88de7d50397342b
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:0ab977e57ae02c0ee5777ec9cafc2248b67e1738f7df4900287f9a747486b56d
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMSOLVERTIMEOUT="1000"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn js_of_ocaml-compiler.5.8.2-floats 5.8.2-floats
RUN opam reinstall js_of_ocaml-compiler.5.8.2-floats; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'js_of_ocaml-compiler.5.8.2-floats' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam option solver=builtin-0install
RUN opam reinstall tezos-plompiler.1.0.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'tezos-plompiler.1.0.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam option solver=builtin-0install
RUN (opam reinstall --with-test tezos-plompiler.1.0.0) || true
RUN opam reinstall --with-test --verbose tezos-plompiler.1.0.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'tezos-plompiler.1.0.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2024-09-23 14:48.39: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:0ab977e57ae02c0ee5777ec9cafc2248b67e1738f7df4900287f9a747486b56d-js_of_ocaml-compiler.5.8.2-floats-tezos-plompiler.1.0.0-b8473f79f5a13ca0944431816df1de99d3887e69"
2024-09-23 14:48.39: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:0ab977e57ae02c0ee5777ec9cafc2248b67e1738f7df4900287f9a747486b56d)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMSOLVERTIMEOUT 1000)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn js_of_ocaml-compiler.5.8.2-floats 5.8.2-floats"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall js_of_ocaml-compiler.5.8.2-floats;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'js_of_ocaml-compiler.5.8.2-floats' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (shell "opam option solver=builtin-0install"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall tezos-plompiler.1.0.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'tezos-plompiler.1.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (shell "opam option solver=builtin-0install"))
(run (network host)
(shell "(opam reinstall --with-test tezos-plompiler.1.0.0) || true"))
(run (shell "opam reinstall --with-test --verbose tezos-plompiler.1.0.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'tezos-plompiler.1.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2024-09-23 14:48.39: Waiting for resource in pool OCluster
2024-09-23 15:22.59: Waiting for worker…
2024-09-23 15:42.58: Got resource from pool OCluster
Building on x86-bm-c8.sw.ocaml.org
All commits already cached
Updating files: 49% (15962/32292)
Updating files: 50% (16146/32292)
Updating files: 51% (16469/32292)
Updating files: 52% (16792/32292)
Updating files: 53% (17115/32292)
Updating files: 54% (17438/32292)
Updating files: 55% (17761/32292)
Updating files: 56% (18084/32292)
Updating files: 57% (18407/32292)
Updating files: 58% (18730/32292)
Updating files: 59% (19053/32292)
Updating files: 60% (19376/32292)
Updating files: 61% (19699/32292)
Updating files: 62% (20022/32292)
Updating files: 63% (20344/32292)
Updating files: 64% (20667/32292)
Updating files: 65% (20990/32292)
Updating files: 66% (21313/32292)
Updating files: 67% (21636/32292)
Updating files: 68% (21959/32292)
Updating files: 69% (22282/32292)
Updating files: 70% (22605/32292)
Updating files: 71% (22928/32292)
Updating files: 72% (23251/32292)
Updating files: 73% (23574/32292)
Updating files: 74% (23897/32292)
Updating files: 75% (24219/32292)
Updating files: 76% (24542/32292)
Updating files: 77% (24865/32292)
Updating files: 78% (25188/32292)
Updating files: 79% (25511/32292)
Updating files: 80% (25834/32292)
Updating files: 81% (26157/32292)
Updating files: 82% (26480/32292)
Updating files: 83% (26803/32292)
Updating files: 84% (27126/32292)
Updating files: 85% (27449/32292)
Updating files: 86% (27772/32292)
Updating files: 87% (28095/32292)
Updating files: 88% (28417/32292)
Updating files: 89% (28740/32292)
Updating files: 90% (29063/32292)
Updating files: 91% (29386/32292)
Updating files: 92% (29709/32292)
Updating files: 93% (30032/32292)
Updating files: 94% (30355/32292)
Updating files: 95% (30678/32292)
Updating files: 96% (31001/32292)
Updating files: 97% (31324/32292)
Updating files: 98% (31647/32292)
Updating files: 99% (31970/32292)
Updating files: 100% (32292/32292)
Updating files: 100% (32292/32292), done.
HEAD is now at a2d1b9539b Merge pull request #26601 from Khady/release-ppx_deriving_jsonschema-0.0.1
Merge made by the 'ort' strategy.
packages/async_js/async_js.v0.17.0/opam | 4 +-
packages/bonsai/bonsai.v0.17.0/opam | 4 +-
packages/incr_dom/incr_dom.v0.17.0/opam | 12 +++--
.../incr_dom_interactive.v0.17.0/opam | 4 +-
.../incr_dom_partial_render.v0.17.0/opam | 4 +-
.../incr_dom_sexp_form.v0.17.0/opam | 4 +-
.../js_of_ocaml-compiler.5.8.2-floats/opam | 55 ++++++++++++++++++++++
.../js_of_ocaml-lwt.5.8.2-floats/opam | 48 +++++++++++++++++++
.../js_of_ocaml-ppx.5.8.2-floats/opam | 45 ++++++++++++++++++
.../opam | 45 ++++++++++++++++++
.../js_of_ocaml-toplevel.5.8.2-floats/opam | 48 +++++++++++++++++++
.../js_of_ocaml-tyxml.5.8.2-floats/opam | 49 +++++++++++++++++++
packages/js_of_ocaml/js_of_ocaml.5.8.2-floats/opam | 55 ++++++++++++++++++++++
.../js_of_ocaml_patches.v0.17.0/opam | 12 +++--
packages/ppx_css/ppx_css.v0.17.0/opam | 4 +-
packages/virtual_dom/virtual_dom.v0.17.0/opam | 4 +-
.../virtual_dom_toplayer.v0.17.0/opam | 4 +-
17 files changed, 377 insertions(+), 24 deletions(-)
create mode 100644 packages/js_of_ocaml-compiler/js_of_ocaml-compiler.5.8.2-floats/opam
create mode 100644 packages/js_of_ocaml-lwt/js_of_ocaml-lwt.5.8.2-floats/opam
create mode 100644 packages/js_of_ocaml-ppx/js_of_ocaml-ppx.5.8.2-floats/opam
create mode 100644 packages/js_of_ocaml-ppx_deriving_json/js_of_ocaml-ppx_deriving_json.5.8.2-floats/opam
create mode 100644 packages/js_of_ocaml-toplevel/js_of_ocaml-toplevel.5.8.2-floats/opam
create mode 100644 packages/js_of_ocaml-tyxml/js_of_ocaml-tyxml.5.8.2-floats/opam
create mode 100644 packages/js_of_ocaml/js_of_ocaml.5.8.2-floats/opam
(from ocaml/opam:debian-12-ocaml-4.14@sha256:0ab977e57ae02c0ee5777ec9cafc2248b67e1738f7df4900287f9a747486b56d)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:0ab977e57ae02c0ee5777ec9cafc2248b67e1738f7df4900287f9a747486b56d' locally
docker.io/ocaml/opam@sha256:0ab977e57ae02c0ee5777ec9cafc2248b67e1738f7df4900287f9a747486b56d: Pulling from ocaml/opam
735a12d46973: Pulling fs layer
735a12d46973: Verifying Checksum
735a12d46973: Download complete
735a12d46973: Pull complete
Digest: sha256:0ab977e57ae02c0ee5777ec9cafc2248b67e1738f7df4900287f9a747486b56d
Status: Downloaded newer image for ocaml/opam@sha256:0ab977e57ae02c0ee5777ec9cafc2248b67e1738f7df4900287f9a747486b56d
2024-09-23 15:43.05 ---> using "f9c253801ff5d6df73bd1ddcbb0b3e55b4534f024a99a5a6423832af8003d367" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2024-09-23 15:43.05 ---> using "84f36d729b1e503f17c8e52651898a0b010aa6b10822d54474551b9de1646ba6" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
Continue? [y/n] y
This development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
[NOTE] The 'jobs' option was reset, its value was 39 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=39 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2024-09-23 15:43.05 ---> using "4ce9636016b2ccf25955bc411f7e9b5c4f1848023125e86484a3939462f5f130" from cache
/home/opam: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-121-generic
The OCaml toplevel, version 4.14.2
2.3.0~alpha~dev
2024-09-23 15:43.05 ---> using "3174b7ba85ed388b914f81c1e32e0f842965c3505cedda27e4369f4432496ec7" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMSOLVERTIMEOUT 1000)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2024-09-23 15:43.05 ---> using "8fb8abd66bcf65c91b2266f07e9b39030791d1568e58503c0ffcaf9c5e9219f6" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2024-09-23 15:43.08 ---> using "824a4e5d420fa0c44cf5dd1413c86af6a1be25ad19e9a3cfe96ed612d1440c10" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2024-09-23 15:43.08 ---> using "6dbc7e216e1f7333953e1de2c17f88c03f96740be862b1e7380cac027d100673" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [182 kB]
- Fetched 286 kB in 0s (1082 kB/s)
- Reading package lists...
-
2024-09-23 15:43.08 ---> using "304344e6d2220e7ec1ba447f0d3e789489dab6a882ba1cb403ac1a37de6ab875" from cache
/home/opam: (run (shell "opam pin add -k version -yn js_of_ocaml-compiler.5.8.2-floats 5.8.2-floats"))
js_of_ocaml-compiler is now pinned to version 5.8.2-floats
2024-09-23 15:43.08 ---> using "292d4937fee440b019c010459efb006b98ec3b6a07bd9efbc3e8bb934d9b88cd" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall js_of_ocaml-compiler.5.8.2-floats;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'js_of_ocaml-compiler.5.8.2-floats' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
js_of_ocaml-compiler.5.8.2-floats is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 16 packages
- install cmdliner 1.3.0 [required by js_of_ocaml-compiler]
- install dune 3.16.0 [required by js_of_ocaml-compiler]
- install gen 1.1 [required by sedlex]
- install js_of_ocaml-compiler 5.8.2-floats (pinned)
- install menhir 20240715 [required by js_of_ocaml-compiler]
- install menhirCST 20240715 [required by menhir]
- install menhirLib 20240715 [required by js_of_ocaml-compiler]
- install menhirSdk 20240715 [required by js_of_ocaml-compiler]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.33.0 [required by js_of_ocaml-compiler]
- install sedlex 3.2 [required by js_of_ocaml-compiler]
- install seq base [required by yojson]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install yojson 2.2.2 [required by js_of_ocaml-compiler]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved dune.3.16.0 (cached)
-> retrieved gen.1.1 (cached)
-> installed cmdliner.1.3.0
-> retrieved js_of_ocaml-compiler.5.8.2-floats (cached)
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.33.0 (cached)
-> retrieved sedlex.3.2 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved yojson.2.2.2 (cached)
-> installed dune.3.16.0
-> installed ppx_derivers.1.2.1
-> installed menhirCST.20240715
-> installed stdlib-shims.0.3.0
-> installed menhirSdk.20240715
-> installed sexplib0.v0.17.0
-> installed gen.1.1
-> installed menhirLib.20240715
-> installed ocaml-compiler-libs.v0.12.4
-> installed yojson.2.2.2
-> installed menhir.20240715
-> installed ppxlib.0.33.0
-> installed sedlex.3.2
-> installed js_of_ocaml-compiler.5.8.2-floats
Done.
# To update the current shell environment, run: eval $(opam env)
2024-09-23 15:43.08 ---> using "ca411099da1522d626bd860b3316408d04aa28064085cc27958511e96bdad51c" from cache
/home/opam: (run (shell "opam option solver=builtin-0install"))
Set to 'builtin-0install' the field solver in global configuration
2024-09-23 15:43.08 ---> using "ca569ccf8f88a1708f9b01b4ead2c45dbd3ea8402c34018da2a114ee69700a00" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall tezos-plompiler.1.0.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'tezos-plompiler.1.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
tezos-plompiler.1.0.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== recompile 1 package
- recompile js_of_ocaml-compiler 5.8.2-floats (pinned) [uses ocamlfind]
=== install 38 packages
- install alcotest 1.8.0 [required by mec]
- install astring 0.8.5 [required by alcotest]
- install base64 3.5.1 [required by repr]
- install bigarray-compat 1.1.0 [required by mec]
- install bls12-381 6.0.1 [required by tezos-plompiler]
- install bls12-381-hash 0.0.4 [required by tezos-plompiler]
- install conf-cmake 1 [required by hacl-star-raw]
- install conf-gmp 4 [required by zarith]
- install conf-pkg-config 3 [required by zarith]
- install conf-which 1 [required by hacl-star-raw]
- install cppo 1.7.0 [required by hacl-star]
- install cstruct 6.2.0 [required by hex]
- install ctypes 0.20.2 [required by hacl-star-raw]
- install either 1.0.0 [required by repr]
- install eqaf 0.10 [required by mec]
- install ff 0.6.2 [required by mec]
- install ff-sig 0.6.2 [required by mec, bls12-381, polynomial]
- install fmt 0.9.0 [required by ppx_repr]
- install hacl-star 0.7.1 [required by tezos-plompiler]
- install hacl-star-raw 0.7.1 [required by hacl-star]
- install hex 1.5.0 [required by tezos-plompiler]
- install integers 0.7.0 [required by bls12-381]
- install jsonm 1.0.2 [required by repr]
- install mec 0.1.0 [required by tezos-plompiler]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocamlbuild 0.15.0 [required by uutf, astring, jsonm]
- install ocamlfind 1.9.6 [required by hacl-star-raw, ppx_deriving]
- install optint 0.3.0 [required by repr]
- install polynomial 0.4.0 [required by tezos-plompiler]
- install ppx_deriving 6.0.2 [required by ppx_repr]
- install ppx_repr 0.7.0 [required by tezos-plompiler]
- install re 1.12.0 [required by alcotest]
- install repr 0.7.0 [required by ppx_repr]
- install stdint 0.7.2 [required by tezos-plompiler]
- install tezos-plompiler 1.0.0
- install topkg 1.0.7 [required by uutf, astring, jsonm]
- install uutf 1.0.3 [required by alcotest, repr]
- install zarith 1.14 [required by mec, bls12-381, hacl-star, polynomial]
The following system packages will first need to be installed:
cmake libgmp-dev pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get 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 "apt-get" "install" "-qq" "-yy" "cmake" "libgmp-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libicu72:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 18745 files and directories currently installed.)
- Preparing to unpack .../00-libicu72_72.1-3_amd64.deb ...
- Unpacking libicu72:amd64 (72.1-3) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../01-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb ...
- Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ...
- Selecting previously unselected package libarchive13:amd64.
- Preparing to unpack .../02-libarchive13_3.6.2-1+deb12u1_amd64.deb ...
- Unpacking libarchive13:amd64 (3.6.2-1+deb12u1) ...
- Selecting previously unselected package libjsoncpp25:amd64.
- Preparing to unpack .../03-libjsoncpp25_1.9.5-4_amd64.deb ...
- Unpacking libjsoncpp25:amd64 (1.9.5-4) ...
- Selecting previously unselected package librhash0:amd64.
- Preparing to unpack .../04-librhash0_1.4.3-3_amd64.deb ...
- Unpacking librhash0:amd64 (1.4.3-3) ...
- Selecting previously unselected package libuv1:amd64.
- Preparing to unpack .../05-libuv1_1.44.2-1+deb12u1_amd64.deb ...
- Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ...
- Selecting previously unselected package cmake-data.
- Preparing to unpack .../06-cmake-data_3.25.1-1_all.deb ...
- Unpacking cmake-data (3.25.1-1) ...
- Selecting previously unselected package cmake.
- Preparing to unpack .../07-cmake_3.25.1-1_amd64.deb ...
- Unpacking cmake (3.25.1-1) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../08-libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../09-libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../10-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../11-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../12-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../13-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Setting up libicu72:amd64 (72.1-3) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up libuv1:amd64 (1.44.2-1+deb12u1) ...
- Setting up libjsoncpp25:amd64 (1.9.5-4) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up librhash0:amd64 (1.4.3-3) ...
- Setting up cmake-data (3.25.1-1) ...
- Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up libarchive13:amd64 (3.6.2-1+deb12u1) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Setting up cmake (3.25.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u8) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.8.0 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved base64.3.5.1 (cached)
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved bls12-381.6.0.1 (cached)
-> retrieved bls12-381-hash.0.0.4 (https://gitlab.com/nomadic-labs/cryptography/ocaml-bls12-381-hash/-/archive/0.0.4/ocaml-bls12-381-hash-0.0.4.tar.bz2)
-> retrieved conf-cmake.1 (cached)
-> retrieved conf-gmp.4 (cached)
-> installed bigarray-compat.1.1.0
-> retrieved cppo.1.7.0 (cached)
-> installed conf-cmake.1
-> installed conf-pkg-config.3
-> installed conf-which.1
-> installed conf-gmp.4
-> retrieved cstruct.6.2.0 (cached)
-> retrieved ctypes.0.20.2 (cached)
-> installed base64.3.5.1
-> retrieved either.1.0.0 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved ff.0.6.2, ff-sig.0.6.2 (cached)
-> retrieved fmt.0.9.0 (cached)
-> retrieved hacl-star.0.7.1, hacl-star-raw.0.7.1 (cached)
-> installed either.1.0.0
-> retrieved hex.1.5.0 (cached)
-> retrieved integers.0.7.0 (cached)
-> installed eqaf.0.10
-> retrieved js_of_ocaml-compiler.5.8.2-floats (cached)
-> installed cppo.1.7.0
-> installed integers.0.7.0
-> retrieved jsonm.1.0.2 (cached)
-> retrieved mec.0.1.0 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlbuild.0.15.0 (cached)
-> retrieved ocamlfind.1.9.6 (cached)
-> retrieved optint.0.3.0 (cached)
-> retrieved polynomial.0.4.0 (cached)
-> retrieved ppx_deriving.6.0.2 (cached)
-> retrieved ppx_repr.0.7.0, repr.0.7.0 (cached)
-> retrieved re.1.12.0 (cached)
-> retrieved stdint.0.7.2 (cached)
-> installed optint.0.3.0
-> retrieved tezos-plompiler.1.0.0 (https://gitlab.com/nomadic-labs/cryptography/privacy-team/-/archive/v1.0.0/privacy-team-v1.0.0.tar.gz)
-> retrieved topkg.1.0.7 (cached)
-> retrieved uutf.1.0.3 (cached)
-> retrieved zarith.1.14 (cached)
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.12.0
-> installed stdint.0.7.2
-> removed js_of_ocaml-compiler.5.8.2-floats
-> installed ocamlfind.1.9.6
-> installed ocamlbuild.0.15.0
-> installed ppx_deriving.6.0.2
-> installed zarith.1.14
-> installed ff-sig.0.6.2
-> installed ff.0.6.2
-> installed polynomial.0.4.0
-> installed topkg.1.0.7
-> installed uutf.1.0.3
-> installed fmt.0.9.0
-> installed astring.0.8.5
-> installed cstruct.6.2.0
-> installed hex.1.5.0
-> installed jsonm.1.0.2
-> installed alcotest.1.8.0
-> installed repr.0.7.0
-> installed mec.0.1.0
-> installed bls12-381.6.0.1
-> installed ppx_repr.0.7.0
-> installed bls12-381-hash.0.0.4
-> installed js_of_ocaml-compiler.5.8.2-floats
-> installed ctypes.0.20.2
-> installed hacl-star-raw.0.7.1
-> installed hacl-star.0.7.1
-> installed tezos-plompiler.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2024-09-23 15:47.39 ---> saved as "9b57e2eabcc492fe3141b7857f52df647812ae0d8c782c2ad07f8f5d5111a6fa"
/home/opam: (run (shell "opam option solver=builtin-0install"))
No modification in global configuration
2024-09-23 15:47.39 ---> saved as "5d2b218b09a3613e7b031dd542b17e76e786aa09494e1c96bc56b903a88d3d09"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test tezos-plompiler.1.0.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile tezos-plompiler 1.0.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved tezos-plompiler.1.0.0 (https://gitlab.com/nomadic-labs/cryptography/privacy-team/-/archive/v1.0.0/privacy-team-v1.0.0.tar.gz)
-> removed tezos-plompiler.1.0.0
-> installed tezos-plompiler.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2024-09-23 15:47.50 ---> saved as "8b2c2d8bf9d71cdfe7ece0909564fabe8a2778b1849250c0285ecb8ca348686c"
/home/opam: (run (shell "opam reinstall --with-test --verbose tezos-plompiler.1.0.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'tezos-plompiler.1.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile tezos-plompiler 1.0.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [tezos-plompiler.1.0.0: extract]
-> retrieved tezos-plompiler.1.0.0 (cached)
Processing 2/4: [tezos-plompiler: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "tezos-plompiler" "-j" "31" "@install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/tezos-plompiler.1.0.0)
-> compiled tezos-plompiler.1.0.0
-> removed tezos-plompiler.1.0.0
-> installed tezos-plompiler.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2024-09-23 15:48.04 ---> saved as "18e1b8c20a67913ee1c4b0ca106b7d6f36c0c5237f95744d619ce0211eb35362"
Job succeeded
2024-09-23 15:48.13: Job succeeded