- github
- ocaml
- opam-repository
- d83f51
- distributions,fedora-43-ocaml-4.14,lwt_ppx.6.0.0,tests
(not at the head of any monitored branch or PR)
2025-12-30 10:55.33: New job: test lwt_ppx.6.0.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29147/head (d83f510fcc6a430d62200d6223dcfcc5c92c0245)
on fedora-43-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/29147/head" && git reset --hard d83f510f
git fetch origin master
git merge --no-edit c239a62d58deaede2e5dce17c2715a55397b73f2
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-43-ocaml-4.14@sha256:471b3a3578da85add672c5fd7c6c9d3aa9ce1e82b1c3a3641dc2601d545c841d
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.6.0.0 6.0.0
RUN opam reinstall lwt_ppx.6.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 "\"fedora-43\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'lwt_ppx.6.0.0' && 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.6.0.0) || true
RUN opam reinstall --with-test --verbose lwt_ppx.6.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 "\"fedora-43\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'lwt_ppx.6.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 .
2025-12-30 10:55.33: Using cache hint "ocaml/opam:fedora-43-ocaml-4.14@sha256:471b3a3578da85add672c5fd7c6c9d3aa9ce1e82b1c3a3641dc2601d545c841d-lwt_ppx.6.0.0-d83f510fcc6a430d62200d6223dcfcc5c92c0245"
2025-12-30 10:55.33: Using OBuilder spec:
((from ocaml/opam:fedora-43-ocaml-4.14@sha256:471b3a3578da85add672c5fd7c6c9d3aa9ce1e82b1c3a3641dc2601d545c841d)
(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.6.0.0 6.0.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt_ppx.6.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 \"\\\"fedora-43\\\"\"; 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.6.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 (network host)
(shell "(opam reinstall --with-test lwt_ppx.6.0.0) || true"))
(run (shell "opam reinstall --with-test --verbose lwt_ppx.6.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 \"\\\"fedora-43\\\"\"; 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.6.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"))
)
2025-12-30 10:55.33: Waiting for resource in pool OCluster
2025-12-30 10:55.35: Waiting for worker…
2025-12-30 10:58.52: Got resource from pool OCluster
Building on clete
All commits already cached
HEAD is now at c239a62d58 Merge pull request #29143 from filipeom/opam-publish-smtml.0.18.0
Updating c239a62d58..d83f510fcc
Fast-forward
packages/lwt/lwt.6.0.0/opam | 64 ++++++++++++++++++++++
packages/lwt_direct/lwt_direct.6.0.0/opam | 41 ++++++++++++++
packages/lwt_ppx/lwt_ppx.6.0.0/opam | 42 ++++++++++++++
.../lwt_runtime_events.6.0.0/opam | 39 +++++++++++++
4 files changed, 186 insertions(+)
create mode 100644 packages/lwt/lwt.6.0.0/opam
create mode 100644 packages/lwt_direct/lwt_direct.6.0.0/opam
create mode 100644 packages/lwt_ppx/lwt_ppx.6.0.0/opam
create mode 100644 packages/lwt_runtime_events/lwt_runtime_events.6.0.0/opam
(from ocaml/opam:fedora-43-ocaml-4.14@sha256:471b3a3578da85add672c5fd7c6c9d3aa9ce1e82b1c3a3641dc2601d545c841d)
Unable to find image 'ocaml/opam:fedora-43-ocaml-4.14@sha256:471b3a3578da85add672c5fd7c6c9d3aa9ce1e82b1c3a3641dc2601d545c841d' locally
docker.io/ocaml/opam@sha256:471b3a3578da85add672c5fd7c6c9d3aa9ce1e82b1c3a3641dc2601d545c841d: Pulling from ocaml/opam
1216d224fefc: Pulling fs layer
08f6b7a168c0: Pulling fs layer
5ed188bb4904: Pulling fs layer
f23351b57642: Pulling fs layer
01e02cab7b2d: Pulling fs layer
c6d47c9af730: Pulling fs layer
18509e7a37b5: Pulling fs layer
08f6b7a168c0: Waiting
0f4342aed362: Pulling fs layer
5ed188bb4904: Waiting
335b6c3d0187: Pulling fs layer
f23351b57642: Waiting
1216d224fefc: Waiting
cbd06b13879d: Pulling fs layer
c6d47c9af730: Waiting
01e02cab7b2d: Waiting
3ff93b36914f: Pulling fs layer
18509e7a37b5: Waiting
52a3227a36bf: Pulling fs layer
335b6c3d0187: Waiting
31e6d570f22b: Pulling fs layer
0f4342aed362: Waiting
2ec1ea75cd3f: Pulling fs layer
1905166d826a: Pulling fs layer
52a3227a36bf: Waiting
74a1862f145f: Pulling fs layer
31e6d570f22b: Waiting
2ec1ea75cd3f: Waiting
61f5ab3fe0dc: Pulling fs layer
1905166d826a: Waiting
3c82be68e86e: Pulling fs layer
74a1862f145f: Waiting
c6df5f609b10: Pulling fs layer
797948b45f38: Pulling fs layer
ad22a4ad0680: Pulling fs layer
c6df5f609b10: Waiting
797948b45f38: Waiting
4f4fb700ef54: Pulling fs layer
ad2cdae7377e: Pulling fs layer
e90a9b3daa0a: Pulling fs layer
98dca692a736: Pulling fs layer
ad22a4ad0680: Waiting
4f4fb700ef54: Waiting
03444bbf90a1: Pulling fs layer
42dcdab85137: Pulling fs layer
ac51d948264e: Pulling fs layer
42dcdab85137: Waiting
321c584b3ae4: Pulling fs layer
03444bbf90a1: Waiting
98dca692a736: Waiting
2f35f85c5eb7: Pulling fs layer
ac51d948264e: Waiting
99d0f07cae31: Pulling fs layer
2c7895be90d2: Pulling fs layer
2f35f85c5eb7: Waiting
5f2244121247: Pulling fs layer
99d0f07cae31: Waiting
2c7895be90d2: Waiting
8d516290c9f2: Pulling fs layer
e63d93295aab: Pulling fs layer
a6da062b6bab: Pulling fs layer
5f2244121247: Waiting
65f36f10dd87: Pulling fs layer
ed4cfc5ffea7: Pulling fs layer
e63d93295aab: Waiting
a6da062b6bab: Waiting
b469827cf174: Pulling fs layer
5355ac9477f5: Pulling fs layer
b469827cf174: Waiting
2fce8402494f: Pulling fs layer
d5a2bde022e2: Pulling fs layer
5355ac9477f5: Waiting
7f56373038e6: Pulling fs layer
d5a2bde022e2: Waiting
b25fa01f291c: Pulling fs layer
7f56373038e6: Waiting
b25fa01f291c: Waiting
1216d224fefc: Verifying Checksum
1216d224fefc: Download complete
08f6b7a168c0: Download complete
f23351b57642: Verifying Checksum
f23351b57642: Download complete
1216d224fefc: Pull complete
08f6b7a168c0: Pull complete
01e02cab7b2d: Verifying Checksum
01e02cab7b2d: Download complete
c6d47c9af730: Download complete
18509e7a37b5: Download complete
0f4342aed362: Verifying Checksum
0f4342aed362: Download complete
5ed188bb4904: Verifying Checksum
5ed188bb4904: Download complete
335b6c3d0187: Verifying Checksum
335b6c3d0187: Download complete
cbd06b13879d: Verifying Checksum
cbd06b13879d: Download complete
3ff93b36914f: Verifying Checksum
3ff93b36914f: Download complete
31e6d570f22b: Verifying Checksum
31e6d570f22b: Download complete
52a3227a36bf: Verifying Checksum
52a3227a36bf: Download complete
2ec1ea75cd3f: Download complete
1905166d826a: Download complete
74a1862f145f: Download complete
61f5ab3fe0dc: Download complete
3c82be68e86e: Verifying Checksum
3c82be68e86e: Download complete
c6df5f609b10: Download complete
797948b45f38: Verifying Checksum
797948b45f38: Download complete
ad22a4ad0680: Verifying Checksum
ad22a4ad0680: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
ad2cdae7377e: Verifying Checksum
ad2cdae7377e: Download complete
e90a9b3daa0a: Verifying Checksum
e90a9b3daa0a: Download complete
98dca692a736: Verifying Checksum
98dca692a736: Download complete
42dcdab85137: Verifying Checksum
42dcdab85137: Download complete
03444bbf90a1: Download complete
ac51d948264e: Verifying Checksum
ac51d948264e: Download complete
321c584b3ae4: Verifying Checksum
321c584b3ae4: Download complete
2f35f85c5eb7: Verifying Checksum
2f35f85c5eb7: Download complete
99d0f07cae31: Download complete
2c7895be90d2: Download complete
5f2244121247: Download complete
5ed188bb4904: Pull complete
8d516290c9f2: Download complete
a6da062b6bab: Download complete
65f36f10dd87: Verifying Checksum
65f36f10dd87: Download complete
ed4cfc5ffea7: Download complete
b469827cf174: Verifying Checksum
b469827cf174: Download complete
e63d93295aab: Verifying Checksum
e63d93295aab: Download complete
5355ac9477f5: Download complete
d5a2bde022e2: Download complete
7f56373038e6: Download complete
b25fa01f291c: Verifying Checksum
b25fa01f291c: Download complete
f23351b57642: Pull complete
01e02cab7b2d: Pull complete
c6d47c9af730: Pull complete
18509e7a37b5: Pull complete
0f4342aed362: Pull complete
335b6c3d0187: Pull complete
cbd06b13879d: Pull complete
3ff93b36914f: Pull complete
52a3227a36bf: Pull complete
31e6d570f22b: Pull complete
2ec1ea75cd3f: Pull complete
1905166d826a: Pull complete
74a1862f145f: Pull complete
61f5ab3fe0dc: Pull complete
3c82be68e86e: Pull complete
c6df5f609b10: Pull complete
797948b45f38: Pull complete
ad22a4ad0680: Pull complete
4f4fb700ef54: Pull complete
ad2cdae7377e: Pull complete
e90a9b3daa0a: Pull complete
98dca692a736: Pull complete
03444bbf90a1: Pull complete
42dcdab85137: Pull complete
ac51d948264e: Pull complete
321c584b3ae4: Pull complete
2f35f85c5eb7: Pull complete
99d0f07cae31: Pull complete
2c7895be90d2: Pull complete
5f2244121247: Pull complete
8d516290c9f2: Pull complete
2fce8402494f: Verifying Checksum
2fce8402494f: Download complete
e63d93295aab: Pull complete
a6da062b6bab: Pull complete
65f36f10dd87: Pull complete
ed4cfc5ffea7: Pull complete
b469827cf174: Pull complete
5355ac9477f5: Pull complete
2fce8402494f: Pull complete
d5a2bde022e2: Pull complete
7f56373038e6: Pull complete
b25fa01f291c: Pull complete
Digest: sha256:471b3a3578da85add672c5fd7c6c9d3aa9ce1e82b1c3a3641dc2601d545c841d
Status: Downloaded newer image for ocaml/opam@sha256:471b3a3578da85add672c5fd7c6c9d3aa9ce1e82b1c3a3641dc2601d545c841d
2025-12-30 11:04.40 ---> saved as "0058dcab3e0eff3064fc5e4e80c6d5c13b1ee8116aa6a9f8eb356a9d88c759d3"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-30 11:04.40 ---> saved as "d4d7676119172172fa0e671692960f129825be5b511d623b81b782df6e69d964"
/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 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 255 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=255 --global
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-30 11:05.07 ---> saved as "b4cc03a07d74387c78f1009e9fea1187b95308d2eae2f8307c0c0faed0955d32"
/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.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=fedora os-version=43
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 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-12-30 11:05.08 ---> saved as "d9c127b72da8e44114df93767191f8b3e57efe69daf658b2ae99274819a269a1"
/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-12-30 11:05.16 ---> saved as "36229baf08594c900144f58583ef4f9375e82f4600ce49540f508a8cf1a9adfd"
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-30 11:05.24 ---> saved as "4294daf67e4c6c44226af6bc613382c4364a1cd396fc51fa48276d4e7c068fcb"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-30 11:05.44 ---> saved as "9d2597a81afb1a3480dde68fba33531ddda37e38b6d8fb857d98424eaa90c894"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
- Fedora 43 - x86_64 - Updates 100% | 34.5 KiB/s | 7.0 KiB | 00m00s
- Repositories loaded.
- Metadata cache created.
2025-12-30 11:05.48 ---> saved as "56b03d2e8df2721b3c8ac405805f864af512d7e435128ed306c5c740e9e09a33"
/home/opam: (run (shell "opam pin add -k version -yn lwt_ppx.6.0.0 6.0.0"))
lwt_ppx is now pinned to version 6.0.0
2025-12-30 11:05.48 ---> saved as "4d3ff99c34312d2d58e77be9bf16227169375f841347fa7e7bfcdd0b54bf9a48"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt_ppx.6.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 \"\\\"fedora-43\\\"\"; 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.6.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"))
lwt_ppx.6.0.0 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.20.2 [required by lwt_ppx]
- install dune-configurator 3.20.2 [required by lwt]
- install lwt 6.0.0 [required by lwt_ppx]
- install lwt_ppx 6.0.0 (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.37.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.20.2, dune-configurator.3.20.2 (cached)
-> retrieved lwt.6.0.0, lwt_ppx.6.0.0 (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.37.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.20.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.20.2
-> installed lwt.6.0.0
-> installed ppxlib.0.37.0
-> installed lwt_ppx.6.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 11:06.40 ---> saved as "bcbfe8de1a365a3c7cf114c478bcc7ae79799fbeae0ee3dd85798fecd5450ba8"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test lwt_ppx.6.0.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile lwt_ppx 6.0.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed lwt_ppx.6.0.0
-> installed lwt_ppx.6.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 11:06.48 ---> saved as "a76ab5cb3c61887331898317bbc2322e3801072fb21663bcd68820e33cf9aceb"
/home/opam: (run (shell "opam reinstall --with-test --verbose lwt_ppx.6.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 \"\\\"fedora-43\\\"\"; 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.6.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 lwt_ppx 6.0.0 (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" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lwt_ppx.6.0.0)
- (cd _build/default/test/ppx && ./main.exe)
- Testing library 'ppx'...
- ................
- Ok. 16 tests ran, 0 tests skipped in 1.20 seconds
-> compiled lwt_ppx.6.0.0
-> removed lwt_ppx.6.0.0
-> installed lwt_ppx.6.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 11:06.56 ---> saved as "28ea0f2cd0fd951a6e78fb4a4ccf3941cfb137ce080efeb6e5eef12424fd1de1"
Job succeeded
2025-12-30 11:07.03: Job succeeded