- github
- ocaml
- opam-repository
- b8482e
- compilers,4.14,fix.20250428,revdeps,naboris.0.0.3
(not at the head of any monitored branch or PR)
2025-04-28 07:03.06: New job: test naboris.0.0.3 with fix.20250428, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/27825/head (b8482e7a395625c45612d9e07cccca429838a385)
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/27825/head" && git reset --hard b8482e7a
git fetch origin master
git merge --no-edit 8106bcf57fc33218275bbf0d02e725f4e9fcd0f6
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:092af122f8f46ca9092eab883ec9034008fd62c82c4d4d5497fede4a39dbff44
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 fix.20250428 20250428
RUN opam reinstall fix.20250428; \
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" != 'fix.20250428' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall naboris.0.0.3; \
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" != 'naboris.0.0.3' && 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 naboris.0.0.3) || true
RUN opam reinstall --with-test --verbose naboris.0.0.3; \
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" != 'naboris.0.0.3' && 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-04-28 07:03.06: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:092af122f8f46ca9092eab883ec9034008fd62c82c4d4d5497fede4a39dbff44-fix.20250428-naboris.0.0.3-b8482e7a395625c45612d9e07cccca429838a385"
2025-04-28 07:03.06: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:092af122f8f46ca9092eab883ec9034008fd62c82c4d4d5497fede4a39dbff44)
(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 fix.20250428 20250428"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall fix.20250428;\
\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\" != 'fix.20250428' && 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 naboris.0.0.3;\
\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\" != 'naboris.0.0.3' && 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 naboris.0.0.3) || true"))
(run (shell "opam reinstall --with-test --verbose naboris.0.0.3;\
\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\" != 'naboris.0.0.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-04-28 07:03.06: Waiting for resource in pool OCluster
2025-04-28 07:03.06: Waiting for worker…
2025-04-28 07:03.08: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
Updating files: 96% (22043/22940)
Updating files: 97% (22252/22940)
Updating files: 98% (22482/22940)
Updating files: 99% (22711/22940)
Updating files: 100% (22940/22940)
Updating files: 100% (22940/22940), done.
HEAD is now at 8106bcf57f Merge pull request #27808 from Octachron/Ocaml_5.4.0_branching
Updating 8106bcf57f..b8482e7a39
Fast-forward
packages/fix/fix.20250428/opam | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
create mode 100644 packages/fix/fix.20250428/opam
(from ocaml/opam:debian-12-ocaml-4.14@sha256:092af122f8f46ca9092eab883ec9034008fd62c82c4d4d5497fede4a39dbff44)
2025-04-28 07:04.00 ---> using "a83f4a937f2dce0878fc91bdfdfebff63d66fc573423fe67a8aac5db36af7a63" 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-04-28 07:04.00 ---> using "56bd851725af7879b4559806c842c170157dc90ab1caf4289b1a2d99ca659cc3" 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
[NOTE] The 'jobs' option was reset, its value was 39 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=39 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-04-28 07:04.00 ---> using "d11023e9d4cf2731e2a905090a1082beae90265217d1424af7ba9fa2915f0717" 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 255
# 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-04-28 07:04.00 ---> using "85f55574c059ed5146113df71a3adf60e7b8dabe06db977192331c3ba497588f" 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-04-28 07:04.00 ---> using "21dcf9853377f5afb2caf29a89b5380bc15e3710c019bb764457aedf0a78bd38" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-04-28 07:04.01 ---> using "e48907d5f888e9ab38472135a9418c6d652d32c06f62f6911cc9805e30248f25" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-04-28 07:04.01 ---> using "2708d58624e32e6aa21ac895f1aa31fc489c61fac7b253a0e05d6cdcdbacb0fe" 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-security bookworm-security/main amd64 Packages [258 kB]
- Fetched 361 kB in 0s (815 kB/s)
- Reading package lists...
2025-04-28 07:04.01 ---> using "38b3699e546185d239e7fa83a73824bd91388b35147e3d5fae6cb1fc0a040c31" from cache
/home/opam: (run (shell "opam pin add -k version -yn fix.20250428 20250428"))
fix is now pinned to version 20250428
2025-04-28 07:04.01 ---> using "15173603d41ceedbf4e75c6502fb928d7cf3a1d78e2d692d2a010d7ab80fb0bb" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall fix.20250428;\
\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\" != 'fix.20250428' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
fix.20250428 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 2 packages
- install dune 3.18.1 [required by fix]
- install fix 20250428 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.18.1 (cached)
-> retrieved fix.20250428 (cached)
-> installed dune.3.18.1
-> installed fix.20250428
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-28 07:04.10 ---> saved as "e8d0fc793c9a382df1872ba15b0f238356be4a11d99eb39be0a191bca21a335c"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall naboris.0.0.3;\
\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\" != 'naboris.0.0.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
naboris.0.0.3 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 33 packages
- install angstrom 0.16.1 [required by httpaf, uri]
- install base-bytes base [required by ocplib-endian]
- install bigstringaf 0.10.0 [required by httpaf]
- install cppo 1.8.0 [required by reason]
- install csexp 1.5.2 [required by dune-configurator]
- install dune-build-info 3.18.1 [required by reason]
- install dune-configurator 3.18.1 [required by bigstringaf]
- install faraday 0.8.2 [required by httpaf]
- install faraday-lwt 0.8.2 [required by faraday-lwt-unix]
- install faraday-lwt-unix 0.8.2 [required by httpaf-lwt-unix]
- install httpaf 0.7.1 [required by naboris]
- install httpaf-lwt-unix 0.7.1 [required by naboris]
- install lwt 5.9.1 [required by naboris]
- install menhir 20240715 [required by reason]
- install menhirCST 20240715 [required by menhir]
- install menhirLib 20240715 [required by menhir]
- install menhirSdk 20240715 [required by menhir]
- install merlin-extend 0.6.2 [required by reason]
- install naboris 0.0.3
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocamlfind 1.9.8 [required by reason]
- install ocplib-endian 1.2 [required by lwt]
- install ppx_derivers 1.2.1 [required by reason]
- install ppxlib 0.36.0 [required by reason]
- install re 1.12.0 [required by naboris]
- install reason 3.16.0 [required by naboris]
- install result 1.5 [required by httpaf]
- install seq base [required by re]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install stringext 1.6.0 [required by uri]
- install uri 4.4.0 [required by naboris]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed csexp.1.5.2
-> retrieved dune-build-info.3.18.1, dune-configurator.3.18.1 (cached)
-> installed cppo.1.8.0
-> retrieved faraday.0.8.2, faraday-lwt.0.8.2, faraday-lwt-unix.0.8.2 (cached)
-> retrieved httpaf.0.7.1, httpaf-lwt-unix.0.7.1 (cached)
-> retrieved lwt.5.9.1 (cached)
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached)
-> retrieved merlin-extend.0.6.2 (cached)
-> retrieved naboris.0.0.3 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> installed dune-build-info.3.18.1
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.36.0 (cached)
-> retrieved re.1.12.0 (cached)
-> installed menhirCST.20240715
-> installed ppx_derivers.1.2.1
-> retrieved reason.3.16.0 (cached)
-> installed merlin-extend.0.6.2
-> installed dune-configurator.3.18.1
-> installed menhirSdk.20240715
-> retrieved result.1.5 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> installed menhirLib.20240715
-> retrieved uri.4.4.0 (cached)
-> installed ocaml-syntax-shims.1.0.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed result.1.5
-> installed sexplib0.v0.17.0
-> installed bigstringaf.0.10.0
-> installed faraday.0.8.2
-> installed re.1.12.0
-> installed angstrom.0.16.1
-> installed httpaf.0.7.1
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed uri.4.4.0
-> installed ocplib-endian.1.2
-> installed lwt.5.9.1
-> installed faraday-lwt.0.8.2
-> installed faraday-lwt-unix.0.8.2
-> installed httpaf-lwt-unix.0.7.1
-> installed menhir.20240715
-> installed ppxlib.0.36.0
-> installed reason.3.16.0
-> installed naboris.0.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-28 07:05.00 ---> saved as "d44241a2616ff8ee21a8fd9807a6491c5aeeedd75c42383b64e36c4e0645d36a"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test naboris.0.0.3) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile naboris 0.0.3
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved naboris.0.0.3 (https://github.com/shawn-mcginty/naboris/archive/0.0.2.tar.gz)
-> removed naboris.0.0.3
-> installed naboris.0.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-28 07:05.09 ---> saved as "ba3b3ed8aed83a91c7e3ad8ecb2f97108c8e6fc765222749a9161f7d3371e72c"
/home/opam: (run (shell "opam reinstall --with-test --verbose naboris.0.0.3;\
\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\" != 'naboris.0.0.3' && 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 naboris 0.0.3
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [naboris.0.0.3: extract]
-> retrieved naboris.0.0.3 (cached)
Processing 2/4: [naboris: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "naboris" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/naboris.0.0.3)
-> compiled naboris.0.0.3
-> removed naboris.0.0.3
-> installed naboris.0.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-28 07:05.14 ---> saved as "350fb6c53dacfc8a6e7dbf5c9f8f9ce1d78e304a362c4c6c19787f73e743f777"
Job succeeded
2025-04-28 07:05.27: Job succeeded