- github
- ocaml
- opam-repository
- 75eef3
- extras,opam-2.0-ocaml-4.14,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-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/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-4.14@sha256:74114e6518f67eaaca9dfbd3a0a8e27123f8607d1ac62b00e945d9c187c96098
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-4.14@sha256:74114e6518f67eaaca9dfbd3a0a8e27123f8607d1ac62b00e945d9c187c96098-yocaml.1.0.0-75eef35b619bf9c3f461991842637fa9cca93c84"
2025-02-28 11:21.24: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:74114e6518f67eaaca9dfbd3a0a8e27123f8607d1ac62b00e945d9c187c96098)
(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:29.22: Waiting for worker…
2025-02-28 11:32.03: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
Updating files: 98% (22213/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-4.14@sha256:74114e6518f67eaaca9dfbd3a0a8e27123f8607d1ac62b00e945d9c187c96098)
2025-02-28 11:33.23 ---> using "fd8c1dcac8c3a6cd3ee8edd679de5f3384de62d6f587d449e00238111470ab75" 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:33.23 ---> using "fba0de1c590f9809687e343def5a9a04f5b3b6f36ea340e6ebbcbbda15de6aa4" 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:33.23 ---> using "8586f49ed0cf3ab83904740d6a203b59c45bff22f5b516d4247f953b80001f47" 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 4.14
2025-02-28 11:33.23 ---> using "d41ba78b08d7ec90d1f2c711a345d8702e099575dfe89b197560120617885139" 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:33.23 ---> using "ef3370465308269a4e181500ce3b5771fb4d2e5ff9b13748e245fee4b58ea113" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-02-28 11:33.24 ---> using "b02a47edbb30832d07902856b39a647ce6fc8960d7d2d583d83a332b30621a7a" 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:33.28 ---> saved as "a71ee16921bcaa7c78defbb2facf19e8e8f9f77a74adbdb9b84287f33b1ba5a3"
/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 (1108 kB/s)
Reading package lists...
# OS package update successful
2025-02-28 11:33.31 ---> saved as "307b03f7eebe430481a79fe3d4d03fc5136f072ab683c4c46cd59c3bd38aa126"
/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:33.32 ---> saved as "0a019ef0da323a2e9e13536e319d6c240b35021af04477d4993fee2bb9cafb8b"
/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:34.13 ---> saved as "9236ea975bd5cf1e1adad2f7a41a2b95714f3a759ac4adbb6a8d6be0b86e17db"
/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 cmdliner.1.3.0
-> installed re.1.12.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:34.50 ---> saved as "8b01aa4147b26ad0ef8bf6d7aeaa71fabd01fafe350e992b8cc07de3c033ac3f"
/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/4.14/.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/4.14/.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:35.08 ---> saved as "41fd119e9ec529cce968ababba44f83b7f27ec45be28f5ed58b2e5ae605a91bf"
Job succeeded
2025-02-28 11:35.15: Job succeeded