- github
- ocaml
- opam-repository
- 072d27
- extras,opam-2.0-ocaml-4.14,nanoev-picos.0.1,tests
(not at the head of any monitored branch or PR)
2025-05-09 16:44.01: New job: test nanoev-picos.0.1, using opam 2.0
from https://github.com/ocaml/opam-repository.git#refs/pull/27859/head (072d27be86ef0a9ffb174096c6aa591d954571c9)
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/27859/head" && git reset --hard 072d27be
git fetch origin master
git merge --no-edit 0d013e603b5ebf0e9b404e10d5a6839f226e1739
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:961db72a88a17b39e6ed38c7f163d2e87a7d7807933a0cd9e22e5d93aa634b23
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam
RUN opam init --reinit -ni
RUN 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 depext -u || true
RUN opam pin add -k version -yn nanoev-picos.0.1 0.1
RUN opam depext nanoev-picos.0.1 && opam reinstall nanoev-picos.0.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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'nanoev-picos.0.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam depext --with-test nanoev-picos.0.1 && opam reinstall --with-test nanoev-picos.0.1) || true
RUN opam depext --with-test nanoev-picos.0.1 && opam reinstall --with-test --verbose nanoev-picos.0.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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'nanoev-picos.0.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-05-09 16:44.01: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:961db72a88a17b39e6ed38c7f163d2e87a7d7807933a0cd9e22e5d93aa634b23-nanoev-picos.0.1-072d27be86ef0a9ffb174096c6aa591d954571c9"
2025-05-09 16:44.01: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:961db72a88a17b39e6ed38c7f163d2e87a7d7807933a0cd9e22e5d93aa634b23)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "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 depext -u || true"))
(run (shell "opam pin add -k version -yn nanoev-picos.0.1 0.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam depext nanoev-picos.0.1 && opam reinstall nanoev-picos.0.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-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\" != 'nanoev-picos.0.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 depext --with-test nanoev-picos.0.1 && opam reinstall --with-test nanoev-picos.0.1) || true"))
(run (shell "opam depext --with-test nanoev-picos.0.1 && opam reinstall --with-test --verbose nanoev-picos.0.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-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\" != 'nanoev-picos.0.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-05-09 16:44.01: Waiting for resource in pool OCluster
2025-05-09 16:44.17: Waiting for worker…
2025-05-09 16:49.23: Got resource from pool OCluster
Building on x86-bm-c7.sw.ocaml.org
All commits already cached
Updating files: 92% (21295/23013)
Updating files: 93% (21403/23013)
Updating files: 94% (21633/23013)
Updating files: 95% (21863/23013)
Updating files: 96% (22093/23013)
Updating files: 97% (22323/23013)
Updating files: 98% (22553/23013)
Updating files: 99% (22783/23013)
Updating files: 100% (23013/23013)
Updating files: 100% (23013/23013), done.
HEAD is now at 0d013e603b Merge pull request #27802 from Khady/release-junit-2.3.0
Updating 0d013e603b..072d27be86
Fast-forward
packages/nanoev-picos/nanoev-picos.0.1/opam | 42 ++++++++++++++++++++
packages/nanoev-posix/nanoev-posix.0.1/opam | 45 ++++++++++++++++++++++
packages/nanoev/nanoev.0.1/opam | 41 ++++++++++++++++++++
.../nanoev_tiny_httpd/nanoev_tiny_httpd.0.1/opam | 42 ++++++++++++++++++++
4 files changed, 170 insertions(+)
create mode 100644 packages/nanoev-picos/nanoev-picos.0.1/opam
create mode 100644 packages/nanoev-posix/nanoev-posix.0.1/opam
create mode 100644 packages/nanoev/nanoev.0.1/opam
create mode 100644 packages/nanoev_tiny_httpd/nanoev_tiny_httpd.0.1/opam
(from ocaml/opam:debian-12-ocaml-4.14@sha256:961db72a88a17b39e6ed38c7f163d2e87a7d7807933a0cd9e22e5d93aa634b23)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:961db72a88a17b39e6ed38c7f163d2e87a7d7807933a0cd9e22e5d93aa634b23' locally
docker.io/ocaml/opam@sha256:961db72a88a17b39e6ed38c7f163d2e87a7d7807933a0cd9e22e5d93aa634b23: Pulling from ocaml/opam
31577a5a725a: Pulling fs layer
31577a5a725a: Verifying Checksum
31577a5a725a: Download complete
31577a5a725a: Pull complete
Digest: sha256:961db72a88a17b39e6ed38c7f163d2e87a7d7807933a0cd9e22e5d93aa634b23
Status: Downloaded newer image for ocaml/opam@sha256:961db72a88a17b39e6ed38c7f163d2e87a7d7807933a0cd9e22e5d93aa634b23
2025-05-09 16:49.27 ---> using "af7d22c5637bd7ee82399e9803683a4a41d836ff89b0309380b7bf79fa1a3d8f" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
2025-05-09 16:49.27 ---> using "4ba8e65a66c99c3f74afadcfc5df574ccf06c17f3174c1615368f54f0a878eca" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
[NOTE] Will configure 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.
[WARNING] Recommended dependencies -- most packages rely on these:
- m4
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
default (at git+file:///home/opam/opam-repository):
[INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)
2025-05-09 16:49.27 ---> using "d55ae1be8fa70e8b8cba7dbbf00a6ca6e48807b74096d64527eb00b8ce80384e" from cache
/home/opam: (run (shell "opam config report"))
# opam config report
# opam-version 2.0.10 (adc1e1829a2bef5b240746df80341b508290fe3b)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=12
# solver builtin-mccs+glpk
# install-criteria -removed,-count[version-lag,request],-count[version-lag,changed],-changed
# upgrade-criteria -removed,-count[version-lag,solution],-new
# jobs 39
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
2025-05-09 16:49.27 ---> using "885a46318f9e80a6042300171a80b6a69b999ff1b2408e36ed9f99689709b31f" 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-05-09 16:49.27 ---> using "5e59ad33fd380788af227a0c4797babe3f1e2c8853a0460bd7184df98bd49d85" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-05-09 16:49.33 ---> saved as "4cdf7b4da51ffb3710984c9ccde4c7d3773f1805fd23fe4cf9d9764afae8cd71"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
default (at file:///home/opam/opam-repository):
[INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)
2025-05-09 16:49.50 ---> saved as "d0c9aa994fe92aa4b0353995147aa26e0e9543d1f5e88ca34ed2ca3d9fd63257"
/home/opam: (run (network host)
(shell "opam depext -u || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
The following command needs to be run through "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 (1277 kB/s)
Reading package lists...
# OS package update successful
2025-05-09 16:49.52 ---> saved as "52f5db5539f2dba3f8b79765bea00c8580f457504a1577e594f6c91d27711ace"
/home/opam: (run (shell "opam pin add -k version -yn nanoev-picos.0.1 0.1"))
nanoev-picos is now pinned to version 0.1
2025-05-09 16:49.52 ---> saved as "44bfae2d44c02714a932e91d94fc396b8231d3c4dd68c6e4be99c2c5a51fa51a"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam depext nanoev-picos.0.1 && opam reinstall nanoev-picos.0.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-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\" != 'nanoev-picos.0.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
nanoev-picos.0.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
- install dune 3.18.2 [required by nanoev-picos]
- install thread-local-storage 0.2 [required by picos]
- install nanoev 0.1 [required by nanoev-picos]
- install multicore-magic 2.3.1 [required by picos_std]
- install iostream 0.3 [required by nanoev-picos]
- install backoff 0.1.1 [required by picos, picos_std]
- install picos 0.5.0 [required by nanoev-picos]
- install picos_std 0.5.0 [required by nanoev-picos]
- install nanoev-picos 0.1*
===== 9 to install =====
<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[backoff.0.1.1] found in cache
[dune.3.18.2] found in cache
[iostream.0.3] found in cache
[multicore-magic.2.3.1] found in cache
[nanoev.0.1] found in cache
[nanoev-picos.0.1] found in cache
[picos.0.5.0] found in cache
[picos_std.0.5.0] found in cache
[thread-local-storage.0.2] found in cache
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed dune.3.18.2
-> installed backoff.0.1.1
-> installed multicore-magic.2.3.1
-> installed iostream.0.3
-> installed nanoev.0.1
-> installed thread-local-storage.0.2
-> installed picos.0.5.0
-> installed picos_std.0.5.0
-> installed nanoev-picos.0.1
Done.
# Run eval $(opam env) to update the current shell environment
2025-05-09 16:50.36 ---> saved as "a42110cdc723de6b6cde2d7bcf923d60fc7e6e755df500a79db7c2cced45da40"
/home/opam: (run (network host)
(shell "(opam depext --with-test nanoev-picos.0.1 && opam reinstall --with-test nanoev-picos.0.1) || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
The following actions will be performed:
- recompile nanoev-picos 0.1*
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed nanoev-picos.0.1
-> installed nanoev-picos.0.1
Done.
# Run eval $(opam env) to update the current shell environment
2025-05-09 16:50.52 ---> saved as "a705b9fe56f04ff701e0aa92c35107b781b0c8ae5c97ccd77fd62f8e3d755609"
/home/opam: (run (shell "opam depext --with-test nanoev-picos.0.1 && opam reinstall --with-test --verbose nanoev-picos.0.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-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\" != 'nanoev-picos.0.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
The following actions will be performed:
- recompile nanoev-picos 0.1*
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/3: [nanoev-picos: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "nanoev-picos" "-j" "39" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/nanoev-picos.0.1)
-> compiled nanoev-picos.0.1
-> removed nanoev-picos.0.1
-> installed nanoev-picos.0.1
Done.
# Run eval $(opam env) to update the current shell environment
2025-05-09 16:51.06 ---> saved as "9a906faca2bb42d5609aad3b93bc3174af0a7daeb721a9630a8dd1db03f65a72"
Job succeeded
2025-05-09 16:51.13: Job succeeded