- github
- ocaml
- opam-repository
- 9e1a08
- distributions,ubuntu-25.04-ocaml-4.14,ocsigen-i18n.5.0.0,tests
(not at the head of any monitored branch or PR)
2026-04-03 15:45.09: New job: test ocsigen-i18n.5.0.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29643/head (9e1a0839a806e7cca513787f31a63eb67474fcb6)
on ubuntu-25.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/29643/head" && git reset --hard 9e1a0839
git fetch origin master
git merge --no-edit 2a4b43904149bbedec7e93cb8c589392dcdb483a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-25.04-ocaml-4.14@sha256:93c5ecf5de9774eea67e7b1ef006a28d22382f76216e852661b651e2eb3c7f42
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 ocsigen-i18n.5.0.0 5.0.0
RUN opam reinstall ocsigen-i18n.5.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-25.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocsigen-i18n.5.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 ocsigen-i18n.5.0.0) || true
RUN opam reinstall --with-test --verbose ocsigen-i18n.5.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-25.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocsigen-i18n.5.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-03 15:45.09: Using cache hint "ocaml/opam:ubuntu-25.04-ocaml-4.14@sha256:93c5ecf5de9774eea67e7b1ef006a28d22382f76216e852661b651e2eb3c7f42-ocsigen-i18n.5.0.0-9e1a0839a806e7cca513787f31a63eb67474fcb6"
2026-04-03 15:45.09: Using OBuilder spec:
((from ocaml/opam:ubuntu-25.04-ocaml-4.14@sha256:93c5ecf5de9774eea67e7b1ef006a28d22382f76216e852661b651e2eb3c7f42)
(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 ocsigen-i18n.5.0.0 5.0.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocsigen-i18n.5.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-25.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\" != 'ocsigen-i18n.5.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 ocsigen-i18n.5.0.0) || true"))
(run (shell "opam reinstall --with-test --verbose ocsigen-i18n.5.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-25.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\" != 'ocsigen-i18n.5.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-03 15:45.09: Waiting for resource in pool OCluster
2026-04-03 17:12.44: Waiting for worker…
2026-04-03 17:14.47: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 2a4b439041 Merge pull request #29641 from daysv/release-sm-0.1.0
Updating 2a4b439041..9e1a0839a8
Fast-forward
packages/ocsigen-i18n/ocsigen-i18n.5.0.0/opam | 28 ++++++++++++++++++++++++
packages/ocsigen-start/ocsigen-start.2.21.1/opam | 1 -
packages/ocsigen-start/ocsigen-start.4.0.0/opam | 1 -
packages/ocsigen-start/ocsigen-start.4.0.1/opam | 1 -
packages/ocsigen-start/ocsigen-start.4.1.0/opam | 1 -
packages/ocsigen-start/ocsigen-start.4.3.0/opam | 1 -
packages/ocsigen-start/ocsigen-start.4.4.0/opam | 3 +--
packages/ocsigen-start/ocsigen-start.4.5.0/opam | 3 +--
packages/ocsigen-start/ocsigen-start.4.6.0/opam | 3 +--
packages/ocsigen-start/ocsigen-start.4.7.0/opam | 3 +--
packages/ocsigen-start/ocsigen-start.5.0.0/opam | 3 +--
packages/ocsigen-start/ocsigen-start.6.0.1/opam | 3 +--
packages/ocsigen-start/ocsigen-start.6.1.0/opam | 3 +--
packages/ocsigen-start/ocsigen-start.6.1.1/opam | 3 +--
packages/ocsigen-start/ocsigen-start.6.1.2/opam | 3 +--
packages/ocsigen-start/ocsigen-start.6.2.0/opam | 3 +--
packages/ocsigen-start/ocsigen-start.6.3.0/opam | 3 +--
packages/ocsigen-start/ocsigen-start.7.0.0/opam | 3 +--
packages/ocsigen-start/ocsigen-start.7.1.0/opam | 3 +--
packages/ocsigen-start/ocsigen-start.8.0.0/opam | 3 +--
20 files changed, 42 insertions(+), 33 deletions(-)
create mode 100644 packages/ocsigen-i18n/ocsigen-i18n.5.0.0/opam
(from ocaml/opam:ubuntu-25.04-ocaml-4.14@sha256:93c5ecf5de9774eea67e7b1ef006a28d22382f76216e852661b651e2eb3c7f42)
2026-04-03 17:15.04 ---> using "9c4e60a0472f0dbade77ea59c9f5e69194b2a7ff9fe95acb61f69a555020deca" 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-04-03 17:15.04 ---> using "de3d3ca2762f0f1757b1cf5be8b4dbc4cb157a3c7b287f8b8e65fff7f8e89b48" 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 ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[ocaml-patches-overlay] no changes from git+https://github.com/ocurrent/opam-repository#patches
[default] Initialised
2026-04-03 17:15.04 ---> using "f2392f1814341f677375e319bab3e61249e816c91eb43c5e88ab0b3de55c04b9" 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=25.04
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 2 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages ocaml-base-compiler.4.14.3, 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.3
2026-04-03 17:15.04 ---> using "5b8a9739ce43016a12bd5d3a92c96e157b0c331bafca06e7deee652b10ea783f" 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-03 17:15.04 ---> using "637845f29a6dceb60ca4f7031f202829c38f8ad9e819ef1054277d030ffb92d8" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-03 17:15.04 ---> using "899ca66e14c0f7986f53c05c4384780181738ef7c72a792cf8f2459001166251" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-03 17:15.04 ---> using "6ab0358ea68f274faa7b1cca9d1c474615cf081825948b9435cd601693570519" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://security.ubuntu.com/ubuntu plucky-security InRelease
- Hit:2 http://archive.ubuntu.com/ubuntu plucky InRelease
- Hit:3 http://archive.ubuntu.com/ubuntu plucky-updates InRelease
- Hit:4 http://archive.ubuntu.com/ubuntu plucky-backports InRelease
- Reading package lists...
2026-04-03 17:15.04 ---> using "65f831aa2d774fa476ff366de960be0717c5eeafb648da5cc513459f2c030cfe" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocsigen-i18n.5.0.0 5.0.0"))
ocsigen-i18n is now pinned to version 5.0.0
2026-04-03 17:15.04 ---> using "3a115ad7e4091494177190795f6f2551c7a2b9947c8898d3b92a0758c8f38abd" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocsigen-i18n.5.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-25.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\" != 'ocsigen-i18n.5.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"))
ocsigen-i18n.5.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
- install dune 3.22.1 [required by ocsigen-i18n]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocsigen-i18n 5.0.0 (pinned)
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.38.0 [required by ocsigen-i18n]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.1 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocsigen-i18n.5.0.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.38.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed dune.3.22.1
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ppxlib.0.38.0
-> installed ocsigen-i18n.5.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-03 17:15.38 ---> saved as "40f6f2e2e0cf159fc6003ea21b8ce14609b5a6afcca42743205552c4d3f2b77e"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test ocsigen-i18n.5.0.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile ocsigen-i18n 5.0.0 (pinned)
=== install 7 packages
- install ocamlbuild 0.16.1 [required by uutf]
- install ocamlfind 1.9.8 [required by uutf]
- install re 1.14.0 [required by tyxml]
- install seq base [required by tyxml]
- install topkg 1.1.1 [required by uutf]
- install tyxml 4.6.0 [required by ocsigen-i18n]
- install uutf 1.0.4 [required by tyxml]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocamlbuild.0.16.1 (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved seq.base (2 extra sources)
-> retrieved seq.base (2 extra sources)
-> installed seq.base
-> retrieved topkg.1.1.1 (https://opam.ocaml.org/cache)
-> retrieved tyxml.4.6.0 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed re.1.14.0
-> installed ocamlfind.1.9.8
-> removed ocsigen-i18n.5.0.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed tyxml.4.6.0
-> installed ocsigen-i18n.5.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-03 17:15.54 ---> saved as "57d5cb6ca9a517ad3e891e6894fb787a7f0b10bd54f9178a9827a75a040399c9"
/home/opam: (run (shell "opam reinstall --with-test --verbose ocsigen-i18n.5.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-25.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\" != 'ocsigen-i18n.5.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 ocsigen-i18n 5.0.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [ocsigen-i18n: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ocsigen-i18n" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ocsigen-i18n.5.0.0)
-> compiled ocsigen-i18n.5.0.0
-> removed ocsigen-i18n.5.0.0
-> installed ocsigen-i18n.5.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-03 17:15.59 ---> saved as "d780150276c04d9fef8ad1ff5e051a93cf8cf8e0bd18b0225cca27ac615ec648"
Job succeeded
2026-04-03 17:16.04: Job succeeded