- github
- ocaml
- opam-repository
- b9d711
- compilers,4.14,camlidl.1.13-1,revdeps,gbddml.2.71.10
(not at the head of any monitored branch or PR)
2026-04-10 07:32.42: New job: test gbddml.2.71.10 with camlidl.1.13-1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29653/head (b9d7118cf3faa156fd1d38b7ca78f7c13edaaaad)
on debian-13-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/29653/head" && git reset --hard b9d7118c
git fetch origin master
git merge --no-edit 89ac3ba6f35eff1809bbb75e061fb0eb1090d8ec
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
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 camlidl.1.13-1 1.13-1
RUN opam reinstall camlidl.1.13-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 "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'camlidl.1.13-1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall gbddml.2.71.10; \
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-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'gbddml.2.71.10' && 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 gbddml.2.71.10) || true
RUN opam reinstall --with-test --verbose gbddml.2.71.10; \
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-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'gbddml.2.71.10' && 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-10 07:32.42: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-camlidl.1.13-1-gbddml.2.71.10-b9d7118cf3faa156fd1d38b7ca78f7c13edaaaad"
2026-04-10 07:32.42: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
(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 camlidl.1.13-1 1.13-1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall camlidl.1.13-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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'camlidl.1.13-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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall gbddml.2.71.10;\
\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-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'gbddml.2.71.10' && 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 gbddml.2.71.10) || true"))
(run (shell "opam reinstall --with-test --verbose gbddml.2.71.10;\
\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-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'gbddml.2.71.10' && 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-10 07:32.42: Waiting for resource in pool OCluster
2026-04-10 07:32.42: Waiting for worker…
2026-04-10 07:32.44: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
Updating files: 53% (10003/18651)
Updating files: 54% (10072/18651)
Updating files: 55% (10259/18651)
Updating files: 56% (10445/18651)
Updating files: 57% (10632/18651)
Updating files: 58% (10818/18651)
Updating files: 59% (11005/18651)
Updating files: 60% (11191/18651)
Updating files: 61% (11378/18651)
Updating files: 62% (11564/18651)
Updating files: 63% (11751/18651)
Updating files: 64% (11937/18651)
Updating files: 65% (12124/18651)
Updating files: 66% (12310/18651)
Updating files: 67% (12497/18651)
Updating files: 68% (12683/18651)
Updating files: 69% (12870/18651)
Updating files: 70% (13056/18651)
Updating files: 71% (13243/18651)
Updating files: 72% (13429/18651)
Updating files: 73% (13616/18651)
Updating files: 74% (13802/18651)
Updating files: 75% (13989/18651)
Updating files: 76% (14175/18651)
Updating files: 77% (14362/18651)
Updating files: 78% (14548/18651)
Updating files: 79% (14735/18651)
Updating files: 80% (14921/18651)
Updating files: 81% (15108/18651)
Updating files: 82% (15294/18651)
Updating files: 83% (15481/18651)
Updating files: 84% (15667/18651)
Updating files: 85% (15854/18651)
Updating files: 86% (16040/18651)
Updating files: 87% (16227/18651)
Updating files: 88% (16413/18651)
Updating files: 89% (16600/18651)
Updating files: 90% (16786/18651)
Updating files: 91% (16973/18651)
Updating files: 92% (17159/18651)
Updating files: 93% (17346/18651)
Updating files: 94% (17532/18651)
Updating files: 95% (17719/18651)
Updating files: 96% (17905/18651)
Updating files: 97% (18092/18651)
Updating files: 98% (18278/18651)
Updating files: 99% (18465/18651)
Updating files: 100% (18651/18651)
Updating files: 100% (18651/18651), done.
HEAD is now at 89ac3ba6f3 Merge pull request #29692 from mseri/js_of_Ocam
Merge made by the 'ort' strategy.
packages/camlidl/camlidl.1.13-1/opam | 46 ++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
create mode 100644 packages/camlidl/camlidl.1.13-1/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
2026-04-10 07:34.25 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" 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-10 07:34.25 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" 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.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-10 07:34.25 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" 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=13
# 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.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-10 07:34.25 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" 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-10 07:34.25 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-10 07:34.28 ---> using "26c366327b7928d02ad2d6c52cd154ad06208002f9a39ad1c7b95961656a85d3" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-10 07:34.28 ---> using "2bbb99d3d4a53f857ec1d3233862c94783726d96bc1bbe2fccde0be3476019f1" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [121 kB]
- Fetched 211 kB in 0s (1758 kB/s)
- Reading package lists...
2026-04-10 07:34.28 ---> using "091add1ea9fb2bdf0545a611c1eef04d4a0d9f50a5c04b9db69874cb2a9a0346" from cache
/home/opam: (run (shell "opam pin add -k version -yn camlidl.1.13-1 1.13-1"))
camlidl is now pinned to version 1.13-1
2026-04-10 07:34.28 ---> using "cd2f821ab6091fb9863eca771c6a9fea291c2fc9f65c543dcdc08ad3bbbea697" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall camlidl.1.13-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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'camlidl.1.13-1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
camlidl.1.13-1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install camlidl 1.13-1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved camlidl.1.13-1 (cached)
-> installed camlidl.1.13-1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-10 07:34.28 ---> using "f19a7a5aa9ad82af08f1486d31e6558f76fdf60984cf3887d99b189651f2635c" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall gbddml.2.71.10;\
\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-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'gbddml.2.71.10' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
gbddml.2.71.10 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
- install dune 3.22.1 [required by gbddml]
- install gbddml 2.71.10
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.1 (cached)
-> retrieved gbddml.2.71.10 (cached)
-> installed dune.3.22.1
-> installed gbddml.2.71.10
Done.
<><> gbddml.2.71.10 installed successfully ><><><><><><><><><><><><><><><><><><>
=> The last version can be obtained via (opam repo add) http://www-verimag.imag.fr/DIST-TOOLS/SYNCHRONE/opam-repository/
# To update the current shell environment, run: eval $(opam env)
2026-04-10 07:35.52 ---> saved as "bc4b7d7a30e3c731b94c3e4c77b3edf8d88405a23c7945695dc3fb60aee04b44"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test gbddml.2.71.10) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile gbddml 2.71.10
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved gbddml.2.71.10 (https://opam.ocaml.org/cache)
-> removed gbddml.2.71.10
-> installed gbddml.2.71.10
Done.
<><> gbddml.2.71.10 installed successfully ><><><><><><><><><><><><><><><><><><>
=> The last version can be obtained via (opam repo add) http://www-verimag.imag.fr/DIST-TOOLS/SYNCHRONE/opam-repository/
# To update the current shell environment, run: eval $(opam env)
2026-04-10 07:36.03 ---> saved as "e03a28f17314a3ab08148f7d7f10adf9bf3cc4fdcca66e2e10bb9954e6cb8a46"
/home/opam: (run (shell "opam reinstall --with-test --verbose gbddml.2.71.10;\
\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-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'gbddml.2.71.10' && 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 gbddml 2.71.10
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [gbddml.2.71.10: extract]
-> retrieved gbddml.2.71.10 (cached)
Processing 2/4: [gbddml: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "gbddml" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/gbddml.2.71.10)
- (cd _build/default/lib/gbddml && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -x c++ -g -O2 -fno-operator-names -fPIC -g -I /home/opam/.opam/4.14/lib/ocaml -I /home/opam/.opam/4.14/lib/camlidl -o gbdd.o -c gbdd.c)
- gbdd.c: In member function 'int GBddMemory::alloc_page()':
- gbdd.c:1143:36: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
- 1143 | register GBddNode* ptr = &(page[1].node);
- | ^~~
- gbdd.c:1144:36: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
- 1144 | register GBddNode* nxt = &(page[2].node);
- | ^~~
- gbdd.c:1145:30: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
- 1145 | register int k = size;
- | ^
-> compiled gbddml.2.71.10
-> removed gbddml.2.71.10
-> installed gbddml.2.71.10
Done.
<><> gbddml.2.71.10 installed successfully ><><><><><><><><><><><><><><><><><><>
=> The last version can be obtained via (opam repo add) http://www-verimag.imag.fr/DIST-TOOLS/SYNCHRONE/opam-repository/
# To update the current shell environment, run: eval $(opam env)
2026-04-10 07:36.14 ---> saved as "896eb03c37ca40314995e85364512c66d58cc77e6d16e5d817f67fe8c9a1777b"
Job succeeded
2026-04-10 07:36.25: Job succeeded