- github
- ocaml
- opam-repository
- 279169
- distributions,opensuse-tumbleweed-ocaml-5.2,ocamlformat-rpc-lib.0.27.0,tests
(not at the head of any monitored branch or PR)
2024-11-29 15:19.42: New job: test ocamlformat-rpc-lib.0.27.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/26998/head (27916977327321391ddd0aadb9e4d7c2d461e743)
on opensuse-tumbleweed-ocaml-5.2/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/26998/head" && git reset --hard 27916977
git fetch origin master
git merge --no-edit 0b65c91e7650d82e2c12fe1f64a466d2c6954272
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-tumbleweed-ocaml-5.2@sha256:b727e1f5aee0c732e656ed17fd1951a1043b4a6a7246185714440623bb488180
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMSOLVERTIMEOUT="1000"
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 ocamlformat-rpc-lib.0.27.0 0.27.0
RUN opam reinstall ocamlformat-rpc-lib.0.27.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 "\"opensuse-tumbleweed\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocamlformat-rpc-lib.0.27.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 ocamlformat-rpc-lib.0.27.0) || true
RUN opam reinstall --with-test --verbose ocamlformat-rpc-lib.0.27.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 "\"opensuse-tumbleweed\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocamlformat-rpc-lib.0.27.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 .
2024-11-29 15:19.42: Using cache hint "ocaml/opam:opensuse-tumbleweed-ocaml-5.2@sha256:b727e1f5aee0c732e656ed17fd1951a1043b4a6a7246185714440623bb488180-ocamlformat-rpc-lib.0.27.0-27916977327321391ddd0aadb9e4d7c2d461e743"
2024-11-29 15:19.42: Using OBuilder spec:
((from ocaml/opam:opensuse-tumbleweed-ocaml-5.2@sha256:b727e1f5aee0c732e656ed17fd1951a1043b4a6a7246185714440623bb488180)
(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 "uname -rs && opam exec -- ocaml -version && opam --version"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMSOLVERTIMEOUT 1000)
(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 ocamlformat-rpc-lib.0.27.0 0.27.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocamlformat-rpc-lib.0.27.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 \"\\\"opensuse-tumbleweed\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocamlformat-rpc-lib.0.27.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 ocamlformat-rpc-lib.0.27.0) || true"))
(run (shell "opam reinstall --with-test --verbose ocamlformat-rpc-lib.0.27.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 \"\\\"opensuse-tumbleweed\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocamlformat-rpc-lib.0.27.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2024-11-29 15:19.42: Waiting for resource in pool OCluster
2024-11-29 15:23.32: Waiting for worker…
2024-11-29 15:27.42: Got resource from pool OCluster
Building on x86-bm-c12.sw.ocaml.org
All commits already cached
Updating files: 59% (19425/32803)
Updating files: 60% (19682/32803)
Updating files: 61% (20010/32803)
Updating files: 62% (20338/32803)
Updating files: 63% (20666/32803)
Updating files: 64% (20994/32803)
Updating files: 65% (21322/32803)
Updating files: 66% (21650/32803)
Updating files: 67% (21979/32803)
Updating files: 68% (22307/32803)
Updating files: 69% (22635/32803)
Updating files: 70% (22963/32803)
Updating files: 71% (23291/32803)
Updating files: 72% (23619/32803)
Updating files: 73% (23947/32803)
Updating files: 74% (24275/32803)
Updating files: 75% (24603/32803)
Updating files: 76% (24931/32803)
Updating files: 77% (25259/32803)
Updating files: 78% (25587/32803)
Updating files: 79% (25915/32803)
Updating files: 80% (26243/32803)
Updating files: 81% (26571/32803)
Updating files: 82% (26899/32803)
Updating files: 83% (27227/32803)
Updating files: 84% (27555/32803)
Updating files: 85% (27883/32803)
Updating files: 86% (28211/32803)
Updating files: 87% (28539/32803)
Updating files: 88% (28867/32803)
Updating files: 89% (29195/32803)
Updating files: 90% (29523/32803)
Updating files: 91% (29851/32803)
Updating files: 92% (30179/32803)
Updating files: 93% (30507/32803)
Updating files: 94% (30835/32803)
Updating files: 95% (31163/32803)
Updating files: 96% (31491/32803)
Updating files: 97% (31819/32803)
Updating files: 98% (32147/32803)
Updating files: 99% (32475/32803)
Updating files: 100% (32803/32803)
Updating files: 100% (32803/32803), done.
HEAD is now at 0b65c91e76 Merge pull request #26997 from hannesm/revive-rml
Updating 0b65c91e76..2791697732
Fast-forward
.../ocamlformat-lib/ocamlformat-lib.0.27.0/opam | 68 ++++++++++++++++++++++
.../ocamlformat-rpc-lib.0.27.0/opam | 49 ++++++++++++++++
packages/ocamlformat/ocamlformat.0.27.0/opam | 59 +++++++++++++++++++
3 files changed, 176 insertions(+)
create mode 100644 packages/ocamlformat-lib/ocamlformat-lib.0.27.0/opam
create mode 100644 packages/ocamlformat-rpc-lib/ocamlformat-rpc-lib.0.27.0/opam
create mode 100644 packages/ocamlformat/ocamlformat.0.27.0/opam
(from ocaml/opam:opensuse-tumbleweed-ocaml-5.2@sha256:b727e1f5aee0c732e656ed17fd1951a1043b4a6a7246185714440623bb488180)
2024-11-29 15:27.45 ---> using "369f8ab1cccb53b415c2ebd4728970100a25a7d9ab5363dc73c25c2001c4bbc2" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2024-11-29 15:27.45 ---> using "ec2d2c42b2d2a8cf65037fedb3ce1364e2df2396a36ecc853850f5f04a938f09" 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
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2024-11-29 15:27.45 ---> using "b366f691ddd279e4e6bf8d11950f67215bc30b648dd08644bb3233c7e0e54a78" from cache
/home/opam: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-126-generic
The OCaml toplevel, version 5.2.1
2.4.0~alpha1~dev
2024-11-29 15:27.45 ---> using "8ae5a158e19749028e40cdac0aa1ce244af61fbc419c7d5cc8f9657b76668183" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMSOLVERTIMEOUT 1000)
/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/"))
2024-11-29 15:27.45 ---> using "fda6f27743c49246c6c566b360ea69550e783dd53d55699da157e9490ba0d484" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2024-11-29 15:27.47 ---> using "3d2c81bca054c2525bcacd0c48840e04863f716a4b85b985d1c3a74f8abf613e" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2024-11-29 15:28.40 ---> saved as "98fbd8f1cfdfd06bff351c32755c1d1109d2ccaf51bb4be385c5c403d2c8e6d1"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Retrieving repository 'openSUSE-Tumbleweed-Non-Oss' metadata [.........done]
- Building repository 'openSUSE-Tumbleweed-Non-Oss' cache [....done]
- Retrieving repository 'openSUSE-Tumbleweed-Oss' metadata [.
- ...........
- .......done]
- Building repository 'openSUSE-Tumbleweed-Oss' cache [..
- ..done]
- Repository 'openSUSE-Tumbleweed-Update' is up to date.
- All repositories have been refreshed.
2024-11-29 15:28.51 ---> saved as "3ddc68764aca87af924136a9bd2029fd09b8bb5b8875134f861ba28df9a548e2"
/home/opam: (run (shell "opam pin add -k version -yn ocamlformat-rpc-lib.0.27.0 0.27.0"))
ocamlformat-rpc-lib is now pinned to version 0.27.0
2024-11-29 15:28.52 ---> saved as "e93dc4dc51911a38fbff8014444f2747ed191d96648cd38c91556e5a3ab4edc7"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocamlformat-rpc-lib.0.27.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 \"\\\"opensuse-tumbleweed\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocamlformat-rpc-lib.0.27.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocamlformat-rpc-lib.0.27.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 3 packages
- install csexp 1.5.2 [required by ocamlformat-rpc-lib]
- install dune 3.17.0 [required by ocamlformat-rpc-lib]
- install ocamlformat-rpc-lib 0.27.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.17.0 (cached)
-> retrieved ocamlformat-rpc-lib.0.27.0 (cached)
-> installed dune.3.17.0
-> installed csexp.1.5.2
-> installed ocamlformat-rpc-lib.0.27.0
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-29 15:29.35 ---> saved as "59e936316546a200bd19514a59825e66dc3266b0be473906633128802a690345"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test ocamlformat-rpc-lib.0.27.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile ocamlformat-rpc-lib 0.27.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed ocamlformat-rpc-lib.0.27.0
-> installed ocamlformat-rpc-lib.0.27.0
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-29 15:29.52 ---> saved as "903334420d54f6a813272e208e66a944692e698c2d6ef5df307870a1709d0676"
/home/opam: (run (shell "opam reinstall --with-test --verbose ocamlformat-rpc-lib.0.27.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 \"\\\"opensuse-tumbleweed\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocamlformat-rpc-lib.0.27.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 ocamlformat-rpc-lib 0.27.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [ocamlformat-rpc-lib: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ocamlformat-rpc-lib" "-j" "39" "@install" "@runtest" (CWD=/home/opam/.opam/5.2/.opam-switch/build/ocamlformat-rpc-lib.0.27.0)
-> compiled ocamlformat-rpc-lib.0.27.0
-> removed ocamlformat-rpc-lib.0.27.0
-> installed ocamlformat-rpc-lib.0.27.0
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-29 15:30.09 ---> saved as "bc4661c7bde69b04d524800249fd5a8af997d20f09e5ed0b10c3b1c8e718441c"
Job succeeded
2024-11-29 15:30.16: Job succeeded