- github
- ocaml
- opam-repository
- 7ed2f1
- extras,arm64-ocaml-4.14,lwt_ppx.5.8.1,tests
(not at the head of any monitored branch or PR)
2025-02-10 15:06.54: New job: test lwt_ppx.5.8.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/27204/head (7ed2f1c01e376051eb0d1865dbb9ee4b512da765)
on debian-12-ocaml-4.14/arm64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/27204/head" && git reset --hard 7ed2f1c0
git fetch origin master
git merge --no-edit 36f4d2d5ceb882a79fd7d7f956b490201da67226
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:af2727a315ab9e97898cdc1b54ff44becf539430254b316edcb86725c04b6fca
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
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 lwt_ppx.5.8.1 5.8.1
RUN opam reinstall lwt_ppx.5.8.1; \
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" != 'lwt_ppx.5.8.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test lwt_ppx.5.8.1) || true
RUN opam reinstall --with-test --verbose lwt_ppx.5.8.1; \
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" != 'lwt_ppx.5.8.1' && 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 .
2025-02-10 15:06.54: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:af2727a315ab9e97898cdc1b54ff44becf539430254b316edcb86725c04b6fca-lwt_ppx.5.8.1-7ed2f1c01e376051eb0d1865dbb9ee4b512da765"
2025-02-10 15:06.54: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:af2727a315ab9e97898cdc1b54ff44becf539430254b316edcb86725c04b6fca)
(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 "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(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 lwt_ppx.5.8.1 5.8.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt_ppx.5.8.1;\
\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\" != 'lwt_ppx.5.8.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test lwt_ppx.5.8.1) || true"))
(run (shell "opam reinstall --with-test --verbose lwt_ppx.5.8.1;\
\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\" != 'lwt_ppx.5.8.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-02-10 15:06.54: Waiting for resource in pool OCluster
2025-02-10 15:59.36: Waiting for worker…
2025-02-10 16:38.55: Got resource from pool OCluster
Building on okypous.caelum.ci.dev
All commits already cached
Updating files: 75% (17594/23305)
Updating files: 76% (17712/23305)
Updating files: 77% (17945/23305)
Updating files: 78% (18178/23305)
Updating files: 79% (18411/23305)
Updating files: 80% (18644/23305)
Updating files: 81% (18878/23305)
Updating files: 82% (19111/23305)
Updating files: 83% (19344/23305)
Updating files: 84% (19577/23305)
Updating files: 85% (19810/23305)
Updating files: 86% (20043/23305)
Updating files: 87% (20276/23305)
Updating files: 88% (20509/23305)
Updating files: 89% (20742/23305)
Updating files: 90% (20975/23305)
Updating files: 91% (21208/23305)
Updating files: 92% (21441/23305)
Updating files: 93% (21674/23305)
Updating files: 94% (21907/23305)
Updating files: 95% (22140/23305)
Updating files: 96% (22373/23305)
Updating files: 97% (22606/23305)
Updating files: 98% (22839/23305)
Updating files: 99% (23072/23305)
Updating files: 100% (23305/23305)
Updating files: 100% (23305/23305), done.
HEAD is now at 36f4d2d5ce Merge pull request #27169 from Frigory33/release-allegro5-0.1
Merge made by the 'ort' strategy.
packages/lwt/lwt.5.8.1/opam | 63 +++++++++++++++++++++++++++++++++++++
packages/lwt_ppx/lwt_ppx.5.8.1/opam | 41 ++++++++++++++++++++++++
2 files changed, 104 insertions(+)
create mode 100644 packages/lwt/lwt.5.8.1/opam
create mode 100644 packages/lwt_ppx/lwt_ppx.5.8.1/opam
(from ocaml/opam:debian-12-ocaml-4.14@sha256:af2727a315ab9e97898cdc1b54ff44becf539430254b316edcb86725c04b6fca)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:af2727a315ab9e97898cdc1b54ff44becf539430254b316edcb86725c04b6fca' locally
docker.io/ocaml/opam@sha256:af2727a315ab9e97898cdc1b54ff44becf539430254b316edcb86725c04b6fca: Pulling from ocaml/opam
Digest: sha256:af2727a315ab9e97898cdc1b54ff44becf539430254b316edcb86725c04b6fca
Status: Downloaded newer image for ocaml/opam@sha256:af2727a315ab9e97898cdc1b54ff44becf539430254b316edcb86725c04b6fca
2025-02-10 16:38.57 ---> using "fceec9f057b90ade0742c3abdd7b8ac7f04160bb837e176314efdf37952d9fb2" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-02-10 16:38.57 ---> using "92d27f3781c3acf57e7c49fc316dd5d353ef2ad9129f0b61efd39fd35626ed81" 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.
This development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
[opam-repository-archive] no changes from git+https://github.com/ocaml/opam-repository-archive
2025-02-10 16:38.57 ---> using "52c33f81377f1530cf7f0b7d8250e6c03ded77af26f5269367815c834c6c60d6" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.4.0~alpha1~dev (747e73667ad9d054b0f736be205c0013e1bec087)
# self-upgrade no
# system arch=arm64 os=linux os-distribution=debian os-version=12
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 79
# repositories 1 (local), 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2025-02-10 16:38.57 ---> using "00f13d539170fc9e88871175fad7e28cd9dce68a3591e4befd02f00e4ad62caf" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/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/"))
2025-02-10 16:38.57 ---> using "ba09bba3ef3fca2ed1f777e686282ea902c7254500ae627db831ae7de8ec7d18" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-02-10 16:38.59 ---> using "99e9500eea00e695a8b75a113675ff5f752bffa008804b0fde6691fee183e6df" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-02-10 16:38.59 ---> using "e9f7c6a1b27b05205f39ccafb04d22cc2a72003bae7bd42d425b4f06dae42a24" 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 arm64 Packages [240 kB]
- Fetched 343 kB in 0s (849 kB/s)
- Reading package lists...
-
2025-02-10 16:38.59 ---> using "b4c13258644d2feeea37f104ffe3eff0ea2c25ded85a531bf4a6fc02b9b5f9a6" from cache
/home/opam: (run (shell "opam pin add -k version -yn lwt_ppx.5.8.1 5.8.1"))
lwt_ppx is now pinned to version 5.8.1
2025-02-10 16:38.59 ---> saved as "c424e755216b63a68900fbb4912f9d9ca407d82da181a156989f5bcd4dbbe9ec"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt_ppx.5.8.1;\
\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\" != 'lwt_ppx.5.8.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lwt_ppx.5.8.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
- install base-bytes base [required by ocplib-endian]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.17.2 [required by lwt_ppx]
- install dune-configurator 3.17.2 [required by lwt]
- install lwt 5.9.0 [required by lwt_ppx]
- install lwt_ppx 5.8.1 (pinned)
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocamlfind 1.9.8 [required by base-bytes]
- install ocplib-endian 1.2 [required by lwt]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.35.0 [required by lwt_ppx]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.17.2, dune-configurator.3.17.2 (cached)
-> retrieved lwt.5.9.0 (cached)
-> retrieved lwt_ppx.5.8.1 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.17.2
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed sexplib0.v0.17.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.17.2
-> installed lwt.5.9.0
-> installed ppxlib.0.35.0
-> installed lwt_ppx.5.8.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-10 16:39.51 ---> saved as "a68cffd97a057dac25c87f757a41ff313ac3baea731d55cb146e465fae133d6c"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test lwt_ppx.5.8.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile lwt_ppx 5.8.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[ERROR] The compilation of lwt_ppx.5.8.1 failed at "dune build -p lwt_ppx -j 79 @install @runtest".
#=== ERROR while compiling lwt_ppx.5.8.1 ======================================#
# context 2.4.0~alpha1~dev | linux/arm64 | ocaml-base-compiler.4.14.2 | pinned(https://github.com/ocsigen/lwt/archive/refs/tags/5.8.1.tar.gz)
# path ~/.opam/4.14/.opam-switch/build/lwt_ppx.5.8.1
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p lwt_ppx -j 79 @install @runtest
# exit-code 1
# env-file ~/.opam/log/lwt_ppx-7-0e7ac8.env
# output-file ~/.opam/log/lwt_ppx-7-0e7ac8.out
### output ###
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -22 -g -bin-annot -I test/ppx/.main.eobjs/byte -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I test/.lwttester.objs/byte -no-alias-deps -o test/ppx/.main.eobjs/byte/dune__exe__Main.cmo -c -impl test/ppx/main.pp.ml)
# File "test/ppx/main.ml", line 9, characters 0-46:
# 9 | let%lwt structure_let_result = Lwt.return_true
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
# Warning 22 [preprocessor]: let%lwt should not be used at the module item level.
# Replace let%lwt x = e by let x = Lwt_main.run (e)
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -22 -g -I test/ppx/.main.eobjs/byte -I test/ppx/.main.eobjs/native -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I test/.lwttester.objs/byte -I test/.lwttester.objs/native -intf-suffix .ml -no-alias-deps -o test/ppx/.main.eobjs/native/dune__exe__Main.cmx -c -impl test/ppx/main.pp.ml)
# File "test/ppx/main.ml", line 9, characters 0-46:
# 9 | let%lwt structure_let_result = Lwt.return_true
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
# Warning 22 [preprocessor]: let%lwt should not be used at the module item level.
# Replace let%lwt x = e by let x = Lwt_main.run (e)
# (cd _build/default/test/ppx && ./main.exe)
# Testing library 'ppx'...
# ................
# Ok. 16 tests ran, 0 tests skipped in 1.20 seconds
# File "test/unix/dune", line 22, characters 7-11:
# 22 | (name main)
# ^^^^
# (cd _build/default/test/unix && ./main.exe)
# Testing library 'unix'...
# .....................................SSSSS..................................................................................................E............SSSSE..................................................................................
# Test 'bytes read' in suite 'lwt_bytes' raised 'Unix.Unix_error(Unix.ENOENT, "open", "bytes_io_data")'
# Test 'map_file' in suite 'lwt_bytes' raised 'Unix.Unix_error(Unix.ENOENT, "open", "bytes_io_data")'
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build lwt_ppx 5.8.1
+-
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
2025-02-10 16:40.05 ---> saved as "85ecc4931d5d77dbd7b8ae43ade42cb00aa5852aba481f1c5d328c5d23d34c34"
/home/opam: (run (shell "opam reinstall --with-test --verbose lwt_ppx.5.8.1;\
\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\" != 'lwt_ppx.5.8.1' && 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 lwt_ppx 5.8.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [lwt_ppx: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "lwt_ppx" "-j" "79" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lwt_ppx.5.8.1)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -22 -g -bin-annot -I test/ppx/.main.eobjs/byte -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I test/.lwttester.objs/byte -no-alias-deps -o test/ppx/.main.eobjs/byte/dune__exe__Main.cmo -c -impl test/ppx/main.pp.ml)
- File "test/ppx/main.ml", line 9, characters 0-46:
- 9 | let%lwt structure_let_result = Lwt.return_true
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: let%lwt should not be used at the module item level.
- Replace let%lwt x = e by let x = Lwt_main.run (e)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -22 -g -I test/ppx/.main.eobjs/byte -I test/ppx/.main.eobjs/native -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I test/.lwttester.objs/byte -I test/.lwttester.objs/native -intf-suffix .ml -no-alias-deps -o test/ppx/.main.eobjs/native/dune__exe__Main.cmx -c -impl test/ppx/main.pp.ml)
- File "test/ppx/main.ml", line 9, characters 0-46:
- 9 | let%lwt structure_let_result = Lwt.return_true
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: let%lwt should not be used at the module item level.
- Replace let%lwt x = e by let x = Lwt_main.run (e)
- (cd _build/default/test/ppx && ./main.exe)
- Testing library 'ppx'...
- ................
- Ok. 16 tests ran, 0 tests skipped in 1.20 seconds
- File "test/unix/dune", line 22, characters 7-11:
- 22 | (name main)
- ^^^^
- (cd _build/default/test/unix && ./main.exe)
- Testing library 'unix'...
- .....................................SSSSS..................................................................................................E............SSSSE..................................................................................
- Test 'bytes read' in suite 'lwt_bytes' raised 'Unix.Unix_error(Unix.ENOENT, "open", "bytes_io_data")'
- Test 'map_file' in suite 'lwt_bytes' raised 'Unix.Unix_error(Unix.ENOENT, "open", "bytes_io_data")'
[ERROR] The compilation of lwt_ppx.5.8.1 failed at "dune build -p lwt_ppx -j 79 @install @runtest".
#=== ERROR while compiling lwt_ppx.5.8.1 ======================================#
# context 2.4.0~alpha1~dev | linux/arm64 | ocaml-base-compiler.4.14.2 | pinned(https://github.com/ocsigen/lwt/archive/refs/tags/5.8.1.tar.gz)
# path ~/.opam/4.14/.opam-switch/build/lwt_ppx.5.8.1
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p lwt_ppx -j 79 @install @runtest
# exit-code 1
# env-file ~/.opam/log/lwt_ppx-7-7c687f.env
# output-file ~/.opam/log/lwt_ppx-7-7c687f.out
### output ###
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -22 -g -bin-annot -I test/ppx/.main.eobjs/byte -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I test/.lwttester.objs/byte -no-alias-deps -o test/ppx/.main.eobjs/byte/dune__exe__Main.cmo -c -impl test/ppx/main.pp.ml)
# File "test/ppx/main.ml", line 9, characters 0-46:
# 9 | let%lwt structure_let_result = Lwt.return_true
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
# Warning 22 [preprocessor]: let%lwt should not be used at the module item level.
# Replace let%lwt x = e by let x = Lwt_main.run (e)
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -22 -g -I test/ppx/.main.eobjs/byte -I test/ppx/.main.eobjs/native -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I test/.lwttester.objs/byte -I test/.lwttester.objs/native -intf-suffix .ml -no-alias-deps -o test/ppx/.main.eobjs/native/dune__exe__Main.cmx -c -impl test/ppx/main.pp.ml)
# File "test/ppx/main.ml", line 9, characters 0-46:
# 9 | let%lwt structure_let_result = Lwt.return_true
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
# Warning 22 [preprocessor]: let%lwt should not be used at the module item level.
# Replace let%lwt x = e by let x = Lwt_main.run (e)
# (cd _build/default/test/ppx && ./main.exe)
# Testing library 'ppx'...
# ................
# Ok. 16 tests ran, 0 tests skipped in 1.20 seconds
# File "test/unix/dune", line 22, characters 7-11:
# 22 | (name main)
# ^^^^
# (cd _build/default/test/unix && ./main.exe)
# Testing library 'unix'...
# .....................................SSSSS..................................................................................................E............SSSSE..................................................................................
# Test 'bytes read' in suite 'lwt_bytes' raised 'Unix.Unix_error(Unix.ENOENT, "open", "bytes_io_data")'
# Test 'map_file' in suite 'lwt_bytes' raised 'Unix.Unix_error(Unix.ENOENT, "open", "bytes_io_data")'
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build lwt_ppx 5.8.1
+-
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose lwt_ppx.5.8.1' failed.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose lwt_ppx.5.8.1;
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" != 'lwt_ppx.5.8.1' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 1
2025-02-10 16:40.27: Job failed: Failed: Build failed
2025-02-10 16:40.27: Log analysis:
2025-02-10 16:40.27: >>>
[ERROR] The compilation of lwt_ppx.5.8.1 failed at "dune build -p lwt_ppx -j 79 @install @runtest".
(score = 20)
2025-02-10 16:40.27: >>>
[ERROR] The compilation of lwt_ppx.5.8.1 failed at "dune build -p lwt_ppx -j 79 @install @runtest".
(score = 20)
2025-02-10 16:40.27: The compilation of lwt_ppx.5.8.1 failed at "dune build -p lwt_ppx -j 79 @install @runtest".