Build:
- 0
2026-04-20 17:06.23: New job: test goblint.2.5.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29772/head (2cd18da3a162b859aead699bdc12e8fdf5aefcd9)
on debian-unstable-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/29772/head" && git reset --hard 2cd18da3
git fetch origin master
git merge --no-edit 306a3c410f6b9393f2cbf4a84b8cd38a4c8b1b9c
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-unstable-ocaml-4.14@sha256:48f214384e235764dead1b55b4cde8f2211d41c9d97e892802690ffd52d80a58
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 goblint.2.5.0 2.5.0
RUN opam reinstall goblint.2.5.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-unstable\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'goblint.2.5.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 goblint.2.5.0) || true
RUN opam reinstall --with-test --verbose goblint.2.5.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-unstable\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'goblint.2.5.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-04-20 17:06.23: Using cache hint "ocaml/opam:debian-unstable-ocaml-4.14@sha256:48f214384e235764dead1b55b4cde8f2211d41c9d97e892802690ffd52d80a58-goblint.2.5.0-2cd18da3a162b859aead699bdc12e8fdf5aefcd9"
2026-04-20 17:06.23: Using OBuilder spec:
((from ocaml/opam:debian-unstable-ocaml-4.14@sha256:48f214384e235764dead1b55b4cde8f2211d41c9d97e892802690ffd52d80a58)
(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 goblint.2.5.0 2.5.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall goblint.2.5.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-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'goblint.2.5.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 goblint.2.5.0) || true"))
(run (shell "opam reinstall --with-test --verbose goblint.2.5.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-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'goblint.2.5.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-04-20 17:06.23: Waiting for resource in pool OCluster
2026-04-20 17:08.38: Waiting for worker…
2026-04-20 17:12.27: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
Updating files: 71% (13493/18773)
Updating files: 72% (13517/18773)
Updating files: 73% (13705/18773)
Updating files: 74% (13893/18773)
Updating files: 75% (14080/18773)
Updating files: 76% (14268/18773)
Updating files: 77% (14456/18773)
Updating files: 78% (14643/18773)
Updating files: 79% (14831/18773)
Updating files: 80% (15019/18773)
Updating files: 81% (15207/18773)
Updating files: 82% (15394/18773)
Updating files: 83% (15582/18773)
Updating files: 84% (15770/18773)
Updating files: 85% (15958/18773)
Updating files: 86% (16145/18773)
Updating files: 87% (16333/18773)
Updating files: 88% (16521/18773)
Updating files: 89% (16708/18773)
Updating files: 90% (16896/18773)
Updating files: 91% (17084/18773)
Updating files: 92% (17272/18773)
Updating files: 93% (17459/18773)
Updating files: 94% (17647/18773)
Updating files: 95% (17835/18773)
Updating files: 96% (18023/18773)
Updating files: 97% (18210/18773)
Updating files: 98% (18398/18773)
Updating files: 99% (18586/18773)
Updating files: 100% (18773/18773)
Updating files: 100% (18773/18773), done.
HEAD is now at 306a3c410f Merge pull request #29750 from Octachron/OCaml_5.5.0_beta1
Updating 306a3c410f..2cd18da3a1
Fast-forward
packages/goblint/goblint.1.1.1/opam | 2 +-
packages/goblint/goblint.2.2.1/opam | 4 ++--
packages/goblint/goblint.2.3.0/opam | 2 +-
packages/goblint/goblint.2.4.0/opam | 2 +-
packages/goblint/goblint.2.5.0/opam | 2 +-
packages/goblint/goblint.2.6.0/opam | 2 +-
packages/goblint/goblint.2.7.1/opam | 2 +-
7 files changed, 8 insertions(+), 8 deletions(-)
(from ocaml/opam:debian-unstable-ocaml-4.14@sha256:48f214384e235764dead1b55b4cde8f2211d41c9d97e892802690ffd52d80a58)
2026-04-20 17:12.58 ---> using "80b377aef039b5d69e623d5f38829abc51896bede1735b951d8c6b0c0aaa5e64" 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-20 17:12.58 ---> using "a39addf226bfaf2cb667566dde469ba2a10b505321a61f92ee77aad3f850feb5" 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 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
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[ocaml-patches-overlay] no changes from git+https://github.com/ocurrent/opam-repository#patches
[default] Initialised
2026-04-20 17:12.58 ---> using "906f3b576f423a5dccb46ca64c85b2340dd4c933ad413fb311970f3a187dd9bb" 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.1
# 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 2 (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-20 17:12.58 ---> using "7ce1bef6878578636dd46f5830d6f5c04de56b5748014aced36576a1f73f2599" 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-20 17:12.58 ---> using "d34278dfc1f11bddf0904bfb7de28746518f035cee78b007488ae73cc60cf0fc" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-20 17:13.01 ---> saved as "a514238be0fbd3e7418db1032d2395209026a57889058e31f6c91afca4f43e0f"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-20 17:13.26 ---> saved as "245dc09ee2284bb35725872bff64561199e0f4c89e8d26b85ac9d463e1fdba71"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian unstable InRelease [187 kB]
- Get:2 http://deb.debian.org/debian unstable/main amd64 Packages.diff/Index [63.6 kB]
- Get:3 http://deb.debian.org/debian unstable/main amd64 Packages T-2026-04-20-1400.07-F-2026-04-18-0803.08.pdiff [149 kB]
- Get:3 http://deb.debian.org/debian unstable/main amd64 Packages T-2026-04-20-1400.07-F-2026-04-18-0803.08.pdiff [149 kB]
- Fetched 400 kB in 2s (162 kB/s)
- Reading package lists...
-
2026-04-20 17:13.29 ---> saved as "2ce0faaccdc52035126347ced7179b299ef8c01a6a67fd271f572442eb13eb9f"
/home/opam: (run (shell "opam pin add -k version -yn goblint.2.5.0 2.5.0"))
goblint is now pinned to version 2.5.0
2026-04-20 17:13.30 ---> saved as "54871f842cd8ff3d1926fed758095f2a7350747ac5262f208977b2e350a18a06"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall goblint.2.5.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-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'goblint.2.5.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
goblint.2.5.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 64 packages
- install angstrom 0.16.1 [required by uri]
- install arg-complete 0.2.1 [required by goblint]
- install astring 0.8.5 [required by fpath]
- install batteries 3.10.0 [required by goblint]
- install bigstringaf 0.10.0 [required by angstrom]
- install bos 0.2.1 [required by yaml]
- install camlp-streams 5.0.1 [required by batteries]
- install catapult 0.2 [required by goblint]
- install catapult-file 0.2 [required by goblint]
- install conf-autoconf 0.2 [required by cpu]
- install conf-gcc 1.0 [required by goblint]
- install conf-gmp 5 [required by goblint]
- install conf-perl 2 [required by goblint-cil]
- install conf-pkg-config 4 [required by zarith]
- install cppo 1.8.0 [required by arg-complete, goblint-cil]
- install cpu 2.0.0 [required by goblint]
- install csexp 1.5.2 [required by dune-private-libs, dune-configurator]
- install cstruct 6.2.0 [required by hex]
- install ctypes 0.24.0 [required by yaml]
- install dune 3.22.2 [required by goblint]
- install dune-build-info 3.22.2 [required by goblint]
- install dune-configurator 3.22.2 [required by goblint-cil, yaml]
- install dune-private-libs 3.22.2 [required by dune-site]
- install dune-site 3.22.2 [required by goblint]
- install dyn 3.22.2 [required by dune-private-libs]
- install fileutils 0.6.6 [required by goblint]
- install fmt 0.11.0 [required by bos]
- install fpath 0.7.3 [required by goblint]
- install fs-io 3.22.2 [required by stdune]
- install goblint 2.5.0 (pinned)
- install goblint-cil 2.0.6 [required by goblint]
- install hex 1.5.0 [required by json-data-encoding]
- install integers 0.7.0 [required by ctypes]
- install json-data-encoding 1.0.1 [required by goblint]
- install jsonrpc 1.26.0 [required by goblint]
- install logs 0.10.0 [required by bos]
- install num 1.6 [required by batteries]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocamlbuild 0.16.1 [required by fpath, uuidm]
- install ocamlfind 1.9.8 [required by fpath, batteries, uuidm]
- install ordering 3.22.2 [required by dyn, stdune]
- install pp 2.0.0 [required by dune-private-libs]
- install ppx_blob 0.9.0 [required by goblint]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.1.1 [required by goblint]
- install ppx_deriving_hash 0.1.3 [required by goblint]
- install ppx_deriving_yojson 3.10.0 [required by goblint]
- install ppxlib 0.38.0 [required by goblint]
- install qcheck-core 0.25 [required by goblint]
- install rresult 0.7.0 [required by bos]
- install seq base [required by yojson]
- install sexplib0 v0.17.0 [required by ppxlib]
- install sha 1.15.4 [required by goblint]
- install stdlib-shims 0.3.0 [required by goblint-cil, sha]
- install stdune 3.22.2 [required by dune-private-libs]
- install stringext 1.6.0 [required by uri]
- install top-closure 3.22.2 [required by stdune]
- install topkg 1.1.1 [required by fpath, uuidm]
- install uri 4.4.0 [required by json-data-encoding]
- install uuidm 0.9.10 [required by goblint]
- install yaml 3.2.0 [required by goblint]
- install yojson 2.2.2 [required by goblint]
- install zarith 1.14 [required by goblint]
The following system packages will first need to be installed:
autoconf libgmp-dev pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get 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 "apt-get" "install" "-qq" "-yy" "autoconf" "libgmp-dev" "pkg-config"
- Selecting previously unselected package m4.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21785 files and directories currently installed.)
- Preparing to unpack .../0-m4_1.4.21-1_amd64.deb ...
- Unpacking m4 (1.4.21-1) ...
- Selecting previously unselected package autoconf.
- Preparing to unpack .../1-autoconf_2.72-6_all.deb ...
- Unpacking autoconf (2.72-6) ...
- Selecting previously unselected package autotools-dev.
- Preparing to unpack .../2-autotools-dev_20240727.1+nmu1_all.deb ...
- Unpacking autotools-dev (20240727.1+nmu1) ...
- Selecting previously unselected package automake.
- Preparing to unpack .../3-automake_1%3a1.18.1-4_all.deb ...
- Unpacking automake (1:1.18.1-4) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../4-libgmpxx4ldbl_2%3a6.3.0+dfsg-5+b1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-5+b1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../5-libgmp-dev_2%3a6.3.0+dfsg-5+b1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-5+b1) ...
- Selecting previously unselected package libpkgconf7:amd64.
- Preparing to unpack .../6-libpkgconf7_2.5.1-4_amd64.deb ...
- Unpacking libpkgconf7:amd64 (2.5.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../7-pkgconf-bin_2.5.1-4_amd64.deb ...
- Unpacking pkgconf-bin (2.5.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../8-pkgconf_2.5.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (2.5.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../9-pkg-config_2.5.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (2.5.1-4) ...
- Setting up libpkgconf7:amd64 (2.5.1-4) ...
- Setting up m4 (1.4.21-1) ...
- Setting up autotools-dev (20240727.1+nmu1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-5+b1) ...
- Setting up pkgconf-bin (2.5.1-4) ...
- Setting up autoconf (2.72-6) ...
- Setting up automake (1:1.18.1-4) ...
- update-alternatives: using /usr/bin/automake-1.18 to provide /usr/bin/automake (automake) in auto mode
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-5+b1) ...
- Setting up pkgconf:amd64 (2.5.1-4) ...
- Setting up pkg-config:amd64 (2.5.1-4) ...
- Processing triggers for libc-bin (2.42-14) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved arg-complete.0.2.1 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved batteries.3.10.0 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved catapult.0.2, catapult-file.0.2 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved cppo.1.8.0 (cached)
-> installed conf-gcc.1.0
-> installed conf-gmp.5
-> installed conf-perl.2
-> installed conf-autoconf.0.2
-> installed conf-pkg-config.4
-> retrieved cpu.2.0.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved cstruct.6.2.0 (cached)
-> retrieved ctypes.0.24.0 (cached)
-> retrieved dune.3.22.2, dune-build-info.3.22.2, dune-configurator.3.22.2, dune-private-libs.3.22.2, dune-site.3.22.2, dyn.3.22.2, fs-io.3.22.2, ordering.3.22.2, stdune.3.22.2, top-closure.3.22.2 (cached)
-> retrieved fileutils.0.6.6 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved goblint.2.5.0 (cached)
-> retrieved goblint-cil.2.0.6 (cached)
-> retrieved hex.1.5.0 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved json-data-encoding.1.0.1 (cached)
-> retrieved jsonrpc.1.26.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved pp.2.0.0 (cached)
-> retrieved ppx_blob.0.9.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.1.1 (cached)
-> retrieved ppx_deriving_hash.0.1.3 (cached)
-> retrieved ppx_deriving_yojson.3.10.0 (cached)
-> retrieved ppxlib.0.38.0 (cached)
-> retrieved qcheck-core.0.25 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved sha.1.15.4 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uri.4.4.0 (cached)
-> retrieved uuidm.0.9.10 (cached)
-> retrieved yaml.3.2.0 (cached)
-> retrieved yojson.2.2.2 (cached)
-> retrieved zarith.1.14 (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed uuidm.0.9.10
-> installed rresult.0.7.0
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed logs.0.10.0
-> installed fpath.0.7.3
-> installed bos.0.2.1
-> installed dune.3.22.2
-> installed camlp-streams.5.0.1
-> installed catapult.0.2
-> installed cppo.1.8.0
-> installed csexp.1.5.2
-> installed cstruct.6.2.0
-> installed dune-build-info.3.22.2
-> installed fs-io.3.22.2
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed ordering.3.22.2
-> installed pp.2.0.0
-> installed ppx_derivers.1.2.1
-> installed qcheck-core.0.25
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed top-closure.3.22.2
-> installed yojson.2.2.2
-> installed catapult-file.0.2
-> installed arg-complete.0.2.1
-> installed hex.1.5.0
-> installed fileutils.0.6.6
-> installed dune-configurator.3.22.2
-> installed jsonrpc.1.26.0
-> installed integers.0.7.0
-> installed dyn.3.22.2
-> installed bigstringaf.0.10.0
-> installed sha.1.15.4
-> installed cpu.2.0.0
-> installed angstrom.0.16.1
-> installed batteries.3.10.0
-> installed uri.4.4.0
-> installed json-data-encoding.1.0.1
-> installed stdune.3.22.2
-> installed ctypes.0.24.0
-> installed dune-private-libs.3.22.2
-> installed dune-site.3.22.2
-> installed yaml.3.2.0
-> installed ppxlib.0.38.0
-> installed ppx_blob.0.9.0
-> installed ppx_deriving.6.1.1
-> installed ppx_deriving_hash.0.1.3
-> installed ppx_deriving_yojson.3.10.0
-> installed goblint-cil.2.0.6
[ERROR] The compilation of goblint.2.5.0 failed at "dune build -p goblint -j 71 --promote-install-files=false @install".
#=== ERROR while compiling goblint.2.5.0 ======================================#
# context 2.5.1 | linux/x86_64 | ocaml-base-compiler.4.14.3 | pinned(https://github.com/goblint/analyzer/releases/download/v2.5.0/goblint-2.5.0.tbz)
# path ~/.opam/4.14/.opam-switch/build/goblint.2.5.0
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p goblint -j 71 --promote-install-files=false @install
# exit-code 1
# env-file ~/.opam/log/goblint-7-fdbe58.env
# output-file ~/.opam/log/goblint-7-fdbe58.out
### output ###
# (cd _build/default/src/build-info && /usr/bin/bash -e -u -o pipefail -c 'git describe --all --long --dirty || echo "n/a"') > /opam-tmp/build_c32aa5_dune/dune-pipe-action-_cc3d8f_.stdout
# fatal: not a git repository (or any parent up to mount point /)
# Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
# File "lib/goblint/runtime/src/dune", line 4, characters 8-15:
# 4 | (names goblint)
# ^^^^^^^
# (cd _build/default/lib/goblint/runtime/src && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -Wall -fdiagnostics-color=always -g -I /home/opam/.opam/4.14/lib/ocaml -I ../include -o goblint.o -c goblint.c)
# goblint.c:19:6: error: conflicting types for '__goblint_assume_join'; have 'void(pthread_t)' {aka 'void(long unsigned int)'}
# 19 | void __goblint_assume_join(pthread_t thread) {
# | ^~~~~~~~~~~~~~~~~~~~~
# In file included from goblint.c:1:
# ../include/goblint.h:5:6: note: previous declaration of '__goblint_assume_join' with type 'void(void)'
# 5 | void __goblint_assume_join(/* pthread_t thread */); // undeclared argument to avoid pthread.h interfering with Linux kernel headers
# | ^~~~~~~~~~~~~~~~~~~~~
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build goblint 2.5.0
+-
+- The following changes have been performed
| - install angstrom 0.16.1
| - install arg-complete 0.2.1
| - install astring 0.8.5
| - install batteries 3.10.0
| - install bigstringaf 0.10.0
| - install bos 0.2.1
| - install camlp-streams 5.0.1
| - install catapult 0.2
| - install catapult-file 0.2
| - install conf-autoconf 0.2
| - install conf-gcc 1.0
| - install conf-gmp 5
| - install conf-perl 2
| - install conf-pkg-config 4
| - install cppo 1.8.0
| - install cpu 2.0.0
| - install csexp 1.5.2
| - install cstruct 6.2.0
| - install ctypes 0.24.0
| - install dune 3.22.2
| - install dune-build-info 3.22.2
| - install dune-configurator 3.22.2
| - install dune-private-libs 3.22.2
| - install dune-site 3.22.2
| - install dyn 3.22.2
| - install fileutils 0.6.6
| - install fmt 0.11.0
| - install fpath 0.7.3
| - install fs-io 3.22.2
| - install goblint-cil 2.0.6
| - install hex 1.5.0
| - install integers 0.7.0
| - install json-data-encoding 1.0.1
| - install jsonrpc 1.26.0
| - install logs 0.10.0
| - install num 1.6
| - install ocaml-compiler-libs v0.12.4
| - install ocaml-syntax-shims 1.0.0
| - install ocamlbuild 0.16.1
| - install ocamlfind 1.9.8
| - install ordering 3.22.2
| - install pp 2.0.0
| - install ppx_blob 0.9.0
| - install ppx_derivers 1.2.1
| - install ppx_deriving 6.1.1
| - install ppx_deriving_hash 0.1.3
| - install ppx_deriving_yojson 3.10.0
| - install ppxlib 0.38.0
| - install qcheck-core 0.25
| - install rresult 0.7.0
| - install seq base
| - install sexplib0 v0.17.0
| - install sha 1.15.4
| - install stdlib-shims 0.3.0
| - install stdune 3.22.2
| - install stringext 1.6.0
| - install top-closure 3.22.2
| - install topkg 1.1.1
| - install uri 4.4.0
| - install uuidm 0.9.10
| - install yaml 3.2.0
| - install yojson 2.2.2
| - install zarith 1.14
+-
# To update the current shell environment, run: eval $(opam env)
The former state can be restored with:
/usr/bin/opam switch import "/home/opam/.opam/4.14/.opam-switch/backup/state-20260420171332.export"
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall goblint.2.5.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-unstable\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'goblint.2.5.0' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 1
2026-04-20 17:17.02: Job failed: Failed: Build failed
2026-04-20 17:17.02: Log analysis:
2026-04-20 17:17.02: >>>
[ERROR] The compilation of goblint.2.5.0 failed at "dune build -p goblint -j 71 --promote-install-files=false @install".
(score = 20)
2026-04-20 17:17.02: >>>
# goblint.c:19:6: error: conflicting types for '__goblint_assume_join'; have 'void(pthread_t)' {aka 'void(long unsigned int)'}
(score = 30)
2026-04-20 17:17.02: conflicting types for '__goblint_assume_join'; have 'void(pthread_t)' {aka 'void(long unsigned int)'}