Build:
- 0
2026-04-05 21:28.28: New job: test gendarme.0.4.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29566/head (b755869b2c03dcccade6ba3b946b5300b3d0ccd5)
on ubuntu-24.04-ocaml-4.14/riscv64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29566/head" && git reset --hard b755869b
git fetch origin master
git merge --no-edit 58be49813ccd4678f5762ae269409e93bce1ce7c
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:82b5420655385c32dc96068e36a744a8e8c869890b3a55869a20415f213fd254
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 gendarme.0.4.1 0.4.1
RUN opam reinstall gendarme.0.4.1; \
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-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'gendarme.0.4.1' && 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 gendarme.0.4.1) || true
RUN opam reinstall --with-test --verbose gendarme.0.4.1; \
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-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'gendarme.0.4.1' && 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-05 21:28.28: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:82b5420655385c32dc96068e36a744a8e8c869890b3a55869a20415f213fd254-gendarme.0.4.1-b755869b2c03dcccade6ba3b946b5300b3d0ccd5"
2026-04-05 21:28.28: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:82b5420655385c32dc96068e36a744a8e8c869890b3a55869a20415f213fd254)
(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 gendarme.0.4.1 0.4.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall gendarme.0.4.1;\
\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-24.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'gendarme.0.4.1' && 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 gendarme.0.4.1) || true"))
(run (shell "opam reinstall --with-test --verbose gendarme.0.4.1;\
\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-24.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'gendarme.0.4.1' && 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-05 21:28.28: Waiting for resource in pool OCluster
2026-04-05 21:28.29: Waiting for worker…
2026-04-05 22:54.46: Got resource from pool OCluster
Building on riscv-bm-02.sw.ci.dev
All commits already cached
Updating files: 14% (2681/18634)
Updating files: 15% (2796/18634)
Updating files: 16% (2982/18634)
Updating files: 17% (3168/18634)
Updating files: 18% (3355/18634)
Updating files: 19% (3541/18634)
Updating files: 20% (3727/18634)
Updating files: 21% (3914/18634)
Updating files: 22% (4100/18634)
Updating files: 23% (4286/18634)
Updating files: 24% (4473/18634)
Updating files: 25% (4659/18634)
Updating files: 26% (4845/18634)
Updating files: 27% (5032/18634)
Updating files: 27% (5034/18634)
Updating files: 28% (5218/18634)
Updating files: 29% (5404/18634)
Updating files: 30% (5591/18634)
Updating files: 31% (5777/18634)
Updating files: 32% (5963/18634)
Updating files: 33% (6150/18634)
Updating files: 34% (6336/18634)
Updating files: 35% (6522/18634)
Updating files: 36% (6709/18634)
Updating files: 37% (6895/18634)
Updating files: 38% (7081/18634)
Updating files: 39% (7268/18634)
Updating files: 39% (7385/18634)
Updating files: 40% (7454/18634)
Updating files: 41% (7640/18634)
Updating files: 42% (7827/18634)
Updating files: 43% (8013/18634)
Updating files: 44% (8199/18634)
Updating files: 45% (8386/18634)
Updating files: 46% (8572/18634)
Updating files: 47% (8758/18634)
Updating files: 48% (8945/18634)
Updating files: 49% (9131/18634)
Updating files: 50% (9317/18634)
Updating files: 51% (9504/18634)
Updating files: 51% (9623/18634)
Updating files: 52% (9690/18634)
Updating files: 53% (9877/18634)
Updating files: 54% (10063/18634)
Updating files: 55% (10249/18634)
Updating files: 56% (10436/18634)
Updating files: 57% (10622/18634)
Updating files: 58% (10808/18634)
Updating files: 59% (10995/18634)
Updating files: 60% (11181/18634)
Updating files: 61% (11367/18634)
Updating files: 62% (11554/18634)
Updating files: 63% (11740/18634)
Updating files: 64% (11926/18634)
Updating files: 64% (11934/18634)
Updating files: 65% (12113/18634)
Updating files: 66% (12299/18634)
Updating files: 67% (12485/18634)
Updating files: 68% (12672/18634)
Updating files: 69% (12858/18634)
Updating files: 70% (13044/18634)
Updating files: 71% (13231/18634)
Updating files: 72% (13417/18634)
Updating files: 73% (13603/18634)
Updating files: 74% (13790/18634)
Updating files: 75% (13976/18634)
Updating files: 76% (14162/18634)
Updating files: 76% (14289/18634)
Updating files: 77% (14349/18634)
Updating files: 78% (14535/18634)
Updating files: 79% (14721/18634)
Updating files: 80% (14908/18634)
Updating files: 81% (15094/18634)
Updating files: 82% (15280/18634)
Updating files: 83% (15467/18634)
Updating files: 84% (15653/18634)
Updating files: 85% (15839/18634)
Updating files: 86% (16026/18634)
Updating files: 87% (16212/18634)
Updating files: 88% (16398/18634)
Updating files: 89% (16585/18634)
Updating files: 89% (16605/18634)
Updating files: 90% (16771/18634)
Updating files: 91% (16957/18634)
Updating files: 92% (17144/18634)
Updating files: 93% (17330/18634)
Updating files: 94% (17516/18634)
Updating files: 95% (17703/18634)
Updating files: 96% (17889/18634)
Updating files: 97% (18075/18634)
Updating files: 98% (18262/18634)
Updating files: 99% (18448/18634)
Updating files: 100% (18634/18634)
Updating files: 100% (18634/18634), done.
HEAD is now at 58be49813c Merge pull request #29649 from jmid/add-binsec-ocaml-bounds
Updating 58be49813c..b755869b2c
Fast-forward
packages/gendarme-csv/gendarme-csv.0.4.1/opam | 38 ++++++++++++++++++
.../gendarme-ezjsonm/gendarme-ezjsonm.0.4.1/opam | 40 +++++++++++++++++++
packages/gendarme-json/gendarme-json.0.4.1/opam | 21 ++++++++++
packages/gendarme-toml/gendarme-toml.0.4.1/opam | 38 ++++++++++++++++++
packages/gendarme-yaml/gendarme-yaml.0.4.1/opam | 38 ++++++++++++++++++
.../gendarme-yojson/gendarme-yojson.0.4.1/opam | 39 ++++++++++++++++++
packages/gendarme/gendarme.0.4.1/opam | 38 ++++++++++++++++++
packages/ppx_marshal/ppx_marshal.0.4.1/opam | 46 ++++++++++++++++++++++
.../ppx_marshal_ext/ppx_marshal_ext.0.4.1/opam | 40 +++++++++++++++++++
9 files changed, 338 insertions(+)
create mode 100644 packages/gendarme-csv/gendarme-csv.0.4.1/opam
create mode 100644 packages/gendarme-ezjsonm/gendarme-ezjsonm.0.4.1/opam
create mode 100644 packages/gendarme-json/gendarme-json.0.4.1/opam
create mode 100644 packages/gendarme-toml/gendarme-toml.0.4.1/opam
create mode 100644 packages/gendarme-yaml/gendarme-yaml.0.4.1/opam
create mode 100644 packages/gendarme-yojson/gendarme-yojson.0.4.1/opam
create mode 100644 packages/gendarme/gendarme.0.4.1/opam
create mode 100644 packages/ppx_marshal/ppx_marshal.0.4.1/opam
create mode 100644 packages/ppx_marshal_ext/ppx_marshal_ext.0.4.1/opam
(from ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:82b5420655385c32dc96068e36a744a8e8c869890b3a55869a20415f213fd254)
Unable to find image 'ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:82b5420655385c32dc96068e36a744a8e8c869890b3a55869a20415f213fd254' locally
docker.io/ocaml/opam@sha256:82b5420655385c32dc96068e36a744a8e8c869890b3a55869a20415f213fd254: Pulling from ocaml/opam
866473980fd7: Already exists
68944697ad4d: Already exists
593f7aa85813: Already exists
1bba36de2c28: Already exists
ae8ee7d823d4: Already exists
802dffff3a07: Already exists
45b403b3385b: Already exists
7953af5391f7: Already exists
8eecefc0147e: Already exists
c5b0a3f5ed74: Already exists
cdff2801df5e: Already exists
93cf55dc9f94: Already exists
a28595b6da8d: Already exists
b02e05a70bb1: Already exists
fc97d4a67def: Already exists
4057b567c63f: Already exists
57e10e7e8870: Already exists
57e10e7e8870: Already exists
a44f2aef790d: Already exists
00fdf8a8fe1a: Already exists
eec89b1928b5: Already exists
d29756dae49d: Already exists
4f4fb700ef54: Already exists
d05880e78c73: Already exists
73fc09136d84: Already exists
d076de08a4db: Already exists
9aca9bdf068b: Already exists
7b476383f593: Already exists
d53a104e59b9: Already exists
62aed5a8fcfd: Already exists
7d50906bd92b: Already exists
c104ff5b36d5: Already exists
c648104242b4: Already exists
c2a8d0c6ffad: Already exists
b005870b0c86: Already exists
a932ebd86caf: Already exists
036c7b5597ce: Already exists
3d45eadf48e0: Already exists
1842387ed358: Already exists
3e9ffbea956f: Already exists
81dd1e481adf: Already exists
a84af8ca1817: Pulling fs layer
a53e32d6606a: Pulling fs layer
a0f544aa1e90: Pulling fs layer
5c2bdb573db5: Pulling fs layer
5c2bdb573db5: Waiting
a53e32d6606a: Verifying Checksum
a53e32d6606a: Download complete
a0f544aa1e90: Verifying Checksum
a0f544aa1e90: Download complete
5c2bdb573db5: Verifying Checksum
5c2bdb573db5: Download complete
a84af8ca1817: Verifying Checksum
a84af8ca1817: Download complete
a84af8ca1817: Pull complete
a53e32d6606a: Pull complete
a0f544aa1e90: Pull complete
5c2bdb573db5: Pull complete
Digest: sha256:82b5420655385c32dc96068e36a744a8e8c869890b3a55869a20415f213fd254
Status: Downloaded newer image for ocaml/opam@sha256:82b5420655385c32dc96068e36a744a8e8c869890b3a55869a20415f213fd254
2026-04-05 22:54.57 ---> using "3cac56c9044dc9e4b181473d4151a691cb8b63b695b54d17732b836147acf985" 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-05 22:54.57 ---> using "d12e6ca8ff6e4502bed07d09bbddd02c4c553df77e472192fe52e9023878c8cf" 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-04-05 22:54.57 ---> using "e8b097882913873dad746d9b449d67ebabd77b21bcfac3e06155d38073089922" 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=riscv64 os=linux os-distribution=ubuntu os-version=24.04
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 3
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages ocaml-base-compiler.4.14.3, 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.3
2026-04-05 22:54.57 ---> using "958fbf9e1ed7e57f43a38e9e00e72e0a72b8eb6229add8d542bfd5432e36809b" 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-05 22:54.57 ---> using "2e19e9b67a050c6551ecd634f5982f057f2e67585d227ca342195cd091ebbf9e" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-05 22:55.03 ---> using "09822d8b08b4a060cd1934d52703acdf73c1167ea26f540c94f16087b1e70a03" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-05 22:55.03 ---> using "35e01e2354ab6e6cd80d6c523ea1d001b47fd8e85b915a3c3dfde19d184ba763" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://ports.ubuntu.com/ubuntu-ports noble InRelease
- Get:2 http://ports.ubuntu.com/ubuntu-ports noble-updates InRelease [126 kB]
- Get:3 http://ports.ubuntu.com/ubuntu-ports noble-backports InRelease [126 kB]
- Get:4 http://ports.ubuntu.com/ubuntu-ports noble-security InRelease [126 kB]
- Get:5 http://ports.ubuntu.com/ubuntu-ports noble-updates/main riscv64 Packages [958 kB]
- Get:6 http://ports.ubuntu.com/ubuntu-ports noble-updates/universe riscv64 Packages [1603 kB]
- Get:7 http://ports.ubuntu.com/ubuntu-ports noble-security/main riscv64 Packages [630 kB]
- Get:8 http://ports.ubuntu.com/ubuntu-ports noble-security/universe riscv64 Packages [1118 kB]
- Fetched 4688 kB in 2s (2176 kB/s)
- Reading package lists...
-
2026-04-05 22:55.03 ---> using "9179b1643ba5f0b2260a8d6cd6e165ba9ccd8b107438fc89cbaa1d5ef840f2b4" from cache
/home/opam: (run (shell "opam pin add -k version -yn gendarme.0.4.1 0.4.1"))
gendarme is now pinned to version 0.4.1
2026-04-05 22:55.03 ---> using "871ffca37439db2b17dbc68931e5dae32b14b0685a4916f9d1b457e799ca7216" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall gendarme.0.4.1;\
\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-24.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'gendarme.0.4.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
gendarme.0.4.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
- install dune 3.22.1 [required by gendarme]
- install gendarme 0.4.1 (pinned)
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.38.0 [required by gendarme]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.1 (cached)
-> retrieved gendarme.0.4.1 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.38.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed dune.3.22.1
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ppxlib.0.38.0
-> installed gendarme.0.4.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-05 22:55.03 ---> using "6ace54f961acc5c5876fdb7eaf7c07264822ac16507aafda391fbf9c7e9982e9" from cache
/home/opam: (run (network host)
(shell "(opam reinstall --with-test gendarme.0.4.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile gendarme 0.4.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed gendarme.0.4.1
-> installed gendarme.0.4.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-05 22:55.23 ---> saved as "921406c1dc7ab0a5c4142e9c83159df978fc105c3833bba5dfec3d307f0d5dba"
/home/opam: (run (shell "opam reinstall --with-test --verbose gendarme.0.4.1;\
\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-24.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'gendarme.0.4.1' && 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 gendarme 0.4.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [gendarme: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "gendarme" "-j" "3" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/gendarme.0.4.1)
-> compiled gendarme.0.4.1
-> removed gendarme.0.4.1
-> installed gendarme.0.4.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-05 22:55.42 ---> saved as "0207439bd4e4f06695a70f2fccf7ef67576e11139d12de4e6c5d913d21f86c7e"
Job succeeded
2026-04-05 22:56.17: Job succeeded