- github
- ocaml
- opam-repository
- 1a538e
- distributions,ubuntu-22.04-ocaml-4.14,lwt_ppx.6.0.0
(not at the head of any monitored branch or PR)
2026-01-07 09:44.44: New job: build lwt_ppx.6.0.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29184/head (1a538ed11284d3a47bf9851621c653c567cbc1a3)
on ubuntu-22.04-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/29184/head" && git reset --hard 1a538ed1
git fetch origin master
git merge --no-edit 26ba45ff7b4d5c474404d370f5dab40d5aca345f
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-22.04-ocaml-4.14@sha256:f55ef3c67a149fd97d50dd712ac030c5977f42866ab3fea392561847dd0a5dfe
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 "\"ubuntu-22.04\""; 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 .
2026-01-07 09:44.44: Using cache hint "ocaml/opam:ubuntu-22.04-ocaml-4.14@sha256:f55ef3c67a149fd97d50dd712ac030c5977f42866ab3fea392561847dd0a5dfe-lwt_ppx.6.0.0-1a538ed11284d3a47bf9851621c653c567cbc1a3"
2026-01-07 09:44.44: Using OBuilder spec:
((from ocaml/opam:ubuntu-22.04-ocaml-4.14@sha256:f55ef3c67a149fd97d50dd712ac030c5977f42866ab3fea392561847dd0a5dfe)
(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 \"\\\"ubuntu-22.04\\\"\"; 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"))
)
2026-01-07 09:44.44: Waiting for resource in pool OCluster
2026-01-07 09:44.46: Waiting for worker…
2026-01-07 09:47.12: Got resource from pool OCluster
Building on eumache
All commits already cached
HEAD is now at 26ba45ff7b Merge pull request #29174 from craff/master
Merge made by the 'ort' strategy.
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 | 46 ++++++++++++++++
.../lwt_runtime_events.6.0.0/opam | 39 +++++++++++++
4 files changed, 190 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:ubuntu-22.04-ocaml-4.14@sha256:f55ef3c67a149fd97d50dd712ac030c5977f42866ab3fea392561847dd0a5dfe)
Unable to find image 'ocaml/opam:ubuntu-22.04-ocaml-4.14@sha256:f55ef3c67a149fd97d50dd712ac030c5977f42866ab3fea392561847dd0a5dfe' locally
docker.io/ocaml/opam@sha256:f55ef3c67a149fd97d50dd712ac030c5977f42866ab3fea392561847dd0a5dfe: Pulling from ocaml/opam
7e49dc6156b0: Already exists
70c078d39386: Already exists
c7ae492a9675: Already exists
eeed1399f572: Already exists
4a781a9608f7: Already exists
8b751e189f77: Already exists
f341153db97d: Already exists
0ff614da4aae: Already exists
580f5b6ae176: Already exists
78cc249a2da1: Already exists
affccddcfb47: Already exists
f8e4a1f84630: Already exists
e1a27788d674: Already exists
9f9e37f23879: Already exists
00fa1102f04e: Already exists
bd9b31fa8adf: Already exists
7011d3be5a87: Already exists
7011d3be5a87: Already exists
4f4fb700ef54: Already exists
6fee33700127: Already exists
26ab82a24231: Already exists
06b47d8cb793: Already exists
4f4fb700ef54: Already exists
02140be71cdd: Already exists
29c57aeac3e7: Already exists
6de43c68c114: Already exists
edcba8a3eaab: Already exists
745cd7b54611: Already exists
3886de7f6173: Already exists
ee4044d9be82: Already exists
c82eeb59e7c4: Already exists
db729d705fc7: Already exists
e2ececae5816: Already exists
bc2be765d5e6: Already exists
bdf0124ccb27: Already exists
6a11a5e04526: Already exists
34ee74cda59c: Already exists
b50f5063b91d: Already exists
c24fbcd32fe5: Already exists
e38b2e5e91ae: Already exists
bb2d6080af55: Already exists
736d2ed04233: Already exists
1ea0c284f943: Already exists
6f9049e8f29d: Already exists
e289adcdcc0d: Already exists
Digest: sha256:f55ef3c67a149fd97d50dd712ac030c5977f42866ab3fea392561847dd0a5dfe
Status: Downloaded newer image for ocaml/opam@sha256:f55ef3c67a149fd97d50dd712ac030c5977f42866ab3fea392561847dd0a5dfe
2026-01-07 09:47.27 ---> using "1d2d9c75b92e30ccd79ec9b1104f4a2730fce3223d4d6f89feb256fdee97bbf4" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-07 09:47.27 ---> using "40d0a7f188f8ac48520ac9979ca6f9ac4957e1d47b36d894d2a4729111f62e48" 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 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
2026-01-07 09:47.27 ---> using "cea2194bbdf5c6700a95efc0cc1f7adfc5a0d40a5391619d4067c3b8db077347" 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.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=ubuntu os-version=22.04
# 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
2026-01-07 09:47.27 ---> using "94c85e5ddf905993180f018e65ce342ccd5c7b5dc960a5e2089b6bfc238935ea" 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/"))
2026-01-07 09:47.27 ---> using "06466af98d5e3312671b43ecd5baf9efe7ab9a65485d57970cb607b5814d46b9" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-07 09:47.30 ---> saved as "6135ab4cb589a43651a8afdbc90f367dde404648e6d531b4558829d2fa3199bd"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-07 09:47.51 ---> saved as "2cd91d0e32ecc8b6922883031d7679b946554d154046523828fc5f4377716a2f"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease
- Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB]
- Get:3 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB]
- Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB]
- Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [3966 kB]
- Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1598 kB]
- Get:7 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1287 kB]
- Get:8 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [3633 kB]
- Fetched 10.9 MB in 1s (11.4 MB/s)
- Reading package lists...
-
2026-01-07 09:47.54 ---> saved as "1aefeb15276c6edb3456f81d33475d17d6cfe23091327b0ecb76a3ca9b250995"
/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
2026-01-07 09:47.56 ---> saved as "6c8bc0840d0c810538a431bebe347ec03da3e66cfbd4c2d14de1ef535037796f"
/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 \"\\\"ubuntu-22.04\\\"\"; 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 csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.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)
2026-01-07 09:48.53 ---> saved as "4649559e2aae669a9e2b9170e09e41a733722c8c65d83daa32af2b148945b8af"
Job succeeded
2026-01-07 09:48.58: Job succeeded