- github
- ocaml
- opam-repository
- dd5533
- compilers,4.14,dune.3.20.0~alpha2,revdeps,pds.5.38
(not at the head of any monitored branch or PR)
2025-08-05 14:01.49: New job: test pds.5.38 with dune.3.20.0~alpha2, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/28298/head (dd5533520fdcb5364efecb41d297e786ddcc1f76)
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/28298/head" && git reset --hard dd553352
git fetch origin master
git merge --no-edit 39155538b0d7654773a68bd42b0b7dbb8eb14ad7
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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 dune.3.20.0~alpha2 3.20.0~alpha2
RUN opam reinstall dune.3.20.0~alpha2; \
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" != 'dune.3.20.0~alpha2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall pds.5.38; \
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" != 'pds.5.38' && 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 pds.5.38) || true
RUN opam reinstall --with-test --verbose pds.5.38; \
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" != 'pds.5.38' && 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-08-05 14:01.49: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63-dune.3.20.0~alpha2-pds.5.38-dd5533520fdcb5364efecb41d297e786ddcc1f76"
2025-08-05 14:01.49: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.3 /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 dune.3.20.0~alpha2 3.20.0~alpha2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.20.0~alpha2;\
\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\" != 'dune.3.20.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall pds.5.38;\
\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\" != 'pds.5.38' && 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 pds.5.38) || true"))
(run (shell "opam reinstall --with-test --verbose pds.5.38;\
\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\" != 'pds.5.38' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-08-05 14:01.49: Waiting for resource in pool OCluster
2025-08-05 21:25.02: Waiting for worker…
2025-08-05 21:26.16: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files: 89% (16023/17995)
Updating files: 90% (16196/17995)
Updating files: 91% (16376/17995)
Updating files: 92% (16556/17995)
Updating files: 93% (16736/17995)
Updating files: 94% (16916/17995)
Updating files: 95% (17096/17995)
Updating files: 96% (17276/17995)
Updating files: 97% (17456/17995)
Updating files: 98% (17636/17995)
Updating files: 99% (17816/17995)
Updating files: 100% (17995/17995)
Updating files: 100% (17995/17995), done.
HEAD is now at 39155538b0 Merge pull request #28292 from gildor478/release-ocamlmod-v0.1.1
Updating 39155538b0..dd5533520f
Fast-forward
.../chrome-trace/chrome-trace.3.20.0~alpha2/opam | 41 ++++++++++++
.../dune-action-plugin.3.20.0~alpha2/opam | 54 ++++++++++++++++
.../dune-build-info.3.20.0~alpha2/opam | 47 ++++++++++++++
.../dune-configurator.3.20.0~alpha2/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.20.0~alpha2/opam | 44 +++++++++++++
.../dune-private-libs.3.20.0~alpha2/opam | 52 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha2/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.20.0~alpha2/opam | 45 +++++++++++++
packages/dune-site/dune-site.3.20.0~alpha2/opam | 39 ++++++++++++
packages/dune/dune.3.20.0~alpha2/opam | 74 ++++++++++++++++++++++
packages/dyn/dyn.3.20.0~alpha2/opam | 42 ++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha2/opam | 45 +++++++++++++
packages/ordering/ordering.3.20.0~alpha2/opam | 40 ++++++++++++
packages/stdune/stdune.3.20.0~alpha2/opam | 46 ++++++++++++++
packages/xdg/xdg.3.20.0~alpha2/opam | 41 ++++++++++++
15 files changed, 704 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.20.0~alpha2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.20.0~alpha2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.20.0~alpha2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.20.0~alpha2/opam
create mode 100644 packages/dune-glob/dune-glob.3.20.0~alpha2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.20.0~alpha2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.20.0~alpha2/opam
create mode 100644 packages/dune-site/dune-site.3.20.0~alpha2/opam
create mode 100644 packages/dune/dune.3.20.0~alpha2/opam
create mode 100644 packages/dyn/dyn.3.20.0~alpha2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha2/opam
create mode 100644 packages/ordering/ordering.3.20.0~alpha2/opam
create mode 100644 packages/stdune/stdune.3.20.0~alpha2/opam
create mode 100644 packages/xdg/xdg.3.20.0~alpha2/opam
(from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63' locally
docker.io/ocaml/opam@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63: Pulling from ocaml/opam
a77c4f4a24ac: Already exists
9d1a03aa3c71: Pulling fs layer
baba434270f2: Pulling fs layer
2a8a0f93626e: Pulling fs layer
f6ba2ed01176: Pulling fs layer
f6ba2ed01176: Waiting
baba434270f2: Verifying Checksum
baba434270f2: Download complete
2a8a0f93626e: Download complete
f6ba2ed01176: Verifying Checksum
f6ba2ed01176: Download complete
9d1a03aa3c71: Verifying Checksum
9d1a03aa3c71: Download complete
9d1a03aa3c71: Pull complete
baba434270f2: Pull complete
2a8a0f93626e: Pull complete
f6ba2ed01176: Pull complete
Digest: sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
Status: Downloaded newer image for ocaml/opam@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
2025-08-05 21:26.48 ---> using "7f53aba96fd697ea92c7c7d3f6be48133fa7f3f6538a693606c4cbcecd7917b8" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-08-05 21:26.48 ---> using "e4ec4ab2139d3c4a94c2b5470fe84288e4986c518ff4f4ae2d7c7e30aeac0731" 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] Initialised
2025-08-05 21:26.48 ---> using "707659fd6393183061072104f3ce800d69d94ba93e0f39ab380130268d0ee81e" 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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade no
# system arch=x86_64 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 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-08-05 21:26.48 ---> using "3ec3067d40f73cc0ec4554b242939c55b0261973e091b54a647662451dc49933" 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-08-05 21:26.48 ---> using "376e3b49c8c08cb1ff0d45feb403c06e037d8df5800c560fdd8dd472f1e36b9a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-08-05 21:26.50 ---> using "d7c14fc292f88db48f1d08b5e5bee64699faa33d6c6497ea4d0ded851936243b" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-08-05 21:26.50 ---> using "4d064c1160c8dcca737cd7528eeaed565bdc230fcc7555f114d63e3df515c34a" 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 bookworm-updates/main amd64 Packages.diff/Index [19.6 kB]
- Ign:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [6916 B]
- Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [272 kB]
- Fetched 402 kB in 1s (728 kB/s)
- Reading package lists...
-
2025-08-05 21:26.50 ---> using "f43accf761343248e80f7b61b22936d9bfc3109749567c716c34e25a997df933" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.20.0~alpha2 3.20.0~alpha2"))
dune is now pinned to version 3.20.0~alpha2
2025-08-05 21:26.50 ---> using "6638f587e9f000750e3e69596c6135f07b9c36d4a2f3df033c7caac1be116f53" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.20.0~alpha2;\
\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\" != 'dune.3.20.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.20.0~alpha2 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.20.0~alpha2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.0~alpha2 (cached)
-> installed dune.3.20.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 21:26.50 ---> using "cdd243173bfeebba71c044bc8b6d060c2b698788bb7464614ff31bbb47a8931d" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall pds.5.38;\
\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\" != 'pds.5.38' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
pds.5.38 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 28 packages
- install base-bytes base [required by process]
- install cmdliner 1.3.0 [required by pds]
- install containers 3.16 [required by pds]
- install cppo 1.8.0 [required by ppx_deriving]
- install crunch 4.0.0 [required by pds]
- install csexp 1.5.2 [required by dune-configurator]
- install dune-configurator 3.20.0~alpha2 [required by containers]
- install either 1.0.0 [required by containers]
- install gen 1.1 [required by sedlex]
- install ISO8601 0.2.6 [required by toml]
- install menhir 20211128 [required by toml]
- install menhirLib 20211128 [required by menhir]
- install menhirSdk 20211128 [required by menhir]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocamlbuild 0.16.1 [required by process]
- install ocamlfind 1.9.8 [required by pds]
- install pds 5.38
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.1.1 [required by pds]
- install ppxlib 0.36.0 [required by ppx_deriving, sedlex]
- install process 0.2.1 [required by pds]
- install ptime 1.2.0 [required by crunch]
- install sedlex 3.6 [required by pds]
- install seq base [required by gen]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install toml 5.0.0 [required by pds]
- install topkg 1.1.0 [required by ptime]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved containers.3.16 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved crunch.4.0.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.20.0~alpha2 (cached)
-> installed cppo.1.8.0
-> retrieved either.1.0.0 (cached)
-> retrieved gen.1.1 (cached)
-> retrieved ISO8601.0.2.6 (cached)
-> retrieved menhir.20211128, menhirLib.20211128, menhirSdk.20211128 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> installed cmdliner.1.3.0
-> installed either.1.0.0
-> installed ISO8601.0.2.6
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved pds.5.38 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.1.1 (cached)
-> installed ppx_derivers.1.2.1
-> installed menhirSdk.20211128
-> retrieved ppxlib.0.36.0 (cached)
-> retrieved process.0.2.1 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved sedlex.3.6 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved toml.5.0.0 (cached)
-> retrieved topkg.1.1.0 (cached)
-> installed menhirLib.20211128
-> installed stdlib-shims.0.3.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed sexplib0.v0.17.0
-> installed dune-configurator.3.20.0~alpha2
-> installed gen.1.1
-> installed containers.3.16
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed process.0.2.1
-> installed topkg.1.1.0
-> installed menhir.20211128
-> installed toml.5.0.0
-> installed ptime.1.2.0
-> installed crunch.4.0.0
-> installed ppxlib.0.36.0
-> installed ppx_deriving.6.1.1
-> installed sedlex.3.6
-> installed pds.5.38
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 21:27.50 ---> saved as "1b5639538d2484e92845aca0e0ca2344eba93ad897148a9489deaac41b121ee6"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test pds.5.38) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile pds 5.38
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved pds.5.38 (https://opam.ocaml.org/cache)
-> removed pds.5.38
-> installed pds.5.38
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 21:28.06 ---> saved as "779f7ae034948402ff29060525b720145eb56ef2b32d94064f08fda4d71079c5"
/home/opam: (run (shell "opam reinstall --with-test --verbose pds.5.38;\
\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\" != 'pds.5.38' && 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 pds 5.38
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [pds.5.38: extract]
-> retrieved pds.5.38 (cached)
Processing 2/4: [pds: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "-j71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38)
- make \
- OCAMLPATH=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release: \
- BUILD_DIR=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds_template \
- -C build/release/pds_template
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds_template'
- make \
- OCAMLPATH=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release: \
- BUILD_DIR=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/snabela \
- -C build/release/snabela
- ocaml-crunch -m plain ../../../files > ../../../src/pds_template/pds_template.ml
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/snabela'
- cd ../../../src/pds_template && \
- ocamlfind ocamldep \
- pds_template.ml > /home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds_template/.d
- cd ../../../src/snabela && \
- ocamlfind ocamldep -package sedlex \
- snabela.ml snabela_lexer.ml snabela.mli > /home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/snabela/.d
- ocamlfind ocamlopt -thread -I +camlp4 -bin-annot -w '@f@p@u@s@40' -c ../../../src/pds_template/pds_template.ml -o pds_template.cmx
- ocamlfind ocamlopt -thread -I +camlp4 -package sedlex -bin-annot -w '@f@p@u@s@40' -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx -c ../../../src/snabela/snabela_lexer.ml -o snabela_lexer.cmx
- ocamlfind ocamlopt -bin-annot -w '@f@p@u@s@40' -thread -a -I +camlp4 -o pds_template.cmxa \
- pds_template.cmx
- ocamlfind ocamlc -thread -I +camlp4 -bin-annot -w '@f@p@u@s@40' -c ../../../src/pds_template/pds_template.ml -o pds_template.cmo
- ocamlfind ocamlc -bin-annot -w '@f@p@u@s@40' -custom -thread -a -I +camlp4 -o pds_template.cma \
- pds_template.cmo
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds_template'
- ocamlfind ocamlc -thread -I +camlp4 -package sedlex -bin-annot -w '@f@p@u@s@40' -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx -c ../../../src/snabela/snabela_lexer.ml -o snabela_lexer.cmo
- ocamlfind ocamlc -thread -I +camlp4 -package sedlex -bin-annot -w '@f@p@u@s@40' -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx -c ../../../src/snabela/snabela.mli -o snabela.cmi
- ocamlfind ocamlopt -thread -I +camlp4 -package sedlex -bin-annot -w '@f@p@u@s@40' -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx -c ../../../src/snabela/snabela.ml -o snabela.cmx
- ocamlfind ocamlopt -package sedlex -bin-annot -w '@f@p@u@s@40' -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx -thread -a -I +camlp4 -o snabela.cmxa \
- snabela_lexer.cmx snabela.cmx
- ocamlfind ocamlc -thread -I +camlp4 -package sedlex -bin-annot -w '@f@p@u@s@40' -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx -c ../../../src/snabela/snabela.ml -o snabela.cmo
- ocamlfind ocamlc -package sedlex -bin-annot -w '@f@p@u@s@40' -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx -custom -thread -a -I +camlp4 -o snabela.cma \
- snabela_lexer.cmo snabela.cmo
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/snabela'
- make \
- OCAMLPATH=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release: \
- BUILD_DIR=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds \
- -C build/release/pds
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds'
- cd ../../../src/pds && \
- ocamlfind ocamldep \
- pds.ml > /home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds/.d
- ocamlfind ocamlopt -thread -I +camlp4 -bin-annot -w '@f@p@u@s@40' -g -package cmdliner,containers,pds_template,process,snabela,toml -c ../../../src/pds/pds.ml -o pds.cmx
- File "../../../src/pds/pds.ml", line 119, characters 7-20:
- 119 | |> CCOpt.get_exn
- ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "../../../src/pds/pds.ml", line 119, characters 7-20:
- 119 | |> CCOpt.get_exn
- ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "../../../src/pds/pds.ml", line 316, characters 8-16:
- 316 | List.map (Filename.concat path) targets)
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 362, characters 35-46:
- 362 | let ml_files = File_set.of_list (List.filter (endswith ".ml") src_files) in
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 363, characters 36-47:
- 363 | let mli_files = File_set.of_list (List.filter (endswith ".mli") src_files) in
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 384, characters 4-12:
- 384 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 389, characters 4-12:
- 389 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 394, characters 4-12:
- 394 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 399, characters 4-12:
- 399 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 428, characters 4-12:
- 428 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 527, characters 4-12:
- 527 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 532, characters 4-12:
- 532 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 537, characters 4-12:
- 537 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 542, characters 4-12:
- 542 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 584, characters 9-17:
- 584 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 606, characters 9-17:
- 606 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 623, characters 2-10:
- 623 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 773, characters 62-66:
- 773 | Cmdliner.Term.((const generate_makefiles $ Cmdline.format), info "pds" ~doc)
- ^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "../../../src/pds/pds.ml", line 776, characters 8-26:
- 776 | match Cmdliner.Term.eval cmd with
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval
- Use Cmd.v and one of Cmd.eval* instead.
- ocamlfind ocamlopt -bin-annot -w '@f@p@u@s@40' -g -package cmdliner,containers,pds_template,process,snabela,toml -thread -linkpkg -I +camlp4 -o pds.native \
- pds.cmx
- ocamlfind ocamlc -thread -I +camlp4 -bin-annot -w '@f@p@u@s@40' -g -package cmdliner,containers,pds_template,process,snabela,toml -c ../../../src/pds/pds.ml -o pds.cmo
- File "../../../src/pds/pds.ml", line 119, characters 7-20:
- 119 | |> CCOpt.get_exn
- ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "../../../src/pds/pds.ml", line 119, characters 7-20:
- 119 | |> CCOpt.get_exn
- ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "../../../src/pds/pds.ml", line 316, characters 8-16:
- 316 | List.map (Filename.concat path) targets)
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 362, characters 35-46:
- 362 | let ml_files = File_set.of_list (List.filter (endswith ".ml") src_files) in
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 363, characters 36-47:
- 363 | let mli_files = File_set.of_list (List.filter (endswith ".mli") src_files) in
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 384, characters 4-12:
- 384 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 389, characters 4-12:
- 389 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 394, characters 4-12:
- 394 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 399, characters 4-12:
- 399 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 428, characters 4-12:
- 428 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 527, characters 4-12:
- 527 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 532, characters 4-12:
- 532 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 537, characters 4-12:
- 537 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 542, characters 4-12:
- 542 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 584, characters 9-17:
- 584 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 606, characters 9-17:
- 606 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 623, characters 2-10:
- 623 | List.map
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this function.
- File "../../../src/pds/pds.ml", line 773, characters 62-66:
- 773 | Cmdliner.Term.((const generate_makefiles $ Cmdline.format), info "pds" ~doc)
- ^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "../../../src/pds/pds.ml", line 776, characters 8-26:
- 776 | match Cmdliner.Term.eval cmd with
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval
- Use Cmd.v and one of Cmd.eval* instead.
- ocamlfind ocamlc -bin-annot -w '@f@p@u@s@40' -g -package cmdliner,containers,pds_template,process,snabela,toml -custom -thread -linkpkg -I +camlp4 -o pds.byte \
- pds.cmo
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds'
Processing 2/4: [pds: make test]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "-j71" "test" (CWD=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38)
- make \
- OCAMLPATH=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release: \
- BUILD_DIR=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds_template \
- -C build/release/pds_template
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds_template'
- make \
- OCAMLPATH=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release: \
- BUILD_DIR=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/snabela \
- -C build/release/snabela
- make[1]: Nothing to be done for 'all'.
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds_template'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/snabela'
- make[1]: Nothing to be done for 'all'.
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/snabela'
- make \
- OCAMLPATH=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release: \
- BUILD_DIR=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds \
- -C build/release/pds
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds'
- make[1]: Nothing to be done for 'all'.
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds'
- cd smoke-tests && env MAKE=make ./test
- Testing globals-formatted
- Passed globals-formatted
- Testing simple-formatted
- Passed simple-formatted
- Testing simple-output
- Passed simple-output
- Testing simple-selector-both-formatted
- Passed simple-selector-both-formatted
- Testing simple-selector-build-formatted
- Passed simple-selector-build-formatted
- Testing simple-selector-default-compile-formatted
- Passed simple-selector-default-compile-formatted
- Testing simple-selector-default-formatted
- Passed simple-selector-default-formatted
- Testing simple-selector-do-not-build-default-formatted
- Passed simple-selector-do-not-build-default-formatted
- Testing simple-selector-do-not-build-formatted
- Passed simple-selector-do-not-build-formatted
- Testing simple-selector-found-compile-formatted
- Passed simple-selector-found-compile-formatted
- Testing simple-selector-found-formatted
- Passed simple-selector-found-formatted
- Testing simple-selector-not-found-formatted
- Passed simple-selector-not-found-formatted
- Testing simple-selector-tests-do-not-build-formatted
- Passed simple-selector-tests-do-not-build-formatted
- Testing simple-selector-tests-formatted
- Passed simple-selector-tests-formatted
- Testing tests
- Passed tests
-> compiled pds.5.38
-> removed pds.5.38
Processing 4/4: [pds: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "PREFIX=/home/opam/.opam/4.14" "install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38)
- make \
- OCAMLPATH=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release: \
- BUILD_DIR=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds_template \
- -C build/release/pds_template
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds_template'
- make[1]: Nothing to be done for 'all'.
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds_template'
- make \
- OCAMLPATH=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release: \
- BUILD_DIR=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/snabela \
- -C build/release/snabela
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/snabela'
- make[1]: Nothing to be done for 'all'.
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/snabela'
- make \
- OCAMLPATH=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release: \
- BUILD_DIR=/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds \
- -C build/release/pds
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds'
- make[1]: Nothing to be done for 'all'.
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds'
- make -C build/release/pds install
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds'
- cp -vf pds.native /home/opam/.opam/4.14/bin/pds
- 'pds.native' -> '/home/opam/.opam/4.14/bin/pds'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds'
- make -C build/release/pds_template install
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds_template'
- make[1]: Nothing to be done for 'install'.
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/pds_template'
- make -C build/release/snabela install
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/snabela'
- make[1]: Nothing to be done for 'install'.
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/pds.5.38/build/release/snabela'
-> installed pds.5.38
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 21:28.25 ---> saved as "6c800a198d6bc3673386e9a48c21faf46cf145b5474382760907cc0c3b247049"
Job succeeded
2025-08-05 21:29.15: Job succeeded