(for PR #29128)
2025-12-23 22:12.44: New job: test posix-getopt.3.1.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29128/head (be6f5a2b2d3c046d757bfdb66968dd0064a03728)
on debian-testing-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/29128/head" && git reset --hard be6f5a2b
git fetch origin master
git merge --no-edit 173460ab354e0e6a17ee414264f348b06dee2d3d
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-testing-ocaml-4.14@sha256:ce1c6e69c3a77b0b48402bef44e2ee40e2ec024cdbf2626ae95fd52dc8e2f6d8
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 posix-getopt.3.1.0 3.1.0
RUN opam reinstall posix-getopt.3.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 "\"debian-testing\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'posix-getopt.3.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 posix-getopt.3.1.0) || true
RUN opam reinstall --with-test --verbose posix-getopt.3.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 "\"debian-testing\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'posix-getopt.3.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-12-23 22:12.44: Using cache hint "ocaml/opam:debian-testing-ocaml-4.14@sha256:ce1c6e69c3a77b0b48402bef44e2ee40e2ec024cdbf2626ae95fd52dc8e2f6d8-posix-getopt.3.1.0-be6f5a2b2d3c046d757bfdb66968dd0064a03728"
2025-12-23 22:12.44: Using OBuilder spec:
((from ocaml/opam:debian-testing-ocaml-4.14@sha256:ce1c6e69c3a77b0b48402bef44e2ee40e2ec024cdbf2626ae95fd52dc8e2f6d8)
(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 posix-getopt.3.1.0 3.1.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall posix-getopt.3.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 \"\\\"debian-testing\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'posix-getopt.3.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 posix-getopt.3.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose posix-getopt.3.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 \"\\\"debian-testing\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'posix-getopt.3.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-12-23 22:12.44: Waiting for resource in pool OCluster
2025-12-23 22:25.46: Waiting for worker…
2025-12-23 22:29.41: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
HEAD is now at 173460ab35 Merge pull request #29122 from craff/master
Updating 173460ab35..be6f5a2b2d
Fast-forward
packages/posix-base/posix-base.3.1.0/opam | 40 +++++++++++++++++++
packages/posix-bindings/posix-bindings.3.1.0/opam | 43 ++++++++++++++++++++
packages/posix-getopt/posix-getopt.3.1.0/opam | 46 ++++++++++++++++++++++
packages/posix-math2/posix-math2.3.1.0/opam | 40 +++++++++++++++++++
packages/posix-signal/posix-signal.3.1.0/opam | 42 ++++++++++++++++++++
.../posix-socket-unix/posix-socket-unix.3.1.0/opam | 43 ++++++++++++++++++++
packages/posix-socket/posix-socket.3.1.0/opam | 42 ++++++++++++++++++++
packages/posix-time2/posix-time2.3.1.0/opam | 43 ++++++++++++++++++++
packages/posix-types/posix-types.3.1.0/opam | 42 ++++++++++++++++++++
packages/posix-uname/posix-uname.3.1.0/opam | 41 +++++++++++++++++++
10 files changed, 422 insertions(+)
create mode 100644 packages/posix-base/posix-base.3.1.0/opam
create mode 100644 packages/posix-bindings/posix-bindings.3.1.0/opam
create mode 100644 packages/posix-getopt/posix-getopt.3.1.0/opam
create mode 100644 packages/posix-math2/posix-math2.3.1.0/opam
create mode 100644 packages/posix-signal/posix-signal.3.1.0/opam
create mode 100644 packages/posix-socket-unix/posix-socket-unix.3.1.0/opam
create mode 100644 packages/posix-socket/posix-socket.3.1.0/opam
create mode 100644 packages/posix-time2/posix-time2.3.1.0/opam
create mode 100644 packages/posix-types/posix-types.3.1.0/opam
create mode 100644 packages/posix-uname/posix-uname.3.1.0/opam
(from ocaml/opam:debian-testing-ocaml-4.14@sha256:ce1c6e69c3a77b0b48402bef44e2ee40e2ec024cdbf2626ae95fd52dc8e2f6d8)
Unable to find image 'ocaml/opam:debian-testing-ocaml-4.14@sha256:ce1c6e69c3a77b0b48402bef44e2ee40e2ec024cdbf2626ae95fd52dc8e2f6d8' locally
docker.io/ocaml/opam@sha256:ce1c6e69c3a77b0b48402bef44e2ee40e2ec024cdbf2626ae95fd52dc8e2f6d8: Pulling from ocaml/opam
d07e7493d306: Already exists
8bf0480b5e15: Pulling fs layer
a0dce05ca0b1: Pulling fs layer
c8c2dbf724c1: Pulling fs layer
d4a9dc7d9284: Pulling fs layer
4e462c5de445: Pulling fs layer
7634b1ed1a02: Pulling fs layer
d4a9dc7d9284: Waiting
0a3852cc77d6: Pulling fs layer
4e462c5de445: Waiting
7d12aed4ab4c: Pulling fs layer
7634b1ed1a02: Waiting
a2358f71921a: Pulling fs layer
0a3852cc77d6: Waiting
7d12aed4ab4c: Waiting
5132a5c1ca08: Pulling fs layer
a2358f71921a: Waiting
03f7a3c5125e: Pulling fs layer
5132a5c1ca08: Waiting
849ea4e499c7: Pulling fs layer
03f7a3c5125e: Waiting
b3330d7102c2: Pulling fs layer
849ea4e499c7: Waiting
6f27f4503d3e: Pulling fs layer
b3330d7102c2: Waiting
99452fc258c0: Pulling fs layer
74565ee39b6b: Pulling fs layer
99452fc258c0: Waiting
6f27f4503d3e: Waiting
ae1ad65c9e7e: Pulling fs layer
d928c195b82b: Pulling fs layer
41b1579e6aeb: Pulling fs layer
ae1ad65c9e7e: Waiting
d928c195b82b: Waiting
7efe4826e8ba: Pulling fs layer
41b1579e6aeb: Waiting
ec372fa40b0b: Pulling fs layer
4f4fb700ef54: Pulling fs layer
7efe4826e8ba: Waiting
ec372fa40b0b: Waiting
60a6ad607f09: Pulling fs layer
4f4fb700ef54: Waiting
dda892cb31d5: Pulling fs layer
60a6ad607f09: Waiting
5c4d8beba063: Pulling fs layer
dda892cb31d5: Waiting
ec7616d1d8da: Pulling fs layer
5c4d8beba063: Waiting
97003637474c: Pulling fs layer
5a0ba72b8a69: Pulling fs layer
ec7616d1d8da: Waiting
97003637474c: Waiting
659f0ddafc60: Pulling fs layer
5a0ba72b8a69: Waiting
f6f1f19a6011: Pulling fs layer
659f0ddafc60: Waiting
f6f1f19a6011: Waiting
7966a33b6d65: Pulling fs layer
901da0d19aaa: Pulling fs layer
c555f96df0da: Pulling fs layer
3986637b9bb4: Pulling fs layer
7966a33b6d65: Waiting
901da0d19aaa: Waiting
c555f96df0da: Waiting
01806c8d7fca: Pulling fs layer
3986637b9bb4: Waiting
770d48a2eac7: Pulling fs layer
bd913431be25: Pulling fs layer
504f9588b156: Pulling fs layer
01806c8d7fca: Waiting
770d48a2eac7: Waiting
bd913431be25: Waiting
8e9a5e655a8c: Pulling fs layer
4bbb46846b48: Pulling fs layer
504f9588b156: Waiting
479222344cd7: Pulling fs layer
8e9a5e655a8c: Waiting
4bbb46846b48: Waiting
0e194b215bb9: Pulling fs layer
479222344cd7: Waiting
5dbd28f6ebe3: Pulling fs layer
0e194b215bb9: Waiting
19f3722281a8: Pulling fs layer
5dbd28f6ebe3: Waiting
19f3722281a8: Waiting
a0dce05ca0b1: Verifying Checksum
a0dce05ca0b1: Download complete
8bf0480b5e15: Verifying Checksum
8bf0480b5e15: Download complete
8bf0480b5e15: Pull complete
a0dce05ca0b1: Pull complete
c8c2dbf724c1: Verifying Checksum
c8c2dbf724c1: Download complete
d4a9dc7d9284: Verifying Checksum
d4a9dc7d9284: Download complete
c8c2dbf724c1: Pull complete
0a3852cc77d6: Verifying Checksum
0a3852cc77d6: Download complete
7634b1ed1a02: Verifying Checksum
7634b1ed1a02: Download complete
d4a9dc7d9284: Pull complete
7d12aed4ab4c: Verifying Checksum
7d12aed4ab4c: Download complete
a2358f71921a: Verifying Checksum
a2358f71921a: Download complete
5132a5c1ca08: Verifying Checksum
5132a5c1ca08: Download complete
03f7a3c5125e: Verifying Checksum
03f7a3c5125e: Download complete
b3330d7102c2: Verifying Checksum
b3330d7102c2: Download complete
849ea4e499c7: Verifying Checksum
849ea4e499c7: Download complete
6f27f4503d3e: Verifying Checksum
6f27f4503d3e: Download complete
99452fc258c0: Verifying Checksum
99452fc258c0: Download complete
ae1ad65c9e7e: Verifying Checksum
ae1ad65c9e7e: Download complete
74565ee39b6b: Download complete
d928c195b82b: Verifying Checksum
d928c195b82b: Download complete
41b1579e6aeb: Download complete
7efe4826e8ba: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
ec372fa40b0b: Download complete
60a6ad607f09: Download complete
5c4d8beba063: Verifying Checksum
5c4d8beba063: Download complete
dda892cb31d5: Verifying Checksum
dda892cb31d5: Download complete
ec7616d1d8da: Verifying Checksum
ec7616d1d8da: Download complete
97003637474c: Download complete
5a0ba72b8a69: Verifying Checksum
5a0ba72b8a69: Download complete
659f0ddafc60: Download complete
f6f1f19a6011: Verifying Checksum
f6f1f19a6011: Download complete
7966a33b6d65: Verifying Checksum
7966a33b6d65: Download complete
901da0d19aaa: Verifying Checksum
901da0d19aaa: Download complete
c555f96df0da: Verifying Checksum
c555f96df0da: Download complete
3986637b9bb4: Verifying Checksum
3986637b9bb4: Download complete
770d48a2eac7: Verifying Checksum
770d48a2eac7: Download complete
bd913431be25: Verifying Checksum
bd913431be25: Download complete
504f9588b156: Verifying Checksum
504f9588b156: Download complete
8e9a5e655a8c: Verifying Checksum
8e9a5e655a8c: Download complete
4bbb46846b48: Download complete
479222344cd7: Verifying Checksum
479222344cd7: Download complete
0e194b215bb9: Download complete
5dbd28f6ebe3: Verifying Checksum
5dbd28f6ebe3: Download complete
19f3722281a8: Download complete
4e462c5de445: Verifying Checksum
4e462c5de445: Download complete
01806c8d7fca: Verifying Checksum
01806c8d7fca: Download complete
4e462c5de445: Pull complete
7634b1ed1a02: Pull complete
0a3852cc77d6: Pull complete
7d12aed4ab4c: Pull complete
a2358f71921a: Pull complete
5132a5c1ca08: Pull complete
03f7a3c5125e: Pull complete
849ea4e499c7: Pull complete
b3330d7102c2: Pull complete
6f27f4503d3e: Pull complete
99452fc258c0: Pull complete
74565ee39b6b: Pull complete
ae1ad65c9e7e: Pull complete
d928c195b82b: Pull complete
41b1579e6aeb: Pull complete
7efe4826e8ba: Pull complete
ec372fa40b0b: Pull complete
4f4fb700ef54: Pull complete
60a6ad607f09: Pull complete
dda892cb31d5: Pull complete
5c4d8beba063: Pull complete
ec7616d1d8da: Pull complete
97003637474c: Pull complete
5a0ba72b8a69: Pull complete
659f0ddafc60: Pull complete
f6f1f19a6011: Pull complete
7966a33b6d65: Pull complete
901da0d19aaa: Pull complete
c555f96df0da: Pull complete
3986637b9bb4: Pull complete
01806c8d7fca: Pull complete
770d48a2eac7: Pull complete
bd913431be25: Pull complete
504f9588b156: Pull complete
8e9a5e655a8c: Pull complete
4bbb46846b48: Pull complete
479222344cd7: Pull complete
0e194b215bb9: Pull complete
5dbd28f6ebe3: Pull complete
19f3722281a8: Pull complete
Digest: sha256:ce1c6e69c3a77b0b48402bef44e2ee40e2ec024cdbf2626ae95fd52dc8e2f6d8
Status: Downloaded newer image for ocaml/opam@sha256:ce1c6e69c3a77b0b48402bef44e2ee40e2ec024cdbf2626ae95fd52dc8e2f6d8
2025-12-23 22:32.43 ---> using "5b8b729bf08745c470010f7e007e76caa9963ac07bf0bdc9424a200aac3a1773" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-23 22:32.43 ---> using "2719d3f3e84953f7ade3f00642098322f59201e21dfbacc1f5263201559000f7" 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
Format upgrade done.
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.
[NOTE] The 'jobs' option was reset, its value was 255 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=255 --global
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-23 22:32.43 ---> using "1714438aee7fb976ddff71da74f7b789a78b28be6b9099c7895a91596b06a847" 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=debian os-version=unknown
# 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 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-12-23 22:32.43 ---> using "b292babddc224c988c61abdb6fe5b88aadcca2d7860a1b74aedb8b5d6f68b9d2" 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-12-23 22:32.43 ---> using "64da0a4dd05fc00f585cf99d84c9b9de4e1eda30c5eea0b21b93071d57cabefe" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-23 22:32.44 ---> using "a4ec873dfbd44d9311fef953091f303b062526afd96aee4397928c699d162cad" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-23 22:32.44 ---> using "9f95a700a588b85bc26dc7d1e12ad00cf36a594940a11c874a532ea544da5cfd" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian testing InRelease [137 kB]
- Get:2 http://deb.debian.org/debian testing-updates InRelease [40.6 kB]
- Get:3 http://deb.debian.org/debian-security testing-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian testing/main amd64 Packages.diff/Index [63.6 kB]
- Get:5 http://deb.debian.org/debian testing/main amd64 Packages T-2025-12-23-2005.38-F-2025-12-20-0216.38.pdiff [162 kB]
- Get:5 http://deb.debian.org/debian testing/main amd64 Packages T-2025-12-23-2005.38-F-2025-12-20-0216.38.pdiff [162 kB]
- Fetched 447 kB in 2s (193 kB/s)
- Reading package lists...
-
2025-12-23 22:32.44 ---> using "a96ce9803eefd740d7da5d6e08171d54d32d4b6cc75bc0a274418311622e2310" from cache
/home/opam: (run (shell "opam pin add -k version -yn posix-getopt.3.1.0 3.1.0"))
posix-getopt is now pinned to version 3.1.0
2025-12-23 22:32.44 ---> using "df1be19b91c7299db5e2ec9d2d1b7ee6f3af6952beb732079b76e51de27ebba2" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall posix-getopt.3.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 \"\\\"debian-testing\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'posix-getopt.3.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"))
posix-getopt.3.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 10 packages
- install csexp 1.5.2 [required by dune-configurator]
- install ctypes 0.24.0 [required by posix-getopt]
- install dune 3.20.2 [required by posix-getopt]
- install dune-configurator 3.20.2 [required by posix-getopt]
- install integers 0.7.0 [required by posix-base, ctypes, unix-errno]
- install posix-base 3.1.0 [required by posix-getopt]
- install posix-getopt 3.1.0 (pinned)
- install result 1.5 [required by unix-errno]
- install stdlib-shims 0.3.0 [required by integers]
- install unix-errno 0.6.2 [required by posix-getopt]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> retrieved ctypes.0.24.0 (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved posix-base.3.1.0, posix-getopt.3.1.0 (cached)
-> retrieved result.1.5 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved unix-errno.0.6.2 (cached)
-> installed dune.3.20.2
-> installed stdlib-shims.0.3.0
-> installed result.1.5
-> installed csexp.1.5.2
-> installed integers.0.7.0
-> installed dune-configurator.3.20.2
-> installed ctypes.0.24.0
-> installed posix-base.3.1.0
-> installed unix-errno.0.6.2
-> installed posix-getopt.3.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-23 22:33.01 ---> saved as "2d861b89ed5f50300767aa44e2d62008c9ef355cf820e1874646050b8c33357d"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test posix-getopt.3.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile posix-getopt 3.1.0 (pinned)
=== install 7 packages
- install base-bytes base [required by process]
- install ocamlbuild 0.16.1 [required by process]
- install ocamlfind 1.9.8 [required by process]
- install ounit2 2.2.7 [required by posix-getopt]
- install posix-uname 3.1.0 [required by posix-getopt]
- install process 0.2.1 [required by posix-getopt]
- install seq base [required by ounit2]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocamlbuild.0.16.1 (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7 (https://opam.ocaml.org/cache)
-> retrieved posix-getopt.3.1.0, posix-uname.3.1.0 (https://github.com/savonet/ocaml-posix/archive/refs/tags/v3.1.0.tar.gz)
-> retrieved process.0.2.1 (https://opam.ocaml.org/cache)
-> retrieved seq.base (2 extra sources)
-> retrieved seq.base (2 extra sources)
-> installed seq.base
-> installed ounit2.2.2.7
-> installed posix-uname.3.1.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> removed posix-getopt.3.1.0
-> installed ocamlbuild.0.16.1
-> installed process.0.2.1
-> installed posix-getopt.3.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-23 22:33.16 ---> saved as "6209530a897685c244358df5a2b8ac8e0123342a2e5242a078697f22b8247f01"
/home/opam: (run (shell "opam reinstall --with-test --verbose posix-getopt.3.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 \"\\\"debian-testing\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'posix-getopt.3.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 posix-getopt 3.1.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [posix-getopt: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "posix-getopt" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/posix-getopt.3.1.0)
- (cd _build/default/posix-getopt/test && ./test.exe)
- ................
- Ran: 16 tests in: 0.12 seconds.
- OK
-> compiled posix-getopt.3.1.0
-> removed posix-getopt.3.1.0
-> installed posix-getopt.3.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-23 22:33.23 ---> saved as "a725f031bb10c9f6d1bf51a506a421c3dd42c092a2f3fb187cda71de24aa85fb"
Job succeeded
2025-12-23 22:33.38: Job succeeded