Build:
- 0
2026-04-17 13:44.24: New job: test postgresql.5.4.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29738/head (dfb1c6fc854e912198791805b06908e51754726e)
on opensuse-15.6-ocaml-5.4/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/29738/head" && git reset --hard dfb1c6fc
git fetch origin master
git merge --no-edit e64203035b54812a6e33cfa9f390fd0f17c02e07
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:40e86c2b4445dd7c40b427d465672f4f0d7e5e6d40b5e43edf29b930a4cc6745
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 postgresql.5.4.0 5.4.0
RUN opam reinstall postgresql.5.4.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-15.6\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'postgresql.5.4.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 postgresql.5.4.0) || true
RUN opam reinstall --with-test --verbose postgresql.5.4.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-15.6\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'postgresql.5.4.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 .
2026-04-17 13:44.24: Using cache hint "ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:40e86c2b4445dd7c40b427d465672f4f0d7e5e6d40b5e43edf29b930a4cc6745-postgresql.5.4.0-dfb1c6fc854e912198791805b06908e51754726e"
2026-04-17 13:44.24: Using OBuilder spec:
((from ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:40e86c2b4445dd7c40b427d465672f4f0d7e5e6d40b5e43edf29b930a4cc6745)
(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 postgresql.5.4.0 5.4.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall postgresql.5.4.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-15.6\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'postgresql.5.4.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 postgresql.5.4.0) || true"))
(run (shell "opam reinstall --with-test --verbose postgresql.5.4.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-15.6\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'postgresql.5.4.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-04-17 13:44.24: Waiting for resource in pool OCluster
2026-04-17 13:44.24: Waiting for worker…
2026-04-17 13:44.24: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
HEAD is now at e64203035b Merge pull request #29696 from psafont/release-qcow-0.14.0
Updating e64203035b..dfb1c6fc85
Fast-forward
packages/postgresql/postgresql.5.4.0/opam | 46 +++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
create mode 100644 packages/postgresql/postgresql.5.4.0/opam
(from ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:40e86c2b4445dd7c40b427d465672f4f0d7e5e6d40b5e43edf29b930a4cc6745)
2026-04-17 13:44.48 ---> using "5a3680208c73beb3331771a2f7c7cfa44299220a0d1ff13e680cdae5b80bdaf8" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-17 13:44.48 ---> using "ce250c8fbe3dc9cb0015d2566d58e5b09f790a3e3c1e97b2213fa4c5cd787243" 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.
Continue? [Y/n] y
This 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.
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-17 13:44.48 ---> using "3326fb9f18848ad9b28891e07ba04b7b0edfeb36bfd235bff817b1d519db73ce" from cache
/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.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=opensuse-leap os-version=15.6
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.1
2026-04-17 13:44.48 ---> using "dc08cc83cd1dc451428dea69e6cba6a62669a6c3c78d30d1321d1e80dfa525e5" 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/"))
2026-04-17 13:44.48 ---> using "d83eacbb5196cbc8c8d06b68ed0b2e0c4b9d653f03c2e466c0fcac4b1326b002" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-17 13:44.53 ---> saved as "0ee668a7fa917e93def19e4acd8a9fbd41d7486c76834750632506e2d2525183"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
default (at file:///home/opam/opam-repository):
[WARNING] opam is out-of-date. Please consider updating it (https://opam.ocaml.org/doc/Install.html)
default (at file:///home/opam/opam-repository):
[INFO] opam 2.5.1 includes security fixes; please consider upgrading (https://opam.ocaml.org/doc/Install.html)
2026-04-17 13:45.12 ---> saved as "6d3d143882b863254390d2d00eb5cebade565eff81b460897f866cb418be7681"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Retrieving repository 'Update repository of openSUSE Backports' metadata [..
-
- Looking for gpg keys in repository Update repository of openSUSE Backports.
- gpgkey=http://download.opensuse.org/update/leap/15.6/backports/repodata/repomd.xml.key
- ......
- ....
- ....
- ....
- ...............done]
- Building repository 'Update repository of openSUSE Backports' cache [..
- ..done]
- Retrieving repository 'Update repository with updates from SUSE Linux Enterprise 15' metadata [..
- Looking for gpg keys in repository Update repository with updates from SUSE Linux Enterprise 15.
- gpgkey=http://download.opensuse.org/update/leap/15.6/sle/repodata/repomd.xml.key
- .....
- ....
- ....
- .............
- .................
- ..........
- ......
- ............done]
- Building repository 'Update repository with updates from SUSE Linux Enterprise 15' cache [..
- ..done]
- Retrieving repository 'Main Update Repository' metadata [.
- .
- Looking for gpg keys in repository Main Update Repository.
- gpgkey=http://download.opensuse.org/update/leap/15.6/oss/repodata/repomd.xml.key
- .....
- ....
- ....
- ....
- ............done]
- Building repository 'Main Update Repository' cache [..
- ..done]
- Retrieving repository 'Update Repository (Non-Oss)' metadata [..
- Looking for gpg keys in repository Update Repository (Non-Oss).
- gpgkey=http://download.opensuse.org/update/leap/15.6/non-oss/repodata/repomd.xml.key
- ...
- .....
- ....
- ....
- ............done]
- Building repository 'Update Repository (Non-Oss)' cache [....done]
- Repository 'Non-OSS Repository' is up to date.
- Repository 'Main Repository' is up to date.
- All repositories have been refreshed.
2026-04-17 13:46.04 ---> saved as "5b47f9bca03d3d1e20577dfec9798230762bf1ce5c0eed24063411e05e03b6a0"
/home/opam: (run (shell "opam pin add -k version -yn postgresql.5.4.0 5.4.0"))
postgresql is now pinned to version 5.4.0
2026-04-17 13:46.05 ---> saved as "a1b27094c1a2a4f34e136caa0d76b291d51bcbcad1ed0b8786fa046d97792934"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall postgresql.5.4.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-15.6\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'postgresql.5.4.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
postgresql.5.4.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 22 packages
- install astring 0.8.5 [required by fpath]
- 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 cstruct 6.2.0 [required by hex]
- install dune 3.22.2 [required by postgresql]
- install dune-compiledb 0.6.0 [required by postgresql]
- install dune-configurator 3.22.2 [required by postgresql]
- install ezjsonm 1.3.0 [required by dune-compiledb]
- install fmt 0.11.0 [required by cstruct]
- install fpath 0.7.3 [required by dune-compiledb]
- install hex 1.5.0 [required by ezjsonm]
- install jsonm 1.0.2 [required by ezjsonm]
- install num 1.6 [required by sexplib]
- install ocamlbuild 0.16.1 [required by fpath]
- install ocamlfind 1.9.8 [required by fpath]
- install parsexp v0.17.0 [required by sexplib]
- install postgresql 5.4.0 (pinned)
- install sexplib v0.17.0 [required by dune-compiledb]
- install sexplib0 v0.17.0 [required by dune-compiledb]
- install topkg 1.1.1 [required by fpath]
- install uutf 1.0.4 [required by ezjsonm]
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 glibc-locale-base jitterentropy-devel keyutils-devel krb5-devel libcom_err-devel libecpg6 libgcrypt-devel libgpg-error-devel libicu-suse65_1 libicu65_1-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 postgresql16 postgresql16-devel postgresql16-server postgresql16-server-devel readline-devel xz-devel
-
- 37 new packages to install.
-
- Package download size: 34.2 MiB
-
- Package install size change:
- | 309.7 MiB required by packages that will be installed
- 309.7 MiB | - 0 B released by packages that will be removed
-
- Backend: classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Retrieving: keyutils-devel-1.6.3-5.6.1.x86_64 (Main Repository) (1/37), 13.8 KiB
- Retrieving: keyutils-devel-1.6.3-5.6.1.x86_64.rpm [..
- ....
- ....
- ....done]
- Retrieving: libgpg-error-devel-1.47-150600.1.3.x86_64 (Main Repository) (2/37), 93.8 KiB
- Retrieving: libgpg-error-devel-1.47-150600.1.3.x86_64.rpm [.done]
- Retrieving: libpcre2-16-0-10.42-150600.1.26.x86_64 (Main Repository) (3/37), 282.8 KiB
- Retrieving: libpcre2-16-0-10.42-150600.1.26.x86_64.rpm [.
- done]
- Retrieving: libpcre2-32-0-10.42-150600.1.26.x86_64 (Main Repository) (4/37), 269.6 KiB
- Retrieving: libpcre2-32-0-10.42-150600.1.26.x86_64.rpm [.done]
- Retrieving: libpcre2-posix3-10.42-150600.1.26.x86_64 (Main Repository) (5/37), 30.1 KiB
- Retrieving: libpcre2-posix3-10.42-150600.1.26.x86_64.rpm [.done]
- Retrieving: libsepol-devel-3.5-150600.1.49.x86_64 (Main Repository) (6/37), 46.5 KiB
- Retrieving: libsepol-devel-3.5-150600.1.49.x86_64.rpm [.done]
- Retrieving: libverto-devel-0.2.6-3.20.x86_64 (Main Repository) (7/37), 14.4 KiB
- Retrieving: libverto-devel-0.2.6-3.20.x86_64.rpm [.done]
- Retrieving: pcre2-devel-10.42-150600.1.26.x86_64 (Main Repository) (8/37), 275.7 KiB
- Retrieving: pcre2-devel-10.42-150600.1.26.x86_64.rpm [.done]
- Retrieving: glibc-locale-base-2.38-150600.14.46.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (9/37), 1.4 MiB
- Retrieving: glibc-locale-base-2.38-150600.14.46.1.x86_64.rpm [....
- ....
- ....
- ..not found]
- Retrieving: glibc-locale-base-2.38-150600.14.46.1.x86_64.rpm [.not found]
- Retrieving: glibc-locale-base-2.38-150600.14.46.1.x86_64.rpm [..done (556.2 KiB/s)]
- Retrieving: jitterentropy-devel-3.4.1-150000.1.12.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (10/37), 29.5 KiB
- Retrieving: jitterentropy-devel-3.4.1-150000.1.12.1.x86_64.rpm [.done]
- Retrieving: libcom_err-devel-1.47.0-150600.4.6.2.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (11/37), 39.6 KiB
- Retrieving: libcom_err-devel-1.47.0-150600.4.6.2.x86_64.rpm [.not found]
- Retrieving: libcom_err-devel-1.47.0-150600.4.6.2.x86_64.rpm [.not found]
- Retrieving: libcom_err-devel-1.47.0-150600.4.6.2.x86_64.rpm [..done (27.6 KiB/s)]
- Retrieving: libicu65_1-ledata-65.1-150200.4.15.1.noarch (Update repository with updates from SUSE Linux Enterprise 15) (12/37), 6.5 MiB
- Retrieving: libicu65_1-ledata-65.1-150200.4.15.1.noarch.rpm [.not found]
- Retrieving: libicu65_1-ledata-65.1-150200.4.15.1.noarch.rpm [.not found]
- Retrieving: libicu65_1-ledata-65.1-150200.4.15.1.noarch.rpm [...
- .....done (6.3 MiB/s)]
- Retrieving: libpq5-18.3-150600.13.8.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (13/37), 275.6 KiB
- Retrieving: libpq5-18.3-150600.13.8.1.x86_64.rpm [.not found]
- Retrieving: libpq5-18.3-150600.13.8.1.x86_64.rpm [.not found]
- Retrieving: libpq5-18.3-150600.13.8.1.x86_64.rpm [.done]
- Retrieving: libxml2-tools-2.10.3-150500.5.38.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (14/37), 76.7 KiB
- Retrieving: libxml2-tools-2.10.3-150500.5.38.1.x86_64.rpm [.not found]
- Retrieving: libxml2-tools-2.10.3-150500.5.38.1.x86_64.rpm [.not found]
- Retrieving: libxml2-tools-2.10.3-150500.5.38.1.x86_64.rpm [.done]
- Retrieving: libxslt1-1.1.34-150400.3.16.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (15/37), 145.5 KiB
- Retrieving: libxslt1-1.1.34-150400.3.16.1.x86_64.rpm [.not found]
- Retrieving: libxslt1-1.1.34-150400.3.16.1.x86_64.rpm [.not found]
- Retrieving: libxslt1-1.1.34-150400.3.16.1.x86_64.rpm [.done]
- Retrieving: pam-devel-1.3.0-150000.6.86.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (16/37), 83.4 KiB
- Retrieving: pam-devel-1.3.0-150000.6.86.1.x86_64.rpm [.not found]
- Retrieving: pam-devel-1.3.0-150000.6.86.1.x86_64.rpm [.not found]
- Retrieving: pam-devel-1.3.0-150000.6.86.1.x86_64.rpm [.
- done]
- Retrieving: readline-devel-7.0-150400.27.6.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (17/37), 48.3 KiB
- Retrieving: readline-devel-7.0-150400.27.6.1.x86_64.rpm [.not found]
- Retrieving: readline-devel-7.0-150400.27.6.1.x86_64.rpm [.not found]
- Retrieving: readline-devel-7.0-150400.27.6.1.x86_64.rpm [.done]
- Retrieving: xz-devel-5.4.1-150600.3.3.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (18/37), 73.7 KiB
- Retrieving: xz-devel-5.4.1-150600.3.3.1.x86_64.rpm [.not found]
- Retrieving: xz-devel-5.4.1-150600.3.3.1.x86_64.rpm [.not found]
- Retrieving: xz-devel-5.4.1-150600.3.3.1.x86_64.rpm [.done]
- Retrieving: libselinux-devel-3.5-150600.3.3.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (19/37), 120.3 KiB
- Retrieving: libselinux-devel-3.5-150600.3.3.1.x86_64.rpm [.not found]
- Retrieving: libselinux-devel-3.5-150600.3.3.1.x86_64.rpm [.not found]
- Retrieving: libselinux-devel-3.5-150600.3.3.1.x86_64.rpm [.done]
- Retrieving: glibc-locale-2.38-150600.14.46.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (20/37), 12.0 MiB
- Retrieving: glibc-locale-2.38-150600.14.46.1.x86_64.rpm [.not found]
- Retrieving: glibc-locale-2.38-150600.14.46.1.x86_64.rpm [.not found]
- Retrieving: glibc-locale-2.38-150600.14.46.1.x86_64.rpm [......
- .........done (5.7 MiB/s)]
- Retrieving: libopenssl-3-devel-3.1.4-150600.5.45.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (21/37), 379.6 KiB
- Retrieving: libopenssl-3-devel-3.1.4-150600.5.45.1.x86_64.rpm [.not found]
- Retrieving: libopenssl-3-devel-3.1.4-150600.5.45.1.x86_64.rpm [.not found]
- Retrieving: libopenssl-3-devel-3.1.4-150600.5.45.1.x86_64.rpm [..done (379.6 KiB/s)]
- Retrieving: libgcrypt-devel-1.10.3-150600.3.9.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (22/37), 190.4 KiB
- Retrieving: libgcrypt-devel-1.10.3-150600.3.9.1.x86_64.rpm [.not found]
- Retrieving: libgcrypt-devel-1.10.3-150600.3.9.1.x86_64.rpm [.not found]
- Retrieving: libgcrypt-devel-1.10.3-150600.3.9.1.x86_64.rpm [.done]
- Retrieving: krb5-devel-1.20.1-150600.11.14.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (23/37), 166.9 KiB
- Retrieving: krb5-devel-1.20.1-150600.11.14.1.x86_64.rpm [.not found]
- Retrieving: krb5-devel-1.20.1-150600.11.14.1.x86_64.rpm [.not found]
- Retrieving: krb5-devel-1.20.1-150600.11.14.1.x86_64.rpm [.done]
- Retrieving: libicu-suse65_1-65.1-150200.4.15.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (24/37), 1.6 MiB
- Retrieving: libicu-suse65_1-65.1-150200.4.15.1.x86_64.rpm [.not found]
- Retrieving: libicu-suse65_1-65.1-150200.4.15.1.x86_64.rpm [.not found]
- Retrieving: libicu-suse65_1-65.1-150200.4.15.1.x86_64.rpm [...done (1.2 MiB/s)]
- Retrieving: postgresql-18-150600.17.9.1.noarch (Update repository with updates from SUSE Linux Enterprise 15) (25/37), 18.4 KiB
- Retrieving: postgresql-18-150600.17.9.1.noarch.rpm [.not found]
- Retrieving: postgresql-18-150600.17.9.1.noarch.rpm [.not found]
- Retrieving: postgresql-18-150600.17.9.1.noarch.rpm [.done]
- Retrieving: postgresql16-16.13-150600.16.30.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (26/37), 1.9 MiB
- Retrieving: postgresql16-16.13-150600.16.30.1.x86_64.rpm [.not found]
- Retrieving: postgresql16-16.13-150600.16.30.1.x86_64.rpm [.not found]
- Retrieving: postgresql16-16.13-150600.16.30.1.x86_64.rpm [.
- ..done (1.1 MiB/s)]
- Retrieving: libecpg6-18.3-150600.13.8.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (27/37), 113.8 KiB
- Retrieving: libecpg6-18.3-150600.13.8.1.x86_64.rpm [.not found]
- Retrieving: libecpg6-18.3-150600.13.8.1.x86_64.rpm [.not found]
- Retrieving: libecpg6-18.3-150600.13.8.1.x86_64.rpm [.done]
- Retrieving: libxslt-tools-1.1.34-150400.3.16.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (28/37), 54.2 KiB
- Retrieving: libxslt-tools-1.1.34-150400.3.16.1.x86_64.rpm [.not found]
- Retrieving: libxslt-tools-1.1.34-150400.3.16.1.x86_64.rpm [.not found]
- Retrieving: libxslt-tools-1.1.34-150400.3.16.1.x86_64.rpm [.done]
- Retrieving: libxml2-devel-2.10.3-150500.5.38.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (29/37), 119.7 KiB
- Retrieving: libxml2-devel-2.10.3-150500.5.38.1.x86_64.rpm [.not found]
- Retrieving: libxml2-devel-2.10.3-150500.5.38.1.x86_64.rpm [.not found]
- Retrieving: libxml2-devel-2.10.3-150500.5.38.1.x86_64.rpm [.done]
- Retrieving: postgresql-server-18-150600.17.9.1.noarch (Update repository with updates from SUSE Linux Enterprise 15) (30/37), 24.4 KiB
- Retrieving: postgresql-server-18-150600.17.9.1.noarch.rpm [.not found]
- Retrieving: postgresql-server-18-150600.17.9.1.noarch.rpm [.not found]
- Retrieving: postgresql-server-18-150600.17.9.1.noarch.rpm [.done]
- Retrieving: postgresql16-server-16.13-150600.16.30.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (31/37), 5.5 MiB
- Retrieving: postgresql16-server-16.13-150600.16.30.1.x86_64.rpm [.not found]
- Retrieving: postgresql16-server-16.13-150600.16.30.1.x86_64.rpm [.not found]
- Retrieving: postgresql16-server-16.13-150600.16.30.1.x86_64.rpm [...
- .....done (5.1 MiB/s)]
- Retrieving: libxslt-devel-1.1.34-150400.3.16.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (32/37), 230.3 KiB
- Retrieving: libxslt-devel-1.1.34-150400.3.16.1.x86_64.rpm [.not found]
- Retrieving: libxslt-devel-1.1.34-150400.3.16.1.x86_64.rpm [.not found]
- Retrieving: libxslt-devel-1.1.34-150400.3.16.1.x86_64.rpm [.done]
- Retrieving: libopenssl-devel-3.1.4-150600.2.1.noarch (Main Repository) (33/37), 26.6 KiB
- Retrieving: libopenssl-devel-3.1.4-150600.2.1.noarch.rpm [.done]
- Retrieving: postgresql16-devel-16.13-150600.16.30.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (34/37), 296.7 KiB
- Retrieving: postgresql16-devel-16.13-150600.16.30.1.x86_64.rpm [.not found]
- Retrieving: postgresql16-devel-16.13-150600.16.30.1.x86_64.rpm [.not found]
- Retrieving: postgresql16-devel-16.13-150600.16.30.1.x86_64.rpm [.done]
- Retrieving: postgresql-devel-18-150600.17.9.1.noarch (Update repository with updates from SUSE Linux Enterprise 15) (35/37), 15.7 KiB
- Retrieving: postgresql-devel-18-150600.17.9.1.noarch.rpm [.not found]
- Retrieving: postgresql-devel-18-150600.17.9.1.noarch.rpm [.not found]
- Retrieving: postgresql-devel-18-150600.17.9.1.noarch.rpm [.done]
- Retrieving: postgresql-server-devel-18-150600.17.9.1.noarch (Update repository with updates from SUSE Linux Enterprise 15) (36/37), 16.2 KiB
- Retrieving: postgresql-server-devel-18-150600.17.9.1.noarch.rpm [.not found]
- Retrieving: postgresql-server-devel-18-150600.17.9.1.noarch.rpm [.not found]
- Retrieving: postgresql-server-devel-18-150600.17.9.1.noarch.rpm [.done]
- Retrieving: postgresql16-server-devel-16.13-150600.16.30.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (37/37), 1.7 MiB
- Retrieving: postgresql16-server-devel-16.13-150600.16.30.1.x86_64.rpm [.not found]
- Retrieving: postgresql16-server-devel-16.13-150600.16.30.1.x86_64.rpm [.not found]
- Retrieving: postgresql16-server-devel-16.13-150600.16.30.1.x86_64.rpm [.
- ..done (1.3 MiB/s)]
-
- Checking for file conflicts: [....done]
- ( 1/37) Installing: keyutils-devel-1.6.3-5.6.1.x86_64 [..done]
- ( 2/37) Installing: libgpg-error-devel-1.47-150600.1.3.x86_64 [..done]
- ( 3/37) Installing: libpcre2-16-0-10.42-150600.1.26.x86_64 [..done]
- ( 4/37) Installing: libpcre2-32-0-10.42-150600.1.26.x86_64 [..done]
- ( 5/37) Installing: libpcre2-posix3-10.42-150600.1.26.x86_64 [..done]
- ( 6/37) Installing: libsepol-devel-3.5-150600.1.49.x86_64 [..done]
- ( 7/37) Installing: libverto-devel-0.2.6-3.20.x86_64 [..done]
- ( 8/37) Installing: pcre2-devel-10.42-150600.1.26.x86_64 [..done]
- ( 9/37) Installing: glibc-locale-base-2.38-150600.14.46.1.x86_64 [..
- ..done]
- (10/37) Installing: jitterentropy-devel-3.4.1-150000.1.12.1.x86_64 [..done]
- (11/37) Installing: libcom_err-devel-1.47.0-150600.4.6.2.x86_64 [..done]
- (12/37) Installing: libicu65_1-ledata-65.1-150200.4.15.1.noarch [........
- ...done]
- (13/37) Installing: libpq5-18.3-150600.13.8.1.x86_64 [..done]
- (14/37) Installing: libxml2-tools-2.10.3-150500.5.38.1.x86_64 [..done]
- (15/37) Installing: libxslt1-1.1.34-150400.3.16.1.x86_64 [..done]
- (16/37) Installing: pam-devel-1.3.0-150000.6.86.1.x86_64 [..done]
- (17/37) Installing: readline-devel-7.0-150400.27.6.1.x86_64 [..done]
- (18/37) Installing: xz-devel-5.4.1-150600.3.3.1.x86_64 [..done]
- (19/37) Installing: libselinux-devel-3.5-150600.3.3.1.x86_64 [..done]
- (20/37) Installing: glibc-locale-2.38-150600.14.46.1.x86_64 [....
- ..........
- ..........
- ..........
- ..........done]
- (21/37) Installing: libopenssl-3-devel-3.1.4-150600.5.45.1.x86_64 [.
- .done]
- (22/37) Installing: libgcrypt-devel-1.10.3-150600.3.9.1.x86_64 [..done]
- (23/37) Installing: krb5-devel-1.20.1-150600.11.14.1.x86_64 [..done]
- (24/37) Installing: libicu-suse65_1-65.1-150200.4.15.1.x86_64 [....done]
- (25/37) Installing: postgresql-18-150600.17.9.1.noarch [..done]
- (26/37) Installing: postgresql16-16.13-150600.16.30.1.x86_64 [.....done]
- (27/37) Installing: libecpg6-18.3-150600.13.8.1.x86_64 [.
- .done]
- (28/37) Installing: libxslt-tools-1.1.34-150400.3.16.1.x86_64 [..done]
- (29/37) Installing: libxml2-devel-2.10.3-150500.5.38.1.x86_64 [..done]
- (30/37) Installing: postgresql-server-18-150600.17.9.1.noarch [..
- /usr/sbin/useradd -r -c PostgreSQL Server -d /var/lib/pgsql -U postgres -s /bin/bash
- Updating /etc/sysconfig/postgresql ...
- System has not been booted with systemd as init system (PID 1). Can't operate.
- Failed to connect to bus: Host is down
- done]
- (31/37) Installing: postgresql16-server-16.13-150600.16.30.1.x86_64 [........
- .done]
- (32/37) Installing: libxslt-devel-1.1.34-150400.3.16.1.x86_64 [..done]
- (33/37) Installing: libopenssl-devel-3.1.4-150600.2.1.noarch [..done]
- (34/37) Installing: postgresql16-devel-16.13-150600.16.30.1.x86_64 [..done]
- (35/37) Installing: postgresql-devel-18-150600.17.9.1.noarch [..done]
- (36/37) Installing: postgresql-server-devel-18-150600.17.9.1.noarch [..done]
- (37/37) Installing: postgresql16-server-devel-16.13-150600.16.30.1.x86_64 [.....done]
- Running post-transaction scripts [...done]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-pkg-config.4
-> retrieved cstruct.6.2.0 (cached)
-> installed conf-postgresql.2
-> retrieved dune.3.22.2, dune-configurator.3.22.2 (cached)
-> retrieved dune-compiledb.0.6.0 (cached)
-> retrieved ezjsonm.1.3.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved hex.1.5.0 (cached)
-> retrieved jsonm.1.0.2 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved parsexp.v0.17.0 (cached)
-> retrieved postgresql.5.4.0 (cached)
-> retrieved sexplib.v0.17.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uutf.1.0.4 (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed dune.3.22.2
-> installed csexp.1.5.2
-> installed cstruct.6.2.0
-> installed sexplib0.v0.17.0
-> installed hex.1.5.0
-> installed ezjsonm.1.3.0
-> installed parsexp.v0.17.0
-> installed dune-configurator.3.22.2
-> installed sexplib.v0.17.0
-> installed dune-compiledb.0.6.0
-> installed postgresql.5.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-17 13:47.16 ---> saved as "58f702563f5119fd5acbd9b1261bbaeac02655717bea3d514183cc79a141edf4"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test postgresql.5.4.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile postgresql 5.4.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed postgresql.5.4.0
-> installed postgresql.5.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-17 13:47.20 ---> saved as "e4d3913fff9fe929ba2853a690055d282d1436f53e0b42d0c521efc74619a79d"
/home/opam: (run (shell "opam reinstall --with-test --verbose postgresql.5.4.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-15.6\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'postgresql.5.4.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 postgresql 5.4.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [postgresql: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "postgresql" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/postgresql.5.4.0)
-> compiled postgresql.5.4.0
-> removed postgresql.5.4.0
-> installed postgresql.5.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-17 13:47.24 ---> saved as "9841260b126a6a5fa7cef3a54c3833f064b68ef06df45692f4b66e5f032c5382"
Job succeeded
2026-04-17 13:47.30: Job succeeded