Build:
- 0
2025-12-10 18:41.52: New job: test atdgen.2.14.1, using opam 2.2
from https://github.com/ocaml/opam-repository.git#refs/pull/29055/head (67263d6d061b9ebee0d77d46866dd2549ecd7fe0)
on debian-13-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/29055/head" && git reset --hard 67263d6d
git fetch origin master
git merge --no-edit d02090b2e66a667263343b4cbaf6b41508406914
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.2 /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 atdgen.2.14.1 2.14.1
RUN opam reinstall atdgen.2.14.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-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'atdgen.2.14.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 atdgen.2.14.1) || true
RUN opam reinstall --with-test --verbose atdgen.2.14.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-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'atdgen.2.14.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-12-10 18:41.52: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d-atdgen.2.14.1-67263d6d061b9ebee0d77d46866dd2549ecd7fe0"
2025-12-10 18:41.52: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.2 /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 atdgen.2.14.1 2.14.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall atdgen.2.14.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-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'atdgen.2.14.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 atdgen.2.14.1) || true"))
(run (shell "opam reinstall --with-test --verbose atdgen.2.14.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-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'atdgen.2.14.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-12-10 18:41.52: Waiting for resource in pool OCluster
2025-12-10 19:35.55: Waiting for worker…
2025-12-10 19:38.15: Got resource from pool OCluster
Building on clete
All commits already cached
HEAD is now at d02090b2e6 Merge pull request #29062 from ocaml/dependabot/github_actions/actions/github-script-8
Merge made by the 'ort' strategy.
packages/atd/atd.3.0.1/opam | 124 ++++++++++++++++++++
packages/atdcpp/atdcpp.3.0.1/opam | 116 ++++++++++++++++++
packages/atdd/atdd.3.0.1/opam | 116 ++++++++++++++++++
.../atdgen-codec-runtime.3.0.1/opam | 115 ++++++++++++++++++
packages/atdgen-runtime/atdgen-runtime.3.0.1/opam | 117 +++++++++++++++++++
packages/atdgen/atdgen.1.10.0/opam | 2 +-
packages/atdgen/atdgen.1.10.2/opam | 2 +-
packages/atdgen/atdgen.1.12.0/opam | 2 +-
packages/atdgen/atdgen.1.13.0/opam | 2 +-
packages/atdgen/atdgen.1.9.1/opam | 2 +-
packages/atdgen/atdgen.2.0.0/opam | 2 +-
packages/atdgen/atdgen.2.10.0/opam | 2 +-
packages/atdgen/atdgen.2.11.0/opam | 2 +-
packages/atdgen/atdgen.2.12.0/opam | 2 +-
packages/atdgen/atdgen.2.13.0/opam | 2 +-
packages/atdgen/atdgen.2.14.0/opam | 2 +-
packages/atdgen/atdgen.2.14.1/opam | 2 +-
packages/atdgen/atdgen.2.15.0/opam | 2 +-
packages/atdgen/atdgen.2.16.0/opam | 2 +-
packages/atdgen/atdgen.2.2.1/opam | 2 +-
packages/atdgen/atdgen.2.3.3/opam | 2 +-
packages/atdgen/atdgen.2.4.0/opam | 2 +-
packages/atdgen/atdgen.2.4.1/opam | 2 +-
packages/atdgen/atdgen.2.5.0/opam | 2 +-
packages/atdgen/atdgen.2.6.0/opam | 2 +-
packages/atdgen/atdgen.2.7.0/opam | 2 +-
packages/atdgen/atdgen.2.8.0/opam | 2 +-
packages/atdgen/atdgen.2.9.1/opam | 2 +-
packages/atdgen/atdgen.3.0.1/opam | 130 +++++++++++++++++++++
packages/atdj/atdj.3.0.1/opam | 129 ++++++++++++++++++++
packages/atdpy/atdpy.3.0.1/opam | 118 +++++++++++++++++++
packages/atds/atds.3.0.1/opam | 114 ++++++++++++++++++
packages/atdts/atdts.3.0.1/opam | 117 +++++++++++++++++++
33 files changed, 1219 insertions(+), 23 deletions(-)
create mode 100644 packages/atd/atd.3.0.1/opam
create mode 100644 packages/atdcpp/atdcpp.3.0.1/opam
create mode 100644 packages/atdd/atdd.3.0.1/opam
create mode 100644 packages/atdgen-codec-runtime/atdgen-codec-runtime.3.0.1/opam
create mode 100644 packages/atdgen-runtime/atdgen-runtime.3.0.1/opam
create mode 100644 packages/atdgen/atdgen.3.0.1/opam
create mode 100644 packages/atdj/atdj.3.0.1/opam
create mode 100644 packages/atdpy/atdpy.3.0.1/opam
create mode 100644 packages/atds/atds.3.0.1/opam
create mode 100644 packages/atdts/atdts.3.0.1/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
2025-12-10 19:38.24 ---> using "d81b3b20b9dbe813f4813251eb45f7f230344599357169e34b0d2f872bf65895" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.2 /usr/bin/opam"))
2025-12-10 19:38.24 ---> using "e448b86ab4af64b3c300066bb9b9046f5429cc241c92d250fa0ef99c7288b8bd" 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-12-10 19:39.00 ---> saved as "562e1c98a3c1557633c7219644639330fdc11635a2858a2ba747f9252f8e6f5b"
/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.2.1 (01e9a24a61e23e42d513b4b775d8c30c807439b2)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria
# upgrade-criteria
# 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-10 19:39.02 ---> saved as "760351a87d67ea4bb7b8bdea21a0194c75301e48efae2767a23f9139ba346c86"
/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-10 19:39.15 ---> saved as "3adf1e7c2e056f1ca04fdc6231abf9d487e6735cde25970d0d2195c8720a9371"
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-10 19:39.27 ---> saved as "5899fd4282e5e13995aa7a474dad8d7e8b65e9ff3a1784421dfc49116df8d3ba"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-10 19:39.50 ---> saved as "3f9df72c9afdef0a5aeb4599dfee603c1f4e9cf181155242d3bbf6939c2659e7"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [82.1 kB]
- Fetched 173 kB in 0s (934 kB/s)
- Reading package lists...
-
2025-12-10 19:39.53 ---> saved as "4aa360a029a9085c32ffad21099eab0e601235e00ca11715463e9ca6893a05d9"
/home/opam: (run (shell "opam pin add -k version -yn atdgen.2.14.1 2.14.1"))
atdgen is now pinned to version 2.14.1
2025-12-10 19:39.55 ---> saved as "6a257f64167d1ff3f366406a0a6ce509d2bd4962e24575a555fc84a0e5105030"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall atdgen.2.14.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-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'atdgen.2.14.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
atdgen.2.14.1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 15 packages
- install atd 2.16.0 [required by atdgen]
- install atdgen 2.14.1 (pinned)
- install atdgen-runtime 2.16.0 [required by atdgen]
- install biniou 1.2.2 [required by atdgen]
- install camlp-streams 5.0.1 [required by biniou]
- install cmdliner 2.1.0 [required by atd]
- install dune 3.20.2 [required by atdgen]
- install easy-format 1.3.4 [required by atd]
- install menhir 20250912 [required by atd]
- install menhirCST 20250912 [required by menhir]
- install menhirLib 20250912 [required by menhir]
- install menhirSdk 20250912 [required by menhir]
- install re 1.14.0 [required by atdgen]
- install seq base [required by yojson]
- install yojson 2.2.2 [required by atdgen]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved atd.2.16.0, atdgen-runtime.2.16.0 (cached)
-> retrieved atdgen.2.14.1 (cached)
-> retrieved biniou.1.2.2 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved dune.3.20.2 (cached)
-> retrieved easy-format.1.3.4 (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved yojson.2.2.2 (cached)
-> installed cmdliner.2.1.0
-> installed dune.3.20.2
-> installed camlp-streams.5.0.1
-> installed easy-format.1.3.4
-> installed menhirCST.20250912
-> installed menhirSdk.20250912
-> installed menhirLib.20250912
-> installed biniou.1.2.2
-> installed re.1.14.0
-> installed yojson.2.2.2
-> installed atdgen-runtime.2.16.0
-> installed menhir.20250912
-> installed atd.2.16.0
-> installed atdgen.2.14.1
Done.
# Run eval $(opam env) to update the current shell environment
2025-12-10 19:41.05 ---> saved as "e280fca2ab3905de31dd68339d5e71b113f0f9013cb0b8473a5967030544f716"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test atdgen.2.14.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile atdgen 2.14.1 (pinned)
=== install 10 packages
- install alcotest 1.9.1 [required by atdgen]
- install astring 0.8.5 [required by alcotest]
- install atdgen-codec-runtime 3.0.1 [required by atdgen]
- install fmt 0.11.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocamlbuild 0.16.1 [required by fmt, astring, uutf]
- install ocamlfind 1.9.8 [required by fmt, astring, uutf]
- install stdlib-shims 0.3.0 [required by alcotest]
- install topkg 1.1.1 [required by fmt, astring, uutf]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved atdgen-codec-runtime.3.0.1 (https://github.com/ahrefs/atd/releases/download/3.0.1/atd-3.0.1.tbz)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1 (https://opam.ocaml.org/cache)
-> installed atdgen-codec-runtime.3.0.1
-> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> retrieved topkg.1.1.1 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed ocamlfind.1.9.8
-> removed atdgen.2.14.1
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed atdgen.2.14.1
Done.
# Run eval $(opam env) to update the current shell environment
2025-12-10 19:41.29 ---> saved as "f52ad7965b19dee1645a6d782165b52bcccad2fbe82ccb5c67a33cda65640095"
/home/opam: (run (shell "opam reinstall --with-test --verbose atdgen.2.14.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-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'atdgen.2.14.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 atdgen 2.14.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [atdgen: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "atdgen" "-j" "71" "@install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/atdgen.2.14.1)
-> compiled atdgen.2.14.1
-> removed atdgen.2.14.1
-> installed atdgen.2.14.1
Done.
# Run eval $(opam env) to update the current shell environment
2025-12-10 19:41.48 ---> saved as "677b512baa15ed9e454d9fde9630aacce88d077bf5756fed080374648680aacf"
Job succeeded
2025-12-10 19:41.56: Job succeeded