- github
- ocaml
- opam-repository
- 75eef3
- extras,opam-2.0-ocaml-5.3,yocaml.1.0.0,tests
(not at the head of any monitored branch or PR)
2025-02-28 11:21.24: New job: test yocaml.1.0.0, using opam 2.0
from https://github.com/ocaml/opam-repository.git#refs/pull/27506/head (75eef35b619bf9c3f461991842637fa9cca93c84)
on debian-12-ocaml-5.3/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/27506/head" && git reset --hard 75eef35b
git fetch origin master
git merge --no-edit c27f09fa9e7c90f754413780e15d13ba8c13d377
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-5.3@sha256:6434bcbbde140b05dae76dbfeb2fd716579c003b44f3df292eca16e85504ddfa
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 yocaml.1.0.0 1.0.0
RUN opam depext yocaml.1.0.0 && opam reinstall yocaml.1.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 "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'yocaml.1.0.0' && 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 yocaml.1.0.0 && opam reinstall --with-test yocaml.1.0.0) || true
RUN opam depext --with-test yocaml.1.0.0 && opam reinstall --with-test --verbose yocaml.1.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 "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'yocaml.1.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 .
2025-02-28 11:21.24: Using cache hint "ocaml/opam:debian-12-ocaml-5.3@sha256:6434bcbbde140b05dae76dbfeb2fd716579c003b44f3df292eca16e85504ddfa-yocaml.1.0.0-75eef35b619bf9c3f461991842637fa9cca93c84"
2025-02-28 11:21.24: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-5.3@sha256:6434bcbbde140b05dae76dbfeb2fd716579c003b44f3df292eca16e85504ddfa)
(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 yocaml.1.0.0 1.0.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam depext yocaml.1.0.0 && opam reinstall yocaml.1.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 \"\\\"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\" != 'yocaml.1.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 depext --with-test yocaml.1.0.0 && opam reinstall --with-test yocaml.1.0.0) || true"))
(run (shell "opam depext --with-test yocaml.1.0.0 && opam reinstall --with-test --verbose yocaml.1.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 \"\\\"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\" != 'yocaml.1.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"))
)
2025-02-28 11:21.24: Waiting for resource in pool OCluster
2025-02-28 11:27.19: Waiting for worker…
2025-02-28 11:30.09: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
Updating files: 88% (20052/22532)
Updating files: 89% (20054/22532)
Updating files: 90% (20279/22532)
Updating files: 91% (20505/22532)
Updating files: 92% (20730/22532)
Updating files: 93% (20955/22532)
Updating files: 94% (21181/22532)
Updating files: 95% (21406/22532)
Updating files: 96% (21631/22532)
Updating files: 97% (21857/22532)
Updating files: 98% (22082/22532)
Updating files: 99% (22307/22532)
Updating files: 100% (22532/22532)
Updating files: 100% (22532/22532), done.
HEAD is now at c27f09fa9e Merge pull request #27515 from xavierleroy/Xft
Merge made by the 'ort' strategy.
packages/preface/preface.1.1.0/opam | 46 ++++++++++++++++++++++
packages/yocaml/yocaml.1.0.0/opam | 2 +-
packages/yocaml_cmark/yocaml_cmark.1.0.0/opam | 2 +-
packages/yocaml_git/yocaml_git.1.0.0/opam | 2 +-
packages/yocaml_jingoo/yocaml_jingoo.1.0.0/opam | 2 +-
.../yocaml_markdown/yocaml_markdown.1.0.0/opam | 2 +-
.../yocaml_mustache/yocaml_mustache.1.0.0/opam | 2 +-
packages/yocaml_unix/yocaml_unix.1.0.0/opam | 2 +-
packages/yocaml_yaml/yocaml_yaml.1.0.0/opam | 2 +-
9 files changed, 54 insertions(+), 8 deletions(-)
create mode 100644 packages/preface/preface.1.1.0/opam
(from ocaml/opam:debian-12-ocaml-5.3@sha256:6434bcbbde140b05dae76dbfeb2fd716579c003b44f3df292eca16e85504ddfa)
2025-02-28 11:31.44 ---> using "23dae15f16843ab5902c5cce9dbc18fd61fe6dc052057f0ca063cfb82b8c6dd6" 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-02-28 11:31.44 ---> using "a70cd149d62e0245813909ab9f6b70cd9bcf5dda15f8bcfed71823558370d87d" 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 ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] synchronised from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from file:///home/opam/opam-repository
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-02-28 11:31.44 ---> using "2bc4bbe8c957b9878990d59a40b5e269277b59ff797aaac8bfa0c3d966c58be4" 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 (local), 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.3
2025-02-28 11:31.44 ---> using "d16cdacd80f742451995b692c92b746283ee5a87e6406c0bbbf8f19340233ad1" 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-02-28 11:31.44 ---> using "2d1cb9c37337c80f174691b69a29575308982ca8a3d5f479e286ba358070a79b" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-02-28 11:31.45 ---> using "8151e82b67a271078fcc401f9b42262a012149f7dc01bf03d213d58df928a4f5" from cache
/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-02-28 11:31.58 ---> saved as "52b3fa14b222d1c9bdc8d48d5e6627e5d87fabca292603de71cd3b472728943b"
/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 [246 kB]
Fetched 349 kB in 0s (976 kB/s)
Reading package lists...
# OS package update successful
2025-02-28 11:32.00 ---> saved as "01e704a3d86694de8926933569dc666923a3ad8cb83c4be1f5b71f32d9309693"
/home/opam: (run (shell "opam pin add -k version -yn yocaml.1.0.0 1.0.0"))
yocaml is now pinned to version 1.0.0
2025-02-28 11:32.03 ---> saved as "72867825e48d5599365e71556556d6226c9245a0388bc0d32ba34ec261020981"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam depext yocaml.1.0.0 && opam reinstall yocaml.1.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 \"\\\"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\" != 'yocaml.1.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"))
# 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.
yocaml.1.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
- install dune 3.17.2 [required by yocaml]
- install either 1.0.0 [required by preface]
- install preface 1.0.0 [required by yocaml]
- install yocaml 1.0.0*
===== 4 to install =====
<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[dune.3.17.2] found in cache
[either.1.0.0] found in cache
[preface.1.0.0] found in cache
[yocaml.1.0.0] found in cache
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed dune.3.17.2
-> installed either.1.0.0
-> installed preface.1.0.0
-> installed yocaml.1.0.0
Done.
# Run eval $(opam env) to update the current shell environment
2025-02-28 11:32.45 ---> saved as "4f5f2bf31f828ac94ead0a515e3023e7e5bd832dfb4c3e57a970f654c5627a61"
/home/opam: (run (network host)
(shell "(opam depext --with-test yocaml.1.0.0 && opam reinstall --with-test yocaml.1.0.0) || 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:
- install cmdliner 1.3.0 [required by alcotest]
- install seq base [required by re]
- install ocamlbuild 0.16.1 [required by fmt, astring, uuidm]
- install ocamlfind 1.9.8 [required by fmt, astring, uuidm]
- install stdlib-shims 0.3.0 [required by alcotest]
- install re 1.12.0 [required by alcotest]
- install topkg 1.0.7 [required by fmt, astring, uuidm]
- install uuidm 0.9.9 [required by alcotest]
- install fmt 0.9.0 [required by alcotest]
- install astring 0.8.5 [required by alcotest]
- install alcotest 1.0.1 [required by yocaml]
- recompile yocaml 1.0.0*
===== 11 to install | 1 to recompile =====
<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[alcotest.1.0.1] downloaded from https://github.com/mirage/alcotest/releases/download/1.0.1/alcotest-1.0.1.tbz
[astring.0.8.5] downloaded from https://erratique.ch/software/astring/releases/astring-0.8.5.tbz
[cmdliner.1.3.0] downloaded from https://erratique.ch/software/cmdliner/releases/cmdliner-1.3.0.tbz
[fmt.0.9.0] downloaded from https://erratique.ch/software/fmt/releases/fmt-0.9.0.tbz
[ocamlbuild.0.16.1] downloaded from https://github.com/ocaml/ocamlbuild/archive/refs/tags/0.16.1.tar.gz
[ocamlfind.1.9.8] downloaded from https://github.com/ocaml/ocamlfind/archive/refs/tags/findlib-1.9.8.tar.gz
[re.1.12.0] downloaded from https://github.com/ocaml/ocaml-re/releases/download/1.12.0/re-1.12.0.tbz
[seq.base/META.seq] downloaded from https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/seq/META.seq
[seq.base/seq.install] downloaded from https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/seq/seq.install
[stdlib-shims.0.3.0] downloaded from https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz
[topkg.1.0.7] downloaded from https://erratique.ch/software/topkg/releases/topkg-1.0.7.tbz
[uuidm.0.9.9] downloaded from https://erratique.ch/software/uuidm/releases/uuidm-0.9.9.tbz
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed seq.base
-> installed stdlib-shims.0.3.0
-> installed re.1.12.0
-> installed cmdliner.1.3.0
-> installed ocamlfind.1.9.8
-> removed yocaml.1.0.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.0.7
-> installed uuidm.0.9.9
-> installed fmt.0.9.0
-> installed astring.0.8.5
-> installed alcotest.1.0.1
-> installed yocaml.1.0.0
Done.
# Run eval $(opam env) to update the current shell environment
2025-02-28 11:33.20 ---> saved as "000a1f065b3fee2d204cc127c190e4e250b14054ddae9a069ba9ce10e004bafd"
/home/opam: (run (shell "opam depext --with-test yocaml.1.0.0 && opam reinstall --with-test --verbose yocaml.1.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 \"\\\"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\" != 'yocaml.1.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"))
# 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 yocaml 1.0.0*
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/3: [yocaml: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "yocaml" "-j" "39" (CWD=/home/opam/.opam/5.3/.opam-switch/build/yocaml.1.0.0)
Processing 1/3: [yocaml: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "yocaml" (CWD=/home/opam/.opam/5.3/.opam-switch/build/yocaml.1.0.0)
-> compiled yocaml.1.0.0
-> removed yocaml.1.0.0
-> installed yocaml.1.0.0
Done.
# Run eval $(opam env) to update the current shell environment
2025-02-28 11:33.36 ---> saved as "c1ff41625670fd67828b950943ba68b466e6c7368fcd6be06151cadcd416d195"
Job succeeded
2025-02-28 11:33.45: Job succeeded