- github
- ocaml
- opam-repository
- 8e5a62
- freebsd,freebsd-14.3-ocaml-5.4-amd64,atdml.4.0.0,tests
(not at the head of any monitored branch or PR)
2026-04-12 09:45.28: New job: test atdml.4.0.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29709/head (8e5a62aa6ff8e3285a53d2ca2cbe0dc69bc99426)
on freebsd-14.3-ocaml-5.4/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/29709/head" && git reset --hard 8e5a62aa
git fetch origin master
git merge --no-edit 0404939bde256ca9d097922f265c4342b3b383b0
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM freebsd-14.3-ocaml-5.4
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/local/bin/opam-dev /usr/local/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 atdml.4.0.0 4.0.0
RUN opam reinstall atdml.4.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 "\"freebsd-14.3\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'atdml.4.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 atdml.4.0.0) || true
RUN opam reinstall --with-test --verbose atdml.4.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 "\"freebsd-14.3\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'atdml.4.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-04-12 09:45.28: Using cache hint "freebsd-14.3-ocaml-5.4-atdml.4.0.0-8e5a62aa6ff8e3285a53d2ca2cbe0dc69bc99426"
2026-04-12 09:45.28: Using OBuilder spec:
((from freebsd-14.3-ocaml-5.4)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/local/bin/opam-dev /usr/local/bin/opam"))
(run (network host)
(shell "opam init --reinit -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 atdml.4.0.0 4.0.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall atdml.4.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 \"\\\"freebsd-14.3\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'atdml.4.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 atdml.4.0.0) || true"))
(run (shell "opam reinstall --with-test --verbose atdml.4.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 \"\\\"freebsd-14.3\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'atdml.4.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-04-12 09:45.28: Waiting for resource in pool OCluster
2026-04-12 09:45.28: Waiting for worker…
2026-04-12 09:45.28: Got resource from pool OCluster
Building on rosemary
All commits already cached
Updating files: 100% (18686/18686), done.
HEAD is now at 0404939bde Merge pull request #29648 from sanette/opam-publish-tsdl-ttf.0.7
Updating 0404939bde..8e5a62aa6f
Fast-forward
packages/atd-jsonlike/atd-jsonlike.4.1.0/opam | 119 +++++++++++++++++++
packages/atd-yamlx/atd-yamlx.4.1.0/opam | 121 +++++++++++++++++++
packages/atd/atd.4.1.0/opam | 126 ++++++++++++++++++++
packages/atdcpp/atdcpp.4.0.0/opam | 2 +-
packages/atdcpp/atdcpp.4.1.0/opam | 117 ++++++++++++++++++
packages/atdd/atdd.4.0.0/opam | 2 +-
packages/atdd/atdd.4.1.0/opam | 117 ++++++++++++++++++
.../atdgen-codec-runtime.4.1.0/opam | 116 ++++++++++++++++++
packages/atdgen-runtime/atdgen-runtime.4.1.0/opam | 118 +++++++++++++++++++
packages/atdgen/atdgen.4.0.0/opam | 2 +-
packages/atdgen/atdgen.4.1.0/opam | 131 +++++++++++++++++++++
packages/atdj/atdj.4.0.0/opam | 2 +-
packages/atdj/atdj.4.1.0/opam | 130 ++++++++++++++++++++
packages/atdml/atdml.4.0.0/opam | 2 +-
packages/atdml/atdml.4.1.0/opam | 122 +++++++++++++++++++
packages/atdpy/atdpy.4.0.0/opam | 2 +-
packages/atdpy/atdpy.4.1.0/opam | 119 +++++++++++++++++++
packages/atds/atds.4.0.0/opam | 2 +-
packages/atds/atds.4.1.0/opam | 115 ++++++++++++++++++
packages/atdts/atdts.4.0.0/opam | 2 +-
packages/atdts/atdts.4.1.0/opam | 118 +++++++++++++++++++
21 files changed, 1577 insertions(+), 8 deletions(-)
create mode 100644 packages/atd-jsonlike/atd-jsonlike.4.1.0/opam
create mode 100644 packages/atd-yamlx/atd-yamlx.4.1.0/opam
create mode 100644 packages/atd/atd.4.1.0/opam
create mode 100644 packages/atdcpp/atdcpp.4.1.0/opam
create mode 100644 packages/atdd/atdd.4.1.0/opam
create mode 100644 packages/atdgen-codec-runtime/atdgen-codec-runtime.4.1.0/opam
create mode 100644 packages/atdgen-runtime/atdgen-runtime.4.1.0/opam
create mode 100644 packages/atdgen/atdgen.4.1.0/opam
create mode 100644 packages/atdj/atdj.4.1.0/opam
create mode 100644 packages/atdml/atdml.4.1.0/opam
create mode 100644 packages/atdpy/atdpy.4.1.0/opam
create mode 100644 packages/atds/atds.4.1.0/opam
create mode 100644 packages/atdts/atdts.4.1.0/opam
(from freebsd-14.3-ocaml-5.4)
2026-04-12 09:41.33 ---> using "463e9b939b79b2568bf98b05cff00f85b3ec5717170cf88773a44ae3b08f11e7" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/local/bin/opam-dev /usr/local/bin/opam"))
2026-04-12 09:41.34 ---> using "0f4f38cca0f09ffdac905c0015fdbe56f9214c89e28a28ae3325cd6eed47fd99" from cache
/home/opam: (run (network host)
(shell "opam init --reinit -ni"))
No configuration file found, using 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.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 1 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=1 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2026-04-12 09:41.34 ---> using "430d75e95f6be08ef0776e6e6bb864bc698709d5f7d071fd7fbbf37d0a8617d5" 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=freebsd os-distribution=freebsd os-version=1403000
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 39
# repositories 1 (version-controlled)
# pinned 0
# current-switch 5.4.1
# invariant ["ocaml-base-compiler" {= "5.4.1"} | "ocaml-system" {= "5.4.1"}]
# compiler-packages ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4.1/lib/ocaml/stublibs:/home/opam/.opam/5.4.1/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.1
2026-04-12 09:41.34 ---> using "8a5a57fecc1d42886ddc4a5b75b36583eef8196838ccdc1bf870bc7798f6f185" 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-04-12 09:41.34 ---> using "5d57b5e6a2b42d2aa72fb2cc8558fd5735263edde7f2032c7588b729f1b1565f" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-12 09:41.35 ---> using "15de217fea728181779e4bbc2a74461572638b1ad18b9b47d756e49f47dbc945" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-12 09:41.36 ---> using "96da8b57f425fe6f822f346c10ead114365a1a286265c00dc9667fc9d033d2ee" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
[WARNING] Unknown update command for bsd, skipping system update
2026-04-12 09:41.36 ---> using "c1fd9f8cb792aaa732db5f25f138fd86ef1e5f3c2cebe84879d76b9328c0cf8f" from cache
/home/opam: (run (shell "opam pin add -k version -yn atdml.4.0.0 4.0.0"))
atdml is now pinned to version 4.0.0
2026-04-12 09:41.36 ---> using "752aff706343c3d50f7824bf4cbab479a7bd3c042cdf415609f98dc886264fad" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall atdml.4.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 \"\\\"freebsd-14.3\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'atdml.4.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"))
atdml.4.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 12 packages
∗ atd 4.0.0 [required by atdml]
∗ atdml 4.0.0 (pinned)
∗ cmdliner 2.1.0 [required by atdml]
∗ dune 3.22.1 [required by atdml]
∗ easy-format 1.3.4 [required by atd]
∗ menhir 20260209 [required by atd]
∗ menhirCST 20260209 [required by menhir]
∗ menhirGLR 20260209 [required by menhir]
∗ menhirLib 20260209 [required by menhir]
∗ menhirSdk 20260209 [required by menhir]
∗ re 1.14.0 [required by atd]
∗ yojson 3.0.0 [required by atdml]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved atd.4.0.0, atdml.4.0.0 (cached)
⬇ retrieved cmdliner.2.1.0 (cached)
⬇ retrieved dune.3.22.1 (cached)
⬇ retrieved easy-format.1.3.4 (cached)
⬇ retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (cached)
⬇ retrieved re.1.14.0 (cached)
⬇ retrieved yojson.3.0.0 (cached)
∗ installed cmdliner.2.1.0
∗ installed dune.3.22.1
∗ installed menhirCST.20260209
∗ installed easy-format.1.3.4
∗ installed menhirGLR.20260209
∗ installed menhirLib.20260209
∗ installed menhirSdk.20260209
∗ installed re.1.14.0
∗ installed yojson.3.0.0
∗ installed menhir.20260209
∗ installed atd.4.0.0
∗ installed atdml.4.0.0
Done.
2026-04-12 09:41.36 ---> using "a8994519bbd351ed05879a85216da8e1e5681bac988ff0f9c3c7ac8bc6d64667" from cache
/home/opam: (run (network host)
(shell "(opam reinstall --with-test atdml.4.0.0) || true"))
The following actions will be performed:
=== recompile 1 package
↻ atdml 4.0.0 (pinned)
=== install 15 packages
∗ astring 0.8.5 [required by fpath]
∗ cppo 1.8.0 [required by ppx_deriving]
∗ fpath 0.7.3 [required by testo]
∗ ocaml-compiler-libs v0.17.0 [required by ppxlib]
∗ ocamlbuild 0.16.1 [required by fpath]
∗ ocamlfind 1.9.8 [required by fpath]
∗ ppx_derivers 1.2.1 [required by ppx_deriving]
∗ ppx_deriving 6.1.1 [required by testo-util]
∗ ppxlib 0.38.0 [required by ppx_deriving]
∗ sexplib0 v0.17.0 [required by ppxlib]
∗ stdlib-shims 0.3.0 [required by ppxlib]
∗ testo 0.4.0 [required by atdml]
∗ testo-diff 0.4.0 [required by testo-util]
∗ testo-util 0.4.0 [required by testo]
∗ topkg 1.1.1 [required by fpath]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved astring.0.8.5 (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
⬇ retrieved cppo.1.8.0 (https://github.com/ocaml-community/cppo/archive/v1.8.0.tar.gz)
∗ installed cppo.1.8.0
⬇ retrieved fpath.0.7.3 (https://erratique.ch/software/fpath/releases/fpath-0.7.3.tbz)
⬇ retrieved ocaml-compiler-libs.v0.17.0 (https://github.com/janestreet/ocaml-compiler-libs/archive/refs/tags/v0.17.0.tar.gz)
⬇ retrieved ocamlbuild.0.16.1 (https://github.com/ocaml/ocamlbuild/archive/refs/tags/0.16.1.tar.gz)
⬇ retrieved ocamlfind.1.9.8 (https://github.com/ocaml/ocamlfind/archive/refs/tags/findlib-1.9.8.tar.gz)
⬇ retrieved ppx_derivers.1.2.1 (https://github.com/ocaml-ppx/ppx_derivers/archive/1.2.1.tar.gz)
⬇ retrieved ppx_deriving.6.1.1 (https://github.com/ocaml-ppx/ppx_deriving/releases/download/v6.1.1/ppx_deriving-6.1.1.tar.gz)
∗ installed ppx_derivers.1.2.1
∗ installed ocaml-compiler-libs.v0.17.0
[ERROR] Failed to get sources of ppxlib.0.38.0: HTTP error code 502
⬇ retrieved sexplib0.v0.17.0 (https://github.com/janestreet/sexplib0/archive/refs/tags/v0.17.0.tar.gz)
⬇ retrieved stdlib-shims.0.3.0 (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz)
∗ installed stdlib-shims.0.3.0
∗ installed sexplib0.v0.17.0
⬇ retrieved testo.0.4.0, testo-diff.0.4.0, testo-util.0.4.0 (https://github.com/mjambon/testo/releases/download/0.4.0/testo-0.4.0.tbz)
⬇ retrieved topkg.1.1.1 (https://erratique.ch/software/topkg/releases/topkg-1.1.1.tbz)
∗ installed ocamlfind.1.9.8
⊘ removed atdml.4.0.0
∗ installed ocamlbuild.0.16.1
∗ installed topkg.1.1.1
∗ installed astring.0.8.5
∗ installed fpath.0.7.3
#=== ERROR while fetching sources for ppxlib.0.38.0 ===========================#
OpamSolution.Fetch_fail("https://github.com/ocaml-ppx/ppxlib/releases/download/0.38.0/ppxlib-0.38.0.tbz (code 502 while downloading https://github.com/ocaml-ppx/ppxlib/releases/download/0.38.0/ppxlib-0.38.0.tbz)")
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
┌─ The following actions failed
│ ⬇ fetch ppxlib 0.38.0
└─
┌─ The following changes have been performed (the rest was aborted)
│ ⊘ remove atdml 4.0.0
│ ∗ install astring 0.8.5
│ ∗ install cppo 1.8.0
│ ∗ install fpath 0.7.3
│ ∗ install ocaml-compiler-libs v0.17.0
│ ∗ install ocamlbuild 0.16.1
│ ∗ install ocamlfind 1.9.8
│ ∗ install ppx_derivers 1.2.1
│ ∗ install sexplib0 v0.17.0
│ ∗ install stdlib-shims 0.3.0
│ ∗ install topkg 1.1.1
└─
The former state can be restored with:
/usr/local/bin/opam switch import "/home/opam/.opam/5.4.1/.opam-switch/backup/state-20260412055536.export"
Or you can retry to install your package selection with:
/usr/local/bin/opam install --restore
2026-04-12 09:41.36 ---> using "25ba53d8a08234589af68f854dead056a36a19386b38441926526ac3a6a6717c" from cache
/home/opam: (run (shell "opam reinstall --with-test --verbose atdml.4.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 \"\\\"freebsd-14.3\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'atdml.4.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"))
atdml.4.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
∗ atdml 4.0.0 (pinned)
∗ ppx_deriving 6.1.1 [required by testo-util]
∗ ppxlib 0.38.0 [required by ppx_deriving]
∗ testo 0.4.0 [required by atdml]
∗ testo-diff 0.4.0 [required by testo-util]
∗ testo-util 0.4.0 [required by testo]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/16: [ppx_deriving.6.1.1: extract]
⬇ retrieved ppx_deriving.6.1.1 (cached)
Processing 3/16: [ppxlib.0.38.0: http]
[ERROR] Failed to get sources of ppxlib.0.38.0: curl failed
Processing 4/16: [testo.0.4.0 + 2 others: extract]
Processing 5/16: [testo.0.4.0 + 2 others: extract]
Processing 6/16: [testo.0.4.0 + 2 others: extract]
Processing 7/16: [testo.0.4.0 + 2 others: extract]
Processing 8/16: [testo.0.4.0 + 2 others: extract]
⬇ retrieved testo.0.4.0, testo-diff.0.4.0, testo-util.0.4.0 (cached)
#=== ERROR while fetching sources for ppxlib.0.38.0 ===========================#
OpamSolution.Fetch_fail("https://github.com/ocaml-ppx/ppxlib/releases/download/0.38.0/ppxlib-0.38.0.tbz (curl failed: \"/usr/local/bin/curl --write-out %{http_code}\\\\n --retry 3 --retry-delay 2 --user-agent opam/2.5.0 -L -o /tmp/opam-83687-5b0ab0/ppxlib-0.38.0.tbz.part -- https://github.com/ocaml-ppx/ppxlib/releases/download/0.38.0/ppxlib-0.38.0.tbz\" exited with code 6)")
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
┌─ The following actions were aborted
│ ∗ install atdml 4.0.0
│ ∗ install ppx_deriving 6.1.1
│ ∗ install testo 0.4.0
│ ∗ install testo-diff 0.4.0
│ ∗ install testo-util 0.4.0
└─
┌─ The following actions failed
│ ⬇ fetch ppxlib 0.38.0
└─
╶─ No changes have been performed
'opam reinstall --with-test --verbose atdml.4.0.0' failed.
jail: /usr/bin/su -l opam -c cd '/home/opam' && env OPAM_REPO_CI='true' CI='true' OPAMPRECISETRACKING='1' OPAMERRLOGLEN='0' OPAMDOWNLOADJOBS='1' '/usr/bin/env' 'bash' '-c' 'opam reinstall --with-test --verbose atdml.4.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 "\"freebsd-14.3\""; then
echo "A package failed and has been disabled for CI using the '\''x-ci-accept-failures'\'' field.";
fi;
test "$pkg" != '\''atdml.4.0.0'\'' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1': failed
"jail" "-c" "name=obuilder_52585_8359" "mount.devfs" "path=/obuilder/result/630fb6bc829911ff923f1bb7f23e0748489421aac5a7f10e0eb2603803abdddc/rootfs" "vnet" "exec.start=/sbin/ifconfig lo0 127.0.0.1/8" "command=/usr/bin/su" "-l" "opam" "-c" "cd '/home/opam' && env OPAM_REPO_CI='true' CI='true' OPAMPRECISETRACKING='1' OPAMERRLOGLEN='0' OPAMDOWNLOADJOBS='1' '/usr/bin/env' 'bash' '-c' 'opam reinstall --with-test --verbose atdml.4.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 "\"freebsd-14.3\""; then
echo "A package failed and has been disabled for CI using the '\''x-ci-accept-failures'\'' field.";
fi;
test "$pkg" != '\''atdml.4.0.0'\'' && 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
2026-04-12 09:45.49: Job failed: Failed: Build failed
2026-04-12 09:45.49: Log analysis:
2026-04-12 09:45.49: >>>
[ERROR] Failed to get sources of ppxlib.0.38.0: HTTP error code 502
(score = 25)
2026-04-12 09:45.49: >>>
[ERROR] Failed to get sources of ppxlib.0.38.0: curl failed
(score = 25)
2026-04-12 09:45.49: Failed to get sources of ppxlib.0.38.0: HTTP error code 502