- github
- ocaml
- opam-repository
- f2ac03
- distributions,opensuse-tumbleweed-ocaml-4.14,herodotos.1.0,tests
(not at the head of any monitored branch or PR)
2025-02-10 15:04.42: New job: test herodotos.1.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/26111/head (f2ac03865dc59fa28dbaf9a4764dead36cf9406f)
on opensuse-tumbleweed-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/26111/head" && git reset --hard f2ac0386
git fetch origin master
git merge --no-edit 36f4d2d5ceb882a79fd7d7f956b490201da67226
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:e783fe71ab3e52ed120043d4d6c9725fc99232cde0c9e0a936c137597d360211
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /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 herodotos.1.0 1.0
RUN opam reinstall herodotos.1.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" != 'herodotos.1.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 herodotos.1.0) || true
RUN opam reinstall --with-test --verbose herodotos.1.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" != 'herodotos.1.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-10 15:04.42: Using cache hint "ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:e783fe71ab3e52ed120043d4d6c9725fc99232cde0c9e0a936c137597d360211-herodotos.1.0-f2ac03865dc59fa28dbaf9a4764dead36cf9406f"
2025-02-10 15:04.42: Using OBuilder spec:
((from ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:e783fe71ab3e52ed120043d4d6c9725fc99232cde0c9e0a936c137597d360211)
(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 "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 herodotos.1.0 1.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall herodotos.1.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\" != 'herodotos.1.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 herodotos.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose herodotos.1.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\" != 'herodotos.1.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-10 15:04.42: Waiting for resource in pool OCluster
2025-02-10 15:08.53: Waiting for worker…
2025-02-10 15:17.11: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files: 94% (22073/23304)
Updating files: 95% (22139/23304)
Updating files: 96% (22372/23304)
Updating files: 97% (22605/23304)
Updating files: 98% (22838/23304)
Updating files: 99% (23071/23304)
Updating files: 100% (23304/23304)
Updating files: 100% (23304/23304), done.
HEAD is now at 36f4d2d5ce Merge pull request #27169 from Frigory33/release-allegro5-0.1
Merge made by the 'ort' strategy.
packages/herodotos/herodotos.1.0/opam | 44 +++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
create mode 100644 packages/herodotos/herodotos.1.0/opam
(from ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:e783fe71ab3e52ed120043d4d6c9725fc99232cde0c9e0a936c137597d360211)
Unable to find image 'ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:e783fe71ab3e52ed120043d4d6c9725fc99232cde0c9e0a936c137597d360211' locally
docker.io/ocaml/opam@sha256:e783fe71ab3e52ed120043d4d6c9725fc99232cde0c9e0a936c137597d360211: Pulling from ocaml/opam
895202c8366d: Pulling fs layer
895202c8366d: Waiting
895202c8366d: Download complete
895202c8366d: Pull complete
Digest: sha256:e783fe71ab3e52ed120043d4d6c9725fc99232cde0c9e0a936c137597d360211
Status: Downloaded newer image for ocaml/opam@sha256:e783fe71ab3e52ed120043d4d6c9725fc99232cde0c9e0a936c137597d360211
2025-02-10 15:33.59 ---> saved as "ebe0ca896c9bb5e35a0fa00ae3921ff18998c8f854d933a1edea7651236f24cb"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-02-10 15:33.59 ---> saved as "6394fc4886c45e7f44e52c722ba125e48f6367c1132904b253eef9734ead8e5a"
/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 31 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=31 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] no changes from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from file:///home/opam/opam-repository
2025-02-10 15:35.07 ---> saved as "8cf0ad8dedf7da07e128d58f48e380d18e5e18e4768fbf5c5e998b40fbfc0d7f"
/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.4.0~alpha1~dev (747e73667ad9d054b0f736be205c0013e1bec087)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=opensuse-tumbleweed os-version=20250207
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (local), 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-02-10 15:35.08 ---> saved as "fbf5cc67c0401297fe9d85cf3ed5251947bef29483aae0de9660465e2e1b3971"
/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-10 15:35.21 ---> saved as "f31ec101eb59ee580a33969b86c999fb54652f593d30335e0f6db8f17c881902"
/home/opam: (copy (src .) (dst opam-repository/))
2025-02-10 15:35.43 ---> saved as "3ec18c9ca5b6246bae4689df49450ff9ef5ab0caa05953427a8f79f455258edc"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-02-10 15:36.34 ---> saved as "cc06ef0d7f883bd1e64b59f3d6cae5ebbdfd508376134290ef2b4332eed8c72e"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Repository 'openSUSE-Tumbleweed-Update' is up to date.
- 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]
- All repositories have been refreshed.
2025-02-10 15:37.29 ---> saved as "103f259bbf41b18ef8efc6205b406f6c0f59249ccb89b6923140b7ce5a7e9b0d"
/home/opam: (run (shell "opam pin add -k version -yn herodotos.1.0 1.0"))
herodotos is now pinned to version 1.0
2025-02-10 15:37.30 ---> saved as "e808fd8bdb2fb00558a8d0086f96314408c5377e417406eab86ab922610a80b2"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall herodotos.1.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\" != 'herodotos.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
herodotos.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
- install conf-pkg-config 4 [required by conf-postgresql]
- install conf-postgresql 2 [required by postgresql]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.17.2 [required by herodotos]
- install dune-configurator 3.17.2 [required by parmap, postgresql]
- install herodotos 1.0 (pinned)
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install parmap 1.2.5 [required by herodotos]
- install postgresql 5.1.3 [required by herodotos]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.35.0 [required by vlt]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install vlt 0.1 [required by herodotos]
The following system packages will first need to be installed:
postgresql-server-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run zypper to install them (may need root/sudo access)
2. Display the recommended zypper command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "zypper" "--non-interactive" "install" "postgresql-server-devel"
- Loading repository data...
- Reading installed packages...
- Resolving package dependencies...
-
- The following 37 NEW packages are going to be installed:
- glibc-locale jitterentropy-devel keyutils-devel krb5-devel libcom_err-devel libecpg6 libexslt0 libgcrypt-devel libgpg-error-devel libicu76 libicu76-ledata libopenssl-3-devel libopenssl-devel libpcre2-16-0 libpcre2-32-0 libpcre2-posix3 libpq5 libselinux-devel libsepol-devel libverto-devel libxml2-devel libxml2-tools libxslt-devel libxslt-tools libxslt1 pam-devel pcre2-devel postgresql postgresql-devel postgresql-server postgresql-server-devel postgresql17 postgresql17-devel postgresql17-server postgresql17-server-devel readline-devel xz-devel
-
- 37 new packages to install.
-
- Package download size: 42.5 MiB
-
- Package install size change:
- | 315.1 MiB required by packages that will be installed
- 315.1 MiB | - 0 B released by packages that will be removed
-
- Backend: classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Retrieving: glibc-locale-2.40-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (1/37), 17.9 MiB
- Retrieving: glibc-locale-2.40-3.1.x86_64.rpm [........
- .........
- ..........
- .........
- .........
- ..........
- .........
- .........
- ..........
- .......
- ....done (2.1 MiB/s)]
- Retrieving: jitterentropy-devel-3.4.1-4.3.x86_64 (openSUSE-Tumbleweed-Oss) (2/37), 29.7 KiB
- Retrieving: jitterentropy-devel-3.4.1-4.3.x86_64.rpm [...
- .....
- done (27.5 KiB/s)]
- Retrieving: keyutils-devel-1.6.3-7.3.x86_64 (openSUSE-Tumbleweed-Oss) (3/37), 13.1 KiB
- Retrieving: keyutils-devel-1.6.3-7.3.x86_64.rpm [..done]
- Retrieving: libcom_err-devel-1.47.0-4.4.x86_64 (openSUSE-Tumbleweed-Oss) (4/37), 22.5 KiB
- Retrieving: libcom_err-devel-1.47.0-4.4.x86_64.rpm [..done (2.4 KiB/s)]
- Retrieving: libgpg-error-devel-1.51-1.2.x86_64 (openSUSE-Tumbleweed-Oss) (5/37), 93.8 KiB
- Retrieving: libgpg-error-devel-1.51-1.2.x86_64.rpm [....
- done (75.0 KiB/s)]
- Retrieving: libicu76-ledata-76.1-1.2.noarch (openSUSE-Tumbleweed-Oss) (6/37), 8.5 MiB
- Retrieving: libicu76-ledata-76.1-1.2.noarch.rpm [.........
- ..........
- ..........
- .........
- .........
- .......
- .....
- .......
- ..........
- .....done (1.1 MiB/s)]
- Retrieving: libpcre2-16-0-10.44-1.2.x86_64 (openSUSE-Tumbleweed-Oss) (7/37), 247.3 KiB
- Retrieving: libpcre2-16-0-10.44-1.2.x86_64.rpm [...
- .done (1.8 MiB/s)]
- Retrieving: libpcre2-32-0-10.44-1.2.x86_64 (openSUSE-Tumbleweed-Oss) (8/37), 229.6 KiB
- Retrieving: libpcre2-32-0-10.44-1.2.x86_64.rpm [...done (2.0 MiB/s)]
- Retrieving: libpcre2-posix3-10.44-1.2.x86_64 (openSUSE-Tumbleweed-Oss) (9/37), 17.7 KiB
- Retrieving: libpcre2-posix3-10.44-1.2.x86_64.rpm [..done (17.7 KiB/s)]
- Retrieving: libpq5-17.2-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (10/37), 263.1 KiB
- Retrieving: libpq5-17.2-3.1.x86_64.rpm [..
- ...done (2.1 MiB/s)]
- Retrieving: libsepol-devel-3.7-1.2.x86_64 (openSUSE-Tumbleweed-Oss) (11/37), 41.5 KiB
- Retrieving: libsepol-devel-3.7-1.2.x86_64.rpm [..done (12.2 KiB/s)]
- Retrieving: libverto-devel-0.3.2-3.4.x86_64 (openSUSE-Tumbleweed-Oss) (12/37), 14.7 KiB
- Retrieving: libverto-devel-0.3.2-3.4.x86_64.rpm [..done (5.2 KiB/s)]
- Retrieving: libxml2-tools-2.13.5-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (13/37), 78.0 KiB
- Retrieving: libxml2-tools-2.13.5-2.1.x86_64.rpm [.
- .done (17.8 KiB/s)]
- Retrieving: libxslt1-1.1.42-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (14/37), 124.3 KiB
- Retrieving: libxslt1-1.1.42-1.1.x86_64.rpm [...done (709.8 KiB/s)]
- Retrieving: pam-devel-1.7.0-2.2.x86_64 (openSUSE-Tumbleweed-Oss) (15/37), 37.4 KiB
- Retrieving: pam-devel-1.7.0-2.2.x86_64.rpm [..done (3.9 KiB/s)]
- Retrieving: readline-devel-8.2.13-2.2.x86_64 (openSUSE-Tumbleweed-Oss) (16/37), 32.3 KiB
- Retrieving: readline-devel-8.2.13-2.2.x86_64.rpm [..done (17.8 KiB/s)]
- Retrieving: xz-devel-5.6.4-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (17/37), 87.6 KiB
- Retrieving: xz-devel-5.6.4-1.1.x86_64.rpm [...done (47.1 KiB/s)]
- Retrieving: libopenssl-3-devel-3.2.3-4.1.x86_64 (openSUSE-Tumbleweed-Oss) (18/37), 373.7 KiB
- Retrieving: libopenssl-3-devel-3.2.3-4.1.x86_64.rpm [.
- ...done (2.9 MiB/s)]
- Retrieving: libgcrypt-devel-1.11.0-3.2.x86_64 (openSUSE-Tumbleweed-Oss) (19/37), 178.0 KiB
- Retrieving: libgcrypt-devel-1.11.0-3.2.x86_64.rpm [...done (349.3 KiB/s)]
- Retrieving: libicu76-76.1-1.2.x86_64 (openSUSE-Tumbleweed-Oss) (20/37), 2.1 MiB
- Retrieving: libicu76-76.1-1.2.x86_64.rpm [...
- .........
- ..........
- .......
- .....done (601.2 KiB/s)]
- Retrieving: pcre2-devel-10.44-1.2.x86_64 (openSUSE-Tumbleweed-Oss) (21/37), 269.0 KiB
- Retrieving: pcre2-devel-10.44-1.2.x86_64.rpm [...
- .done (992.2 KiB/s)]
- Retrieving: postgresql-17-2.3.noarch (openSUSE-Tumbleweed-Oss) (22/37), 12.4 KiB
- Retrieving: postgresql-17-2.3.noarch.rpm [....done (12.4 KiB/s)]
- Retrieving: postgresql17-17.2-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (23/37), 2.1 MiB
- Retrieving: postgresql17-17.2-3.1.x86_64.rpm [..
- ......
- .......
- .........
- ........
- .......
- .........
- ........
- .......
- .........
- .........
- .......
- .done (231.8 KiB/s)]
- Retrieving: libecpg6-17.2-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (24/37), 110.2 KiB
- Retrieving: libecpg6-17.2-3.1.x86_64.rpm [....
- .done (1.0 MiB/s)]
- Retrieving: krb5-devel-1.21.3-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (25/37), 135.4 KiB
- Retrieving: krb5-devel-1.21.3-2.1.x86_64.rpm [...done (1020.7 KiB/s)]
- Retrieving: libexslt0-1.1.42-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (26/37), 53.3 KiB
- Retrieving: libexslt0-1.1.42-1.1.x86_64.rpm [.....
- done (47.1 KiB/s)]
- Retrieving: libxml2-devel-2.13.5-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (27/37), 116.5 KiB
- Retrieving: libxml2-devel-2.13.5-2.1.x86_64.rpm [...done (1.3 MiB/s)]
- Retrieving: libopenssl-devel-3.2.3-1.1.noarch (openSUSE-Tumbleweed-Oss) (28/37), 9.6 KiB
- Retrieving: libopenssl-devel-3.2.3-1.1.noarch.rpm [..done (2.5 KiB/s)]
- Retrieving: libselinux-devel-3.7-3.2.x86_64 (openSUSE-Tumbleweed-Oss) (29/37), 113.6 KiB
- Retrieving: libselinux-devel-3.7-3.2.x86_64.rpm [...done (594.9 KiB/s)]
- Retrieving: postgresql-server-17-2.3.noarch (openSUSE-Tumbleweed-Oss) (30/37), 16.6 KiB
- Retrieving: postgresql-server-17-2.3.noarch.rpm [..
- .done (16.4 KiB/s)]
- Retrieving: postgresql17-server-17.2-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (31/37), 6.8 MiB
- Retrieving: postgresql17-server-17.2-3.1.x86_64.rpm [..
- .......
- .........
- ..........
- ..done (2.5 MiB/s)]
- Retrieving: libxslt-tools-1.1.42-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (32/37), 56.0 KiB
- Retrieving: libxslt-tools-1.1.42-1.1.x86_64.rpm [...done (27.9 KiB/s)]
- Retrieving: postgresql17-devel-17.2-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (33/37), 320.2 KiB
- Retrieving: postgresql17-devel-17.2-3.1.x86_64.rpm [...done (1.5 MiB/s)]
- Retrieving: postgresql-devel-17-2.3.noarch (openSUSE-Tumbleweed-Oss) (34/37), 9.7 KiB
- Retrieving: postgresql-devel-17-2.3.noarch.rpm [.
- ..
- ..done (8.0 KiB/s)]
- Retrieving: libxslt-devel-1.1.42-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (35/37), 118.4 KiB
- Retrieving: libxslt-devel-1.1.42-1.1.x86_64.rpm [.
- ...done (766.6 KiB/s)]
- Retrieving: postgresql-server-devel-17-2.3.noarch (openSUSE-Tumbleweed-Oss) (36/37), 11.3 KiB
- Retrieving: postgresql-server-devel-17-2.3.noarch.rpm [.done]
- Retrieving: postgresql17-server-devel-17.2-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (37/37), 1.8 MiB
- Retrieving: postgresql17-server-devel-17.2-3.1.x86_64.rpm [.....
- .........
- ........
- ........
- .......
- .........
- .done (372.6 KiB/s)]
-
- Checking for file conflicts: [...done]
- ( 1/37) Installing: glibc-locale-2.40-3.1.x86_64 [......
- ..........
- ...done]
- ( 2/37) Installing: jitterentropy-devel-3.4.1-4.3.x86_64 [..done]
- ( 3/37) Installing: keyutils-devel-1.6.3-7.3.x86_64 [..done]
- ( 4/37) Installing: libcom_err-devel-1.47.0-4.4.x86_64 [..done]
- ( 5/37) Installing: libgpg-error-devel-1.51-1.2.x86_64 [..done]
- ( 6/37) Installing: libicu76-ledata-76.1-1.2.noarch [....done]
- ( 7/37) Installing: libpcre2-16-0-10.44-1.2.x86_64 [..done]
- ( 8/37) Installing: libpcre2-32-0-10.44-1.2.x86_64 [..done]
- ( 9/37) Installing: libpcre2-posix3-10.44-1.2.x86_64 [..done]
- (10/37) Installing: libpq5-17.2-3.1.x86_64 [.
- .done]
- (11/37) Installing: libsepol-devel-3.7-1.2.x86_64 [..done]
- (12/37) Installing: libverto-devel-0.3.2-3.4.x86_64 [..done]
- (13/37) Installing: libxml2-tools-2.13.5-2.1.x86_64 [..done]
- (14/37) Installing: libxslt1-1.1.42-1.1.x86_64 [..done]
- (15/37) Installing: pam-devel-1.7.0-2.2.x86_64 [..done]
- (16/37) Installing: readline-devel-8.2.13-2.2.x86_64 [..done]
- (17/37) Installing: xz-devel-5.6.4-1.1.x86_64 [..done]
- (18/37) Installing: libopenssl-3-devel-3.2.3-4.1.x86_64 [..done]
- (19/37) Installing: libgcrypt-devel-1.11.0-3.2.x86_64 [..done]
- (20/37) Installing: libicu76-76.1-1.2.x86_64 [..done]
- (21/37) Installing: pcre2-devel-10.44-1.2.x86_64 [..done]
- (22/37) Installing: postgresql-17-2.3.noarch [..done]
- (23/37) Installing: postgresql17-17.2-3.1.x86_64 [..done]
- (24/37) Installing: libecpg6-17.2-3.1.x86_64 [..done]
- (25/37) Installing: krb5-devel-1.21.3-2.1.x86_64 [..done]
- (26/37) Installing: libexslt0-1.1.42-1.1.x86_64 [..done]
- (27/37) Installing: libxml2-devel-2.13.5-2.1.x86_64 [..done]
- (28/37) Installing: libopenssl-devel-3.2.3-1.1.noarch [..done]
- (29/37) Installing: libselinux-devel-3.7-3.2.x86_64 [..done]
- (30/37) Installing: postgresql-server-17-2.3.noarch [..
- /usr/bin/systemd-sysusers --replace=/usr/lib/sysusers.d/postgresql-server.conf -
- Creating group 'systemd-journal' with GID 497.
- Creating group 'postgres' with GID 496.
- Creating user 'postgres' (PostgreSQL Server) with UID 496 and GID 496.
- Creating group 'systemd-coredump' with GID 495.
- Creating user 'systemd-coredump' (systemd Core Dumper) with UID 495 and GID 495.
- Updating /etc/sysconfig/postgresql ...
- done]
- (31/37) Installing: postgresql17-server-17.2-3.1.x86_64 [...
- .done]
- (32/37) Installing: libxslt-tools-1.1.42-1.1.x86_64 [..done]
- (33/37) Installing: postgresql17-devel-17.2-3.1.x86_64 [..done]
- (34/37) Installing: postgresql-devel-17-2.3.noarch [..done]
- (35/37) Installing: libxslt-devel-1.1.42-1.1.x86_64 [..done]
- (36/37) Installing: postgresql-server-devel-17-2.3.noarch [..done]
- (37/37) Installing: postgresql17-server-devel-17.2-3.1.x86_64 [...done]
- Running post-transaction scripts [...done]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> installed conf-pkg-config.4
-> installed conf-postgresql.2
-> retrieved dune.3.17.2, dune-configurator.3.17.2 (cached)
-> retrieved herodotos.1.0 (https://github.com/coccinelle/herodotos/archive/refs/tags/v1.0.tar.gz)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved parmap.1.2.5 (cached)
-> retrieved postgresql.5.1.3 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved vlt.0.1 (cached)
-> installed dune.3.17.2
-> installed ppx_derivers.1.2.1
-> installed csexp.1.5.2
-> installed ocaml-compiler-libs.v0.12.4
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed dune-configurator.3.17.2
-> installed parmap.1.2.5
-> installed postgresql.5.1.3
-> installed ppxlib.0.35.0
-> installed vlt.0.1
-> installed herodotos.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-10 15:39.37 ---> saved as "175d6a5ab3de71674c1caba80fc1ac79a76717d5e2055366c16456278cd17234"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test herodotos.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile herodotos 1.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved herodotos.1.0 (https://github.com/coccinelle/herodotos/archive/refs/tags/v1.0.tar.gz)
-> removed herodotos.1.0
-> installed herodotos.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-10 15:40.14 ---> saved as "33b792fe2189ce666e6c6e4e8fdc745607462129c7f12cb72d022749dc191b0e"
/home/opam: (run (shell "opam reinstall --with-test --verbose herodotos.1.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\" != 'herodotos.1.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 herodotos 1.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [herodotos.1.0: extract]
-> retrieved herodotos.1.0 (cached)
Processing 2/4: [herodotos: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "herodotos" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/herodotos.1.0)
-> compiled herodotos.1.0
-> removed herodotos.1.0
-> installed herodotos.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-10 15:40.26 ---> saved as "825a46aaa5c03efce3827bc155a977b5932c67e5d535478ab88f4c4c26758e40"
Job succeeded
2025-02-10 15:40.32: Job succeeded