- github
- ocaml
- opam-repository
- 4b172f
- distributions,centos-9-ocaml-5.4,curses.1.0.12,tests
(not at the head of any monitored branch or PR)
2026-04-02 22:05.53: New job: test curses.1.0.12, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29634/head (4b172f8fb04e73775fb03ade1369a3fe5802d19c)
on centos-9-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/29634/head" && git reset --hard 4b172f8f
git fetch origin master
git merge --no-edit c0deda526f99d43a05c065e9218404492897c64b
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-9-ocaml-5.4@sha256:a25c6cd4beca01e306bbc50a8fa3e27a36447e386260cbe06ebf9506351ab770
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 curses.1.0.12 1.0.12
RUN opam reinstall curses.1.0.12; \
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 "\"centos-9\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'curses.1.0.12' && 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 curses.1.0.12) || true
RUN opam reinstall --with-test --verbose curses.1.0.12; \
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 "\"centos-9\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'curses.1.0.12' && 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-02 22:05.53: Using cache hint "ocaml/opam:centos-9-ocaml-5.4@sha256:a25c6cd4beca01e306bbc50a8fa3e27a36447e386260cbe06ebf9506351ab770-curses.1.0.12-4b172f8fb04e73775fb03ade1369a3fe5802d19c"
2026-04-02 22:05.53: Using OBuilder spec:
((from ocaml/opam:centos-9-ocaml-5.4@sha256:a25c6cd4beca01e306bbc50a8fa3e27a36447e386260cbe06ebf9506351ab770)
(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 curses.1.0.12 1.0.12"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall curses.1.0.12;\
\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 \"\\\"centos-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'curses.1.0.12' && 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 curses.1.0.12) || true"))
(run (shell "opam reinstall --with-test --verbose curses.1.0.12;\
\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 \"\\\"centos-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'curses.1.0.12' && 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-02 22:05.53: Waiting for resource in pool OCluster
2026-04-02 22:05.54: Waiting for worker…
2026-04-02 22:05.54: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at c0deda526f Merge pull request #29625 from xvw/release-lunar-v1.0.0
Merge made by the 'ort' strategy.
packages/curses/curses.1.0.12/opam | 40 ++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
create mode 100644 packages/curses/curses.1.0.12/opam
(from ocaml/opam:centos-9-ocaml-5.4@sha256:a25c6cd4beca01e306bbc50a8fa3e27a36447e386260cbe06ebf9506351ab770)
2026-04-02 22:06.09 ---> using "95c77df4ee5bb877582288fdb5e08407b60c8c95d679a21b82ebca2e0d1cbb8e" 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-02 22:06.09 ---> using "3f59229e62bae98b0148fc2cfeed4aad1888ecb720b5c20eed6a9e0420addbea" 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 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 71 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=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-02 22:06.09 ---> using "0973a41147e12d469688fa21fdbf4a2047faf01905e85a0d432cc610a9a6de1d" 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=centos os-version=9
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# 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-02 22:06.09 ---> using "9227ba48c16ec67d480de362e4ca4929e55ecac05491e45427e7c14e46a9a730" 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-02 22:06.09 ---> using "b7f372364f67b592dffdf5ce9fc3553bb10a01c47c868e75d6fffb2b5dd5d00a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-02 22:06.17 ---> saved as "295ee639dc89a85d0c3738818b1ffa3d075e86148debdac8c8dd00720ecf2fc5"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-02 22:06.34 ---> saved as "93025db1d5022e718e2731d35c9734cb9ddb54c91499d098775541c70b6a7dcc"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 9 - BaseOS 43 kB/s | 14 kB 00:00
- CentOS Stream 9 - BaseOS 14 MB/s | 8.9 MB 00:00
- CentOS Stream 9 - AppStream 105 kB/s | 15 kB 00:00
- CentOS Stream 9 - AppStream 13 MB/s | 27 MB 00:02
- CentOS Stream 9 - CRB 98 kB/s | 14 kB 00:00
- CentOS Stream 9 - CRB 9.6 MB/s | 8.0 MB 00:00
- CentOS Stream 9 - Extras packages 114 kB/s | 16 kB 00:00
- Metadata cache created.
2026-04-02 22:06.49 ---> saved as "0ac2b1d258f6ab0bf8a5ea9d58f17fcc1f5a6149780b1603272a7a5055e52905"
/home/opam: (run (shell "opam pin add -k version -yn curses.1.0.12 1.0.12"))
curses is now pinned to version 1.0.12
2026-04-02 22:06.49 ---> saved as "2d8f4d631153fec5ad15f9b5bb17aff21b2133fcf8fb4133f83570fd3616f9ca"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall curses.1.0.12;\
\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 \"\\\"centos-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'curses.1.0.12' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
curses.1.0.12 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
- install conf-ncurses 1 [required by curses]
- install conf-pkg-config 4 [required by curses]
- install csexp 1.5.2 [required by dune-configurator]
- install curses 1.0.12 (pinned)
- install dune 3.22.0 [required by curses]
- install dune-configurator 3.22.0 [required by curses]
The following system packages will first need to be installed:
ncurses-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
2. Display the recommended yum 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 "yum" "install" "-y" "ncurses-devel"
- Last metadata expiration check: 0:00:04 ago on Thu Apr 2 22:06:48 2026.
- Dependencies resolved.
- ================================================================================
- Package Arch Version Repository Size
- ================================================================================
- Installing:
- ncurses-devel x86_64 6.2-12.20210508.el9 appstream 728 k
- Installing dependencies:
- ncurses-c++-libs x86_64 6.2-12.20210508.el9 appstream 37 k
-
- Transaction Summary
- ================================================================================
- Install 2 Packages
-
- Total download size: 766 k
- Installed size: 1.0 M
- Downloading Packages:
- (1/2): ncurses-c++-libs-6.2-12.20210508.el9.x86 301 kB/s | 37 kB 00:00
- (2/2): ncurses-devel-6.2-12.20210508.el9.x86_64 4.0 MB/s | 728 kB 00:00
- --------------------------------------------------------------------------------
- Total 2.2 MB/s | 766 kB 00:00
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
- Preparing : 1/1
- Installing : ncurses-c++-libs-6.2-12.20210508.el9.x86_64 1/2
- Installing : ncurses-devel-6.2-12.20210508.el9.x86_64 2/2
- Running scriptlet: ncurses-devel-6.2-12.20210508.el9.x86_64 2/2
- Verifying : ncurses-c++-libs-6.2-12.20210508.el9.x86_64 1/2
- Verifying : ncurses-devel-6.2-12.20210508.el9.x86_64 2/2
-
-
- Installed:
- ncurses-c++-libs-6.2-12.20210508.el9.x86_64
- ncurses-devel-6.2-12.20210508.el9.x86_64
-
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "ncurses-devel"
- ncurses-devel-6.2-12.20210508.el9.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> installed conf-pkg-config.4
-> retrieved curses.1.0.12 (cached)
-> installed conf-ncurses.1
-> retrieved dune.3.22.0, dune-configurator.3.22.0 (cached)
-> installed dune.3.22.0
-> installed csexp.1.5.2
-> installed dune-configurator.3.22.0
-> installed curses.1.0.12
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-02 22:07.25 ---> saved as "66f02642018a7b7d8da4c302ed7f48ac04326ba9e9224890133110c4a936c0ba"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test curses.1.0.12) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile curses 1.0.12 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed curses.1.0.12
-> installed curses.1.0.12
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-02 22:07.30 ---> saved as "ec22ac6ce135e0b4043b5341663d76f55825591e6751948da04716fdad391546"
/home/opam: (run (shell "opam reinstall --with-test --verbose curses.1.0.12;\
\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 \"\\\"centos-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'curses.1.0.12' && 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 curses 1.0.12 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [curses: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "curses" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/curses.1.0.12)
-> compiled curses.1.0.12
-> removed curses.1.0.12
-> installed curses.1.0.12
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-02 22:07.34 ---> saved as "9c544ed31fa78845c0f4d976b973976da681aeb0b563a4e7b9c106f53a5de6bd"
Job succeeded
2026-04-02 22:07.43: Job succeeded