- github
- ocaml
- opam-repository
- 7cf44d
- distributions,ubuntu-25.10-ocaml-5.4,passe.0.1.0,tests
(not at the head of any monitored branch or PR)
2026-01-12 03:02.10: New job: test passe.0.1.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29209/head (7cf44dd59f3d701719ec977f781508489f6d4236)
on ubuntu-25.10-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/29209/head" && git reset --hard 7cf44dd5
git fetch origin master
git merge --no-edit 2bf2bf6ea0c8867eede5e26c1c591999dd5a9ee1
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-25.10-ocaml-5.4@sha256:87707cc095fe755eac26a3f75cf687511a78de4ac2c4f83c6890286cc60b1119
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 passe.0.1.0 0.1.0
RUN opam reinstall passe.0.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 "\"ubuntu-25.10\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'passe.0.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 passe.0.1.0) || true
RUN opam reinstall --with-test --verbose passe.0.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 "\"ubuntu-25.10\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'passe.0.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 .
2026-01-12 03:02.10: Using cache hint "ocaml/opam:ubuntu-25.10-ocaml-5.4@sha256:87707cc095fe755eac26a3f75cf687511a78de4ac2c4f83c6890286cc60b1119-passe.0.1.0-7cf44dd59f3d701719ec977f781508489f6d4236"
2026-01-12 03:02.10: Using OBuilder spec:
((from ocaml/opam:ubuntu-25.10-ocaml-5.4@sha256:87707cc095fe755eac26a3f75cf687511a78de4ac2c4f83c6890286cc60b1119)
(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 passe.0.1.0 0.1.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall passe.0.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 \"\\\"ubuntu-25.10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'passe.0.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 passe.0.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose passe.0.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 \"\\\"ubuntu-25.10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'passe.0.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"))
)
2026-01-12 03:02.10: Waiting for resource in pool OCluster
2026-01-12 03:07.08: Waiting for worker…
2026-01-12 03:10.36: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files: 86% (16520/19190)
Updating files: 87% (16696/19190)
Updating files: 88% (16888/19190)
Updating files: 89% (17080/19190)
Updating files: 90% (17271/19190)
Updating files: 91% (17463/19190)
Updating files: 92% (17655/19190)
Updating files: 93% (17847/19190)
Updating files: 94% (18039/19190)
Updating files: 95% (18231/19190)
Updating files: 96% (18423/19190)
Updating files: 97% (18615/19190)
Updating files: 98% (18807/19190)
Updating files: 99% (18999/19190)
Updating files: 100% (19190/19190)
Updating files: 100% (19190/19190), done.
HEAD is now at 2bf2bf6ea0 Merge pull request #29204 from jserot/opam-publish-rfsm.2.3
Updating 2bf2bf6ea0..7cf44dd59f
Fast-forward
packages/passe/passe.0.1.0/opam | 44 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
create mode 100644 packages/passe/passe.0.1.0/opam
(from ocaml/opam:ubuntu-25.10-ocaml-5.4@sha256:87707cc095fe755eac26a3f75cf687511a78de4ac2c4f83c6890286cc60b1119)
Unable to find image 'ocaml/opam:ubuntu-25.10-ocaml-5.4@sha256:87707cc095fe755eac26a3f75cf687511a78de4ac2c4f83c6890286cc60b1119' locally
docker.io/ocaml/opam@sha256:87707cc095fe755eac26a3f75cf687511a78de4ac2c4f83c6890286cc60b1119: Pulling from ocaml/opam
a206cee1e839: Pulling fs layer
04d0fda93654: Pulling fs layer
5598c8218e5b: Pulling fs layer
27e6bcc59000: Pulling fs layer
476bdca213c7: Pulling fs layer
8b3dd2128b79: Pulling fs layer
8228ff021881: Pulling fs layer
debaa2cf865f: Pulling fs layer
0d925952ec66: Pulling fs layer
5598c8218e5b: Waiting
27e6bcc59000: Waiting
dc9767f65a5c: Pulling fs layer
476bdca213c7: Waiting
57bf37e42d0c: Pulling fs layer
8b3dd2128b79: Waiting
2ac4a586b211: Pulling fs layer
a206cee1e839: Waiting
de79818394fa: Pulling fs layer
2b88996c9f10: Pulling fs layer
dc9767f65a5c: Waiting
8228ff021881: Waiting
26e0c12ae547: Pulling fs layer
debaa2cf865f: Waiting
04d0fda93654: Waiting
0d925952ec66: Waiting
d42a2f75133b: Pulling fs layer
57bf37e42d0c: Waiting
e053991d347d: Pulling fs layer
2ac4a586b211: Waiting
26e0c12ae547: Waiting
d42a2f75133b: Waiting
2b88996c9f10: Waiting
faa5a73e75b9: Pulling fs layer
1c860f870bd7: Pulling fs layer
03c23059de84: Pulling fs layer
296e574ca04a: Pulling fs layer
faa5a73e75b9: Waiting
4f4fb700ef54: Pulling fs layer
03c23059de84: Waiting
b06b3645f435: Pulling fs layer
dc0a97e90676: Pulling fs layer
4d410e79a4d4: Pulling fs layer
4f4fb700ef54: Waiting
9e075e2cfd29: Pulling fs layer
dc0a97e90676: Waiting
4d410e79a4d4: Waiting
3c98a6227b32: Pulling fs layer
ab1593b940db: Pulling fs layer
beb72ce2891e: Pulling fs layer
f9895df2dc9a: Pulling fs layer
4a63d26554fb: Pulling fs layer
beb72ce2891e: Waiting
2cdce19875cf: Pulling fs layer
e5d17da9f85b: Pulling fs layer
3c98a6227b32: Waiting
f9895df2dc9a: Waiting
9e075e2cfd29: Waiting
4a63d26554fb: Waiting
2cdce19875cf: Waiting
53948ab27600: Pulling fs layer
ca4b68605557: Pulling fs layer
41a43860d93f: Pulling fs layer
53948ab27600: Waiting
ea04284e98d7: Pulling fs layer
cd319914de51: Pulling fs layer
404c60bff92e: Pulling fs layer
ea04284e98d7: Waiting
8ed57fa53a1b: Pulling fs layer
753162438979: Pulling fs layer
b3e778fd1ccd: Pulling fs layer
404c60bff92e: Waiting
753162438979: Waiting
9022975124b1: Pulling fs layer
5d32c0aabe51: Pulling fs layer
dfb4e8de7bb3: Pulling fs layer
a5656cca97d6: Pulling fs layer
dfb4e8de7bb3: Waiting
cd319914de51: Waiting
5d32c0aabe51: Waiting
16c959504d82: Pulling fs layer
a5656cca97d6: Waiting
16c959504d82: Waiting
a206cee1e839: Verifying Checksum
a206cee1e839: Download complete
04d0fda93654: Verifying Checksum
04d0fda93654: Download complete
5598c8218e5b: Download complete
27e6bcc59000: Verifying Checksum
27e6bcc59000: Download complete
476bdca213c7: Verifying Checksum
476bdca213c7: Download complete
a206cee1e839: Pull complete
04d0fda93654: Pull complete
5598c8218e5b: Pull complete
8228ff021881: Verifying Checksum
8228ff021881: Download complete
27e6bcc59000: Pull complete
8b3dd2128b79: Verifying Checksum
8b3dd2128b79: Download complete
476bdca213c7: Pull complete
debaa2cf865f: Verifying Checksum
debaa2cf865f: Download complete
0d925952ec66: Verifying Checksum
0d925952ec66: Download complete
dc9767f65a5c: Verifying Checksum
dc9767f65a5c: Download complete
57bf37e42d0c: Verifying Checksum
57bf37e42d0c: Download complete
2ac4a586b211: Verifying Checksum
2ac4a586b211: Download complete
2b88996c9f10: Verifying Checksum
2b88996c9f10: Download complete
de79818394fa: Verifying Checksum
de79818394fa: Download complete
26e0c12ae547: Verifying Checksum
d42a2f75133b: Download complete
e053991d347d: Verifying Checksum
e053991d347d: Download complete
faa5a73e75b9: Download complete
03c23059de84: Download complete
1c860f870bd7: Verifying Checksum
1c860f870bd7: Download complete
296e574ca04a: Verifying Checksum
296e574ca04a: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
b06b3645f435: Download complete
dc0a97e90676: Download complete
4d410e79a4d4: Verifying Checksum
4d410e79a4d4: Download complete
9e075e2cfd29: Verifying Checksum
9e075e2cfd29: Download complete
3c98a6227b32: Download complete
ab1593b940db: Verifying Checksum
ab1593b940db: Download complete
beb72ce2891e: Verifying Checksum
beb72ce2891e: Download complete
f9895df2dc9a: Verifying Checksum
f9895df2dc9a: Download complete
4a63d26554fb: Verifying Checksum
4a63d26554fb: Download complete
2cdce19875cf: Verifying Checksum
2cdce19875cf: Download complete
e5d17da9f85b: Verifying Checksum
e5d17da9f85b: Download complete
53948ab27600: Download complete
41a43860d93f: Verifying Checksum
41a43860d93f: Download complete
cd319914de51: Verifying Checksum
cd319914de51: Download complete
404c60bff92e: Verifying Checksum
404c60bff92e: Download complete
8ed57fa53a1b: Verifying Checksum
8ed57fa53a1b: Download complete
753162438979: Verifying Checksum
753162438979: Download complete
b3e778fd1ccd: Verifying Checksum
b3e778fd1ccd: Download complete
9022975124b1: Verifying Checksum
9022975124b1: Download complete
ca4b68605557: Verifying Checksum
ca4b68605557: Download complete
dfb4e8de7bb3: Download complete
ea04284e98d7: Verifying Checksum
ea04284e98d7: Download complete
8b3dd2128b79: Pull complete
16c959504d82: Download complete
a5656cca97d6: Verifying Checksum
a5656cca97d6: Download complete
8228ff021881: Pull complete
debaa2cf865f: Pull complete
0d925952ec66: Pull complete
dc9767f65a5c: Pull complete
57bf37e42d0c: Pull complete
2ac4a586b211: Pull complete
de79818394fa: Pull complete
2b88996c9f10: Pull complete
26e0c12ae547: Pull complete
d42a2f75133b: Pull complete
e053991d347d: Pull complete
faa5a73e75b9: Pull complete
1c860f870bd7: Pull complete
03c23059de84: Pull complete
296e574ca04a: Pull complete
4f4fb700ef54: Pull complete
b06b3645f435: Pull complete
dc0a97e90676: Pull complete
4d410e79a4d4: Pull complete
9e075e2cfd29: Pull complete
3c98a6227b32: Pull complete
ab1593b940db: Pull complete
beb72ce2891e: Pull complete
f9895df2dc9a: Pull complete
4a63d26554fb: Pull complete
2cdce19875cf: Pull complete
e5d17da9f85b: Pull complete
53948ab27600: Pull complete
ca4b68605557: Pull complete
41a43860d93f: Pull complete
5d32c0aabe51: Verifying Checksum
5d32c0aabe51: Download complete
ea04284e98d7: Pull complete
cd319914de51: Pull complete
404c60bff92e: Pull complete
8ed57fa53a1b: Pull complete
753162438979: Pull complete
b3e778fd1ccd: Pull complete
9022975124b1: Pull complete
5d32c0aabe51: Pull complete
dfb4e8de7bb3: Pull complete
a5656cca97d6: Pull complete
16c959504d82: Pull complete
Digest: sha256:87707cc095fe755eac26a3f75cf687511a78de4ac2c4f83c6890286cc60b1119
Status: Downloaded newer image for ocaml/opam@sha256:87707cc095fe755eac26a3f75cf687511a78de4ac2c4f83c6890286cc60b1119
2026-01-12 03:10.51 ---> using "0e48ec19c3e54fa30b0d8b20db8dccef8e0c7ed47e87086e0e669278123f11f0" 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-01-12 03:10.51 ---> using "5fb7e666c8c4eb14be7293b009bc2b00dee5f3e85cbe6f3c6ead3658df9a309f" 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
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-12 03:10.51 ---> using "bba0030d07c49e9431dba777a3a8748cbf9dabae58be9519752fffbc40a08deb" 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=ubuntu os-version=25.10
# 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.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, 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.0
2026-01-12 03:10.51 ---> using "a519867fd30f858526cf003169bf6ad711291a4d8b7dca0d325b6a67cfa3285e" 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-01-12 03:10.51 ---> using "cb607875d2464ba70f56a05c6de8e7ac8e32faeeb3a8794b61676d34c7b2be95" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-12 03:10.52 ---> using "a1576e4be63f37cdffae31d154e79709840c494b3d9c4695f41c68048a7e72d4" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-12 03:11.04 ---> saved as "92cb81e04c0c661c288b8689e2be5cf45d45b66f6469b0f07aef641dd67dc573"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://security.ubuntu.com/ubuntu questing-security InRelease [136 kB]
- Get:2 http://security.ubuntu.com/ubuntu questing-security/main amd64 Packages [156 kB]
- Get:3 http://security.ubuntu.com/ubuntu questing-security/universe amd64 Packages [103 kB]
- Hit:4 http://archive.ubuntu.com/ubuntu questing InRelease
- Get:5 http://archive.ubuntu.com/ubuntu questing-updates InRelease [136 kB]
- Get:6 http://archive.ubuntu.com/ubuntu questing-backports InRelease [133 kB]
- Get:7 http://archive.ubuntu.com/ubuntu questing-updates/restricted amd64 Packages [122 kB]
- Get:8 http://archive.ubuntu.com/ubuntu questing-updates/universe amd64 Packages [154 kB]
- Get:9 http://archive.ubuntu.com/ubuntu questing-updates/main amd64 Packages [284 kB]
- Fetched 1223 kB in 1s (1158 kB/s)
- Reading package lists...
-
2026-01-12 03:11.06 ---> saved as "7c1762e610ddbb659fa427c5564bd4e017ea47608a08a9ba37073f1ffb4f0c8e"
/home/opam: (run (shell "opam pin add -k version -yn passe.0.1.0 0.1.0"))
passe is now pinned to version 0.1.0
2026-01-12 03:11.07 ---> saved as "f09912bd3cfdd174827062176e4387c4e2ebeff59006c58398ca3a357756b350"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall passe.0.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 \"\\\"ubuntu-25.10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'passe.0.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"))
passe.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 13 packages
- install csexp 1.5.2 [required by dune-configurator]
- install digestif 1.3.0 [required by mirage-crypto-rng]
- install dune 3.20.2 [required by passe]
- install dune-configurator 3.20.2 [required by mirage-crypto, mirage-crypto-rng]
- install duration 0.2.1 [required by mirage-crypto-rng]
- install eqaf 0.10 [required by mirage-crypto]
- install logs 0.10.0 [required by mirage-crypto-rng]
- install mirage-crypto 2.0.2 [required by passe]
- install mirage-crypto-rng 2.0.2 [required by passe]
- install ocamlbuild 0.16.1 [required by logs]
- install ocamlfind 1.9.8 [required by logs]
- install passe 0.1.0 (pinned)
- install topkg 1.1.1 [required by logs]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> retrieved digestif.1.3.0 (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved mirage-crypto.2.0.2, mirage-crypto-rng.2.0.2 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved passe.0.1.0 (https://github.com/syaiful6/passe/releases/download/0.1.0/passe-0.1.0.tbz)
-> retrieved topkg.1.1.1 (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed logs.0.10.0
-> installed dune.3.20.2
-> installed duration.0.2.1
-> installed csexp.1.5.2
-> installed eqaf.0.10
-> installed digestif.1.3.0
-> installed dune-configurator.3.20.2
-> installed mirage-crypto.2.0.2
-> installed mirage-crypto-rng.2.0.2
-> installed passe.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-12 03:12.04 ---> saved as "21aa5c7bf16aebfe9be1e71c3fa50df3f67080510c9872041c0299f4d916a402"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test passe.0.1.0) || true"))
The following actions will be performed:
=== recompile 3 packages
- recompile logs 0.10.0 [uses cmdliner]
- recompile mirage-crypto-rng 2.0.2 [uses logs]
- recompile passe 0.1.0 (pinned)
=== install 8 packages
- install alcotest 1.9.1 [required by passe]
- install astring 0.8.5 [required by alcotest]
- install cmdliner 2.1.0 [required by alcotest]
- install fmt 0.11.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install re 1.14.0 [required by alcotest]
- install stdlib-shims 0.3.0 [required by alcotest]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0 (https://opam.ocaml.org/cache)
-> retrieved mirage-crypto-rng.2.0.2 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed astring.0.8.5
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> removed passe.0.1.0
-> removed mirage-crypto-rng.2.0.2
-> removed logs.0.10.0
-> installed cmdliner.2.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed alcotest.1.9.1
-> installed logs.0.10.0
-> installed mirage-crypto-rng.2.0.2
-> installed passe.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-12 03:12.34 ---> saved as "39bf88b3b864bdbc25640d4d3b07759e50ce8f3fb2caa5cc463ba89811896641"
/home/opam: (run (shell "opam reinstall --with-test --verbose passe.0.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 \"\\\"ubuntu-25.10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'passe.0.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 passe 0.1.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [passe: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "passe" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/passe.0.1.0)
- (cd _build/default/test && ./test.exe)
- Testing `Passe test'.
- This run has ID `HRTEGKUU'.
-
- [OK] Bcrypt verification 0 verify correct password (2a).
- [OK] Bcrypt verification 1 verify correct password (2b).
- [OK] Bcrypt verification 2 verify correct password (2a ...
- [OK] Bcrypt verification 3 verify wrong password.
- [OK] Bcrypt verification 4 verify special characters.
- [OK] Bcrypt verification 5 verify 2y variant.
- [OK] Bcrypt hashing 0 hash and verify.
- [OK] Bcrypt hashing 1 hash wrong password.
- [OK] Bcrypt hashing 2 empty password.
- [OK] Bcrypt validation 0 password too long.
- [OK] Bcrypt validation 1 password max length.
- [OK] Bcrypt validation 2 invalid hash too short.
- [OK] Bcrypt validation 3 invalid hash bad prefix.
- [OK] Bcrypt validation 4 cost validation.
- [OK] Bcrypt security 0 password with null byte.
- [OK] Bcrypt security 1 salt with null byte.
- [OK] Argon2 hashing 0 hash and verify.
- [OK] Argon2 hashing 1 hash wrong password.
- [OK] Argon2 hashing 2 default params.
- [OK] Argon2 hashing 3 empty password.
- [OK] Argon2 hashing 4 long password.
- [OK] Argon2 hashing 5 special characters.
- [OK] Argon2 hashing 6 different params produce dif...
- [OK] Argon2 validation 0 invalid time cost.
- [OK] Argon2 validation 1 invalid memory cost.
- [OK] Argon2 validation 2 invalid parallelism.
- [OK] Argon2 validation 3 salt too short.
- [OK] Argon2 security 0 verify with null byte in hash.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/passe.0.1.0/_build/default/test/_build/_tests/Passe test'.
- Test Successful in 0.574s. 28 tests run.
-> compiled passe.0.1.0
-> removed passe.0.1.0
-> installed passe.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-12 03:12.43 ---> saved as "e8120de99a64d994e1681c8b00a6c46485445cb00ae9d22c7c74219117c107ab"
Job succeeded
2026-01-12 03:13.33: Job succeeded