- github
- ocaml
- opam-repository
- e2e946
- compilers,5.3,dune.3.20.0~alpha4,revdeps,libdash.0.3
(not at the head of any monitored branch or PR)
2025-08-12 13:24.50: New job: test libdash.0.3 with dune.3.20.0~alpha4, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/28333/head (e2e946ed909ce4d2c3e1e35bbaff78b566760128)
on debian-12-ocaml-5.3/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/28333/head" && git reset --hard e2e946ed
git fetch origin master
git merge --no-edit 5b99878077ddf3134c09e188d937954bd33cfa58
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-5.3@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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 dune.3.20.0~alpha4 3.20.0~alpha4
RUN opam reinstall dune.3.20.0~alpha4; \
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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune.3.20.0~alpha4' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall libdash.0.3; \
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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'libdash.0.3' && 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 libdash.0.3) || true
RUN opam reinstall --with-test --verbose libdash.0.3; \
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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'libdash.0.3' && 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-08-12 13:24.50: Using cache hint "ocaml/opam:debian-12-ocaml-5.3@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03-dune.3.20.0~alpha4-libdash.0.3-e2e946ed909ce4d2c3e1e35bbaff78b566760128"
2025-08-12 13:24.50: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-5.3@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.3 /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 dune.3.20.0~alpha4 3.20.0~alpha4"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.20.0~alpha4;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.20.0~alpha4' && 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 libdash.0.3;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'libdash.0.3' && 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 libdash.0.3) || true"))
(run (shell "opam reinstall --with-test --verbose libdash.0.3;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'libdash.0.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-08-12 13:24.50: Waiting for resource in pool OCluster
2025-08-12 19:56.04: Waiting for worker…
2025-08-12 19:57.43: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 5b99878077 Merge pull request #28318 from ocamllibs/metaquot-0.6.0
Updating 5b99878077..e2e946ed90
Fast-forward
.../chrome-trace/chrome-trace.3.20.0~alpha4/opam | 41 ++++++++++++
.../dune-action-plugin.3.20.0~alpha4/opam | 54 ++++++++++++++++
.../dune-build-info.3.20.0~alpha4/opam | 47 ++++++++++++++
.../dune-configurator.3.20.0~alpha4/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.20.0~alpha4/opam | 44 +++++++++++++
.../dune-private-libs.3.20.0~alpha4/opam | 52 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha4/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.20.0~alpha4/opam | 46 ++++++++++++++
packages/dune-site/dune-site.3.20.0~alpha4/opam | 39 ++++++++++++
packages/dune/dune.3.20.0~alpha4/opam | 74 ++++++++++++++++++++++
packages/dyn/dyn.3.20.0~alpha4/opam | 42 ++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha4/opam | 45 +++++++++++++
packages/ordering/ordering.3.20.0~alpha4/opam | 40 ++++++++++++
packages/stdune/stdune.3.20.0~alpha4/opam | 46 ++++++++++++++
packages/xdg/xdg.3.20.0~alpha4/opam | 41 ++++++++++++
15 files changed, 705 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.20.0~alpha4/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.20.0~alpha4/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.20.0~alpha4/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.20.0~alpha4/opam
create mode 100644 packages/dune-glob/dune-glob.3.20.0~alpha4/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.20.0~alpha4/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha4/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.20.0~alpha4/opam
create mode 100644 packages/dune-site/dune-site.3.20.0~alpha4/opam
create mode 100644 packages/dune/dune.3.20.0~alpha4/opam
create mode 100644 packages/dyn/dyn.3.20.0~alpha4/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha4/opam
create mode 100644 packages/ordering/ordering.3.20.0~alpha4/opam
create mode 100644 packages/stdune/stdune.3.20.0~alpha4/opam
create mode 100644 packages/xdg/xdg.3.20.0~alpha4/opam
(from ocaml/opam:debian-12-ocaml-5.3@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03)
Unable to find image 'ocaml/opam:debian-12-ocaml-5.3@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03' locally
docker.io/ocaml/opam@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03: Pulling from ocaml/opam
6fc4dc4525d4: Pulling fs layer
6fc4dc4525d4: Verifying Checksum
6fc4dc4525d4: Download complete
6fc4dc4525d4: Pull complete
Digest: sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03
Status: Downloaded newer image for ocaml/opam@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03
2025-08-12 20:14.29 ---> using "136b9da5b4792138f95300e61d33f42dd45fd35a017a7276daca78afc682748d" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-08-12 20:14.29 ---> using "a388c5b35cadef4c2005715355a9e850636d9e91fb537c5a71d1c45917048fdc" 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 development 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 71 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=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-08-12 20:14.29 ---> using "bb165827456dcd23ceb0ae78f1e65a9e17509720f29c738eb19faac8565f141e" 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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=12
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.3
# invariant ["ocaml-base-compiler" {= "5.3.0"}]
# compiler-packages ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.3.0
2025-08-12 20:14.29 ---> using "531a32bcfb595c38d922854047b33660029bc78d4418665c28feb76af7b35eb4" 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-08-12 20:14.29 ---> using "c20e3b5fdf01328bb44c0a8a29e7ec3ba2d9ed727ee69b4cd024fdd82aedb434" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-08-12 20:14.30 ---> using "c3acc61a42d74e1d56602928dd4c4cc71aedcf2618c308fe0172c55dc07cbb74" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-08-12 20:14.30 ---> using "a073e6341f274b085b706ade03ce3a5a11397d7cae3659bc592209888afe343d" 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 bookworm InRelease [151 kB]
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index [21.8 kB]
- Ign:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [6924 B]
- Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [272 kB]
- Fetched 555 kB in 0s (1185 kB/s)
- Reading package lists...
-
2025-08-12 20:14.30 ---> using "1ed943a357e8b26d1a4e86f7c74a77ba28c7341af11ca2528ab0eac0583a5843" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.20.0~alpha4 3.20.0~alpha4"))
dune is now pinned to version 3.20.0~alpha4
2025-08-12 20:14.30 ---> using "420d28b10ba5329266149c09861f1c619540e39be8f4e047715747f65d197744" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.20.0~alpha4;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.20.0~alpha4' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.20.0~alpha4 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.20.0~alpha4 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.0~alpha4 (cached)
-> installed dune.3.20.0~alpha4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 20:14.30 ---> using "b7ca17cbabb85c6394a30dfef851de0a5c9d07a981a86fbb59cfe6548ae9db2f" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall libdash.0.3;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'libdash.0.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
libdash.0.3 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 29 packages
- install atd 2.16.0 [required by atdgen]
- install atdgen 2.15.0 [required by libdash]
- install atdgen-runtime 2.16.0 [required by atdgen]
- install bigarray-compat 1.1.0 [required by ctypes]
- install biniou 1.2.2 [required by atdgen]
- install camlp-streams 5.0.1 [required by biniou]
- install cmdliner 1.3.0 [required by atd]
- install conf-aclocal 2 [required by libdash]
- install conf-autoconf 0.2 [required by libdash]
- install conf-automake 1 [required by conf-aclocal]
- install conf-libffi 2.0.0 [required by ctypes-foreign]
- install conf-libtool 1 [required by libdash]
- install conf-pkg-config 4 [required by ctypes-foreign]
- install csexp 1.5.2 [required by dune-configurator]
- install ctypes 0.23.0 [required by libdash]
- install ctypes-foreign 0.23.0 [required by libdash]
- install dune-configurator 3.20.0~alpha4 [required by ctypes, ctypes-foreign]
- install easy-format 1.3.4 [required by atd]
- install integers 0.7.0 [required by ctypes]
- install libdash 0.3
- install menhir 20240715 [required by atd]
- install menhirCST 20240715 [required by menhir]
- install menhirLib 20240715 [required by menhir]
- install menhirSdk 20240715 [required by menhir]
- install ocamlfind 1.9.8 [required by libdash]
- install re 1.13.2 [required by atdgen]
- install seq base [required by re, yojson]
- install stdlib-shims 0.3.0 [required by integers]
- install yojson 2.2.2 [required by atdgen]
The following system packages will first need to be installed:
autoconf automake libffi-dev libtool 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" "automake" "libffi-dev" "libtool" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libmagic-mgc.
- (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 ... 18778 files and directories currently installed.)
- Preparing to unpack .../00-libmagic-mgc_1%3a5.44-3_amd64.deb ...
- Unpacking libmagic-mgc (1:5.44-3) ...
- Selecting previously unselected package libmagic1:amd64.
- Preparing to unpack .../01-libmagic1_1%3a5.44-3_amd64.deb ...
- Unpacking libmagic1:amd64 (1:5.44-3) ...
- Selecting previously unselected package file.
- Preparing to unpack .../02-file_1%3a5.44-3_amd64.deb ...
- Unpacking file (1:5.44-3) ...
- Selecting previously unselected package m4.
- Preparing to unpack .../03-m4_1.4.19-3_amd64.deb ...
- Unpacking m4 (1.4.19-3) ...
- Selecting previously unselected package autoconf.
- Preparing to unpack .../04-autoconf_2.71-3_all.deb ...
- Unpacking autoconf (2.71-3) ...
- Selecting previously unselected package autotools-dev.
- Preparing to unpack .../05-autotools-dev_20220109.1_all.deb ...
- Unpacking autotools-dev (20220109.1) ...
- Selecting previously unselected package automake.
- Preparing to unpack .../06-automake_1%3a1.16.5-1.3_all.deb ...
- Unpacking automake (1:1.16.5-1.3) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../07-libffi-dev_3.4.4-1_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.4-1) ...
- Selecting previously unselected package libltdl7:amd64.
- Preparing to unpack .../08-libltdl7_2.4.7-7~deb12u1_amd64.deb ...
- Unpacking libltdl7:amd64 (2.4.7-7~deb12u1) ...
- Selecting previously unselected package libltdl-dev:amd64.
- Preparing to unpack .../09-libltdl-dev_2.4.7-7~deb12u1_amd64.deb ...
- Unpacking libltdl-dev:amd64 (2.4.7-7~deb12u1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../10-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package libtool.
- Preparing to unpack .../11-libtool_2.4.7-7~deb12u1_all.deb ...
- Unpacking libtool (2.4.7-7~deb12u1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../12-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../13-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../14-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Setting up libmagic-mgc (1:5.44-3) ...
- Setting up libmagic1:amd64 (1:5.44-3) ...
- Setting up m4 (1.4.19-3) ...
- Setting up file (1:5.44-3) ...
- Setting up libffi-dev:amd64 (3.4.4-1) ...
- Setting up autotools-dev (20220109.1) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up libltdl7:amd64 (2.4.7-7~deb12u1) ...
- Setting up autoconf (2.71-3) ...
- Setting up automake (1:1.16.5-1.3) ...
- update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode
- Setting up libtool (2.4.7-7~deb12u1) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up libltdl-dev:amd64 (2.4.7-7~deb12u1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u10) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved atd.2.16.0, atdgen-runtime.2.16.0 (cached)
-> retrieved atdgen.2.15.0 (cached)
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved biniou.1.2.2 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved ctypes.0.23.0, ctypes-foreign.0.23.0 (cached)
-> installed conf-autoconf.0.2
-> installed conf-libtool.1
-> installed conf-pkg-config.4
-> installed bigarray-compat.1.1.0
-> installed conf-libffi.2.0.0
-> installed csexp.1.5.2
-> installed conf-automake.1
-> installed camlp-streams.5.0.1
-> installed conf-aclocal.2
-> retrieved dune-configurator.3.20.0~alpha4 (cached)
-> retrieved easy-format.1.3.4 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved libdash.0.3 (cached)
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached)
-> installed cmdliner.1.3.0
-> installed easy-format.1.3.4
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved re.1.13.2 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed menhirCST.20240715
-> retrieved yojson.2.2.2 (cached)
-> installed menhirSdk.20240715
-> installed stdlib-shims.0.3.0
-> installed dune-configurator.3.20.0~alpha4
-> installed menhirLib.20240715
-> installed biniou.1.2.2
-> installed integers.0.7.0
-> installed re.1.13.2
-> installed yojson.2.2.2
-> installed atdgen-runtime.2.16.0
-> installed ocamlfind.1.9.8
-> installed ctypes.0.23.0
-> installed ctypes-foreign.0.23.0
-> installed menhir.20240715
-> installed atd.2.16.0
-> installed atdgen.2.15.0
-> installed libdash.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 20:15.41 ---> saved as "275720d7232b8577d0f2b5676e13dedf4f2806d54fa243749b03b22bacbac9b7"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test libdash.0.3) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile libdash 0.3
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved libdash.0.3 (https://opam.ocaml.org/cache)
-> removed libdash.0.3
-> installed libdash.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 20:16.36 ---> saved as "c0c4019b222fab78871c44a5e839b9b9713e61f64d10b1f30eb27ea878572756"
/home/opam: (run (shell "opam reinstall --with-test --verbose libdash.0.3;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'libdash.0.3' && 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 libdash 0.3
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [libdash.0.3: extract]
-> retrieved libdash.0.3 (cached)
Processing 2/4: [libdash: libtoolize]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "libtoolize" (CWD=/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3)
- libtoolize: putting auxiliary files in '.'.
- libtoolize: linking file './ltmain.sh'
- libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
- libtoolize: linking file 'm4/libtool.m4'
- libtoolize: linking file 'm4/ltoptions.m4'
- libtoolize: linking file 'm4/ltsugar.m4'
- libtoolize: linking file 'm4/ltversion.m4'
- libtoolize: linking file 'm4/lt~obsolete.m4'
Processing 2/4: [libdash: aclocal]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "aclocal" (CWD=/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3)
Processing 2/4: [libdash: autoheader]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "autoheader" (CWD=/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3)
Processing 2/4: [libdash: automake]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "automake" "--add-missing" (CWD=/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3)
- configure.ac:15: installing './ar-lib'
- configure.ac:10: installing './compile'
- configure.ac:196: installing './config.guess'
- configure.ac:196: installing './config.sub'
- configure.ac:2: installing './install-sh'
- configure.ac:2: installing './missing'
- src/Makefile.am: installing './depcomp'
Processing 2/4: [libdash: autoconf]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "autoconf" (CWD=/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3)
- configure.ac:196: warning: The macro `AC_PROG_LIBTOOL' is obsolete.
- configure.ac:196: You should run autoupdate.
- m4/libtool.m4:100: AC_PROG_LIBTOOL is expanded from...
- configure.ac:196: the top level
Processing 2/4: [libdash: mkdir _build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "mkdir" "_build" (CWD=/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3)
Processing 2/4: [libdash: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./configure" "--prefix=/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build" (CWD=/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3)
- checking for a BSD-compatible install... /usr/bin/install -c
- checking whether build environment is sane... yes
- checking for a race-free mkdir -p... /usr/bin/mkdir -p
- checking for gawk... no
- checking for mawk... mawk
- checking whether make sets $(MAKE)... yes
- checking whether make supports nested variables... yes
- checking whether make supports nested variables... (cached) yes
- checking for gcc... gcc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables...
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether the compiler supports GNU C... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to enable C11 features... none needed
- checking whether gcc understands -c and -o together... yes
- checking whether make supports the include directive... yes (GNU style)
- checking dependency style of gcc... gcc3
- checking for stdio.h... yes
- checking for stdlib.h... yes
- checking for string.h... yes
- checking for inttypes.h... yes
- checking for stdint.h... yes
- checking for strings.h... yes
- checking for sys/stat.h... yes
- checking for sys/types.h...
- yes
- checking for unistd.h... yes
- checking for wchar.h... yes
- checking for minix/config.h... no
- checking whether it is safe to define __EXTENSIONS__... yes
- checking whether _XOPEN_SOURCE should be defined... no
- checking for bison... no
- checking for byacc... no
- checking for ar... ar
- checking the archiver (ar) interface... ar
- checking for build system compiler... gcc
- checking for __attribute__((__alias__()))... yes
- checking for alloca.h... yes
- checking for paths.h... yes
- checking for gcc options needed to detect all undeclared functions... none needed
- checking whether _PATH_BSHELL is declared... yes
- checking whether _PATH_DEVNULL is declared... yes
- checking whether _PATH_TTY is declared... yes
- checking whether isblank is declared... yes
- checking size of intmax_t... 8
- checking size of long long int... 8
- checking whether PRIdMAX is declared... yes
- checking for bsearch... yes
- checking for faccessat... yes
- checking for getpwnam... yes
- checking for getrlimit... yes
- checking for isalpha...
- yes
- checking for killpg... yes
- checking for mempcpy... yes
- checking for sigsetmask... yes
- checking for stpcpy... yes
- checking for strchrnul... yes
- checking for strsignal... yes
- checking for strtod... yes
- checking for strtoimax... yes
- checking for strtoumax... yes
- checking for sysconf... yes
- checking for signal... yes
- checking for stat64... yes
- checking for open64... yes
- checking for stat::st_mtim... yes
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking how to print strings... printf
- checking for a sed that does not truncate output... /usr/bin/sed
- checking for grep that handles long lines and -e... /usr/bin/grep
- checking for egrep... /usr/bin/grep -E
- checking for fgrep... /usr/bin/grep -F
- checking for ld used by gcc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
- checking the name lister (/usr/bin/nm -B) interface... BSD nm
- checking whether ln -s works... yes
- checking the maximum length of command line arguments... 1572864
- checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
- checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
- checking for /usr/bin/ld option to reload object files... -r
- checking for file... file
- checking for objdump... objdump
- checking how to recognize dependent libraries... pass_all
- checking for dlltool... no
- checking how to associate runtime and link libraries... printf %s\n
- checking for archiver @FILE support... @
- checking for strip... strip
- checking for ranlib... ranlib
- checking command to parse /usr/bin/nm -B output from gcc object...
- ok
- checking for sysroot... no
- checking for a working dd... /usr/bin/dd
- checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
- checking for mt... no
- checking if : is a manifest tool... no
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
- checking if gcc static flag -static works... yes
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
- checking dynamic linker characteristics... GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
- checking whether to build shared libraries... yes
- checking whether to build static libraries... yes
- checking that generated files are newer than configure... done
- configure: creating ./config.status
- config.status: creating Makefile
- config.status: creating src/Makefile
- config.status: creating config.h
- config.status: executing depfiles commands
- config.status: executing libtool commands
Processing 2/4: [libdash: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" (CWD=/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3)
- make all-recursive
- make[1]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3'
- Making all in src
- make[2]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/src'
- CC builtins.def
- GEN builtins.h
- CC mknodes
- GEN nodes.h
- GEN token.h
- CC mksyntax
- GEN syntax.h
- make all-am
- make[3]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/src'
- CC dash-alias.o
- CC dash-arith_yacc.o
- CC dash-arith_yylex.o
- CC dash-cd.o
- CC dash-error.o
- CC dash-eval.o
- CC dash-exec.o
- CC dash-expand.o
- CC dash-histedit.o
- CC dash-input.o
- CC dash-jobs.o
- CC dash-mail.o
- CC dash-main.o
- CC dash-memalloc.o
- CC dash-miscbltin.o
- CC dash-mystring.o
- CC dash-options.o
- CC dash-parser.o
- CC dash-redir.o
- CC dash-show.o
- CC dash-trap.o
- CC dash-output.o
- CC bltin/dash-printf.o
- CC dash-system.o
- CC bltin/dash-test.o
- CC bltin/dash-times.o
- CC dash-var.o
- CC builtins.o
- CC mkinit
- GEN init.c
- CC init.o
- CC nodes.o
- CC mksignames
- GEN signames.c
- CC signames.o
- CC syntax.o
- CCLD dash
- CC alias.o
- CC arith_yacc.o
- CC arith_yylex.o
- CC cd.o
- CC error.o
- CC eval.o
- CC exec.o
- CC expand.o
- CC histedit.o
- CC input.o
- CC jobs.o
- CC mail.o
- CC main.o
- main.c:278:1: warning: 'read_profile' defined but not used [-Wunused-function]
- 278 | read_profile(const char *name)
- | ^~~~~~~~~~~~
- CC memalloc.o
- CC miscbltin.o
- CC mystring.o
- CC options.o
- CC parser.o
- CC redir.o
- CC show.o
- CC trap.o
- CC output.o
- CC bltin/printf.o
- CC system.o
- CC bltin/test.o
- CC bltin/times.o
- CC var.o
- AR libdash.a
- ar: `u' modifier ignored since `D' is the default (see `U')
- CC libdash_la-alias.lo
- CC libdash_la-arith_yacc.lo
- CC libdash_la-arith_yylex.lo
- CC libdash_la-cd.lo
- CC libdash_la-error.lo
- CC libdash_la-eval.lo
- CC libdash_la-exec.lo
- CC libdash_la-expand.lo
- CC libdash_la-histedit.lo
- CC libdash_la-input.lo
- CC libdash_la-jobs.lo
- CC libdash_la-mail.lo
- CC libdash_la-main.lo
- main.c:278:1: warning: 'read_profile' defined but not used [-Wunused-function]
- 278 | read_profile(const char *name)
- | ^~~~~~~~~~~~
- CC libdash_la-memalloc.lo
- CC libdash_la-miscbltin.lo
- CC libdash_la-mystring.lo
- CC libdash_la-options.lo
- CC libdash_la-parser.lo
- CC libdash_la-redir.lo
- CC libdash_la-show.lo
- CC libdash_la-trap.lo
- CC libdash_la-output.lo
- CC bltin/libdash_la-printf.lo
- CC libdash_la-system.lo
- CC bltin/libdash_la-test.lo
- CC bltin/libdash_la-times.lo
- CC libdash_la-var.lo
- CC libdash_la-builtins.lo
- CC libdash_la-init.lo
- CC libdash_la-nodes.lo
- CC libdash_la-signames.lo
- CC libdash_la-syntax.lo
- CCLD libdash.la
- CC dlldash_la-alias.lo
- CC dlldash_la-arith_yacc.lo
- CC dlldash_la-arith_yylex.lo
- CC dlldash_la-cd.lo
- CC dlldash_la-error.lo
- CC dlldash_la-eval.lo
- CC dlldash_la-exec.lo
- CC dlldash_la-expand.lo
- CC dlldash_la-histedit.lo
- CC dlldash_la-input.lo
- CC dlldash_la-jobs.lo
- CC dlldash_la-mail.lo
- CC dlldash_la-main.lo
- main.c:278:1: warning: 'read_profile' defined but not used [-Wunused-function]
- 278 | read_profile(const char *name)
- | ^~~~~~~~~~~~
- CC dlldash_la-memalloc.lo
- CC dlldash_la-miscbltin.lo
- CC dlldash_la-mystring.lo
- CC dlldash_la-options.lo
- CC dlldash_la-parser.lo
- CC dlldash_la-redir.lo
- CC dlldash_la-show.lo
- CC dlldash_la-trap.lo
- CC dlldash_la-output.lo
- CC bltin/dlldash_la-printf.lo
- CC dlldash_la-system.lo
- CC bltin/dlldash_la-test.lo
- CC bltin/dlldash_la-times.lo
- CC dlldash_la-var.lo
- CC dlldash_la-builtins.lo
- CC dlldash_la-init.lo
- CC dlldash_la-nodes.lo
- CC dlldash_la-signames.lo
- CC dlldash_la-syntax.lo
- CCLD dlldash.la
- make[3]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/src'
- make[2]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/src'
- make[2]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3'
- make[2]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3'
- make[1]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3'
Processing 2/4: [libdash: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "install" (CWD=/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3)
- Making install in src
- make[1]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/src'
- make install-am
- make[2]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/src'
- make[3]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/src'
- /usr/bin/mkdir -p '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/lib'
- /bin/bash ../libtool --mode=install /usr/bin/install -c libdash.la dlldash.la '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/lib'
- libtool: install: /usr/bin/install -c .libs/libdash.so.0.0.0 /home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/lib/libdash.so.0.0.0
- libtool: install: (cd /home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/lib && { ln -s -f libdash.so.0.0.0 libdash.so.0 || { rm -f libdash.so.0 && ln -s libdash.so.0.0.0 libdash.so.0; }; })
- libtool: install: (cd /home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/lib && { ln -s -f libdash.so.0.0.0 libdash.so || { rm -f libdash.so && ln -s libdash.so.0.0.0 libdash.so; }; })
- libtool: install: /usr/bin/install -c .libs/libdash.lai /home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/lib/libdash.la
- libtool: install: /usr/bin/install -c .libs/dlldash.so.0.0.0 /home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/lib/dlldash.so.0.0.0
- libtool: install: (cd /home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/lib && { ln -s -f dlldash.so.0.0.0 dlldash.so.0 || { rm -f dlldash.so.0 && ln -s dlldash.so.0.0.0 dlldash.so.0; }; })
- libtool: install: (cd /home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/lib && { ln -s -f dlldash.so.0.0.0 dlldash.so || { rm -f dlldash.so && ln -s dlldash.so.0.0.0 dlldash.so; }; })
- libtool: install: /usr/bin/install -c .libs/dlldash.lai /home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/lib/dlldash.la
- libtool: finish: PATH="/home/opam/.opam/5.3/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/lib
- ----------------------------------------------------------------------
- Libraries have been installed in:
- /home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/lib
-
- If you ever happen to want to link against installed libraries
- in a given directory, LIBDIR, you must either use libtool, and
- specify the full pathname of the library, or use the '-LLIBDIR'
- flag during linking and do at least one of the following:
- - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
- during execution
- - add LIBDIR to the 'LD_RUN_PATH' environment variable
- during linking
- - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
- - have your system administrator add LIBDIR to '/etc/ld.so.conf'
-
- See any operating system documentation about shared libraries for
- more information, such as the ld(1) and ld.so(8) manual pages.
- ----------------------------------------------------------------------
- /usr/bin/mkdir -p '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/bin'
- /bin/bash ../libtool --mode=install /usr/bin/install -c dash '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/bin'
- libtool: install: /usr/bin/install -c dash /home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/bin/dash
- /usr/bin/mkdir -p '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/lib'
- /usr/bin/install -c -m 644 libdash.a '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/lib'
- ( cd '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/lib' && ranlib libdash.a )
- /usr/bin/mkdir -p '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/share/man/man1'
- /usr/bin/install -c -m 644 dash.1 '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/share/man/man1'
- make[3]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/src'
- make[2]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/src'
- make[1]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/src'
- make[1]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3'
- make[2]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3'
- make[2]: Nothing to be done for 'install-exec-am'.
- make[2]: Nothing to be done for 'install-data-am'.
- make[2]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3'
- make[1]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3'
Processing 2/4: [libdash: ocaml/mk_meta.sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml/mk_meta.sh" "/home/opam/.opam/5.3/lib/libdash" (CWD=/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3)
Processing 2/4: [libdash: make ocaml]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "-C" "ocaml" "all" (CWD=/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3)
- make: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/ocaml'
- ocamlfind ocamlmklib -g -package str,ctypes,ctypes.foreign -L/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/lib -ldash dash.mli dash.ml ast.mli ast.ml -o dash
- ./mk_meta.sh
- atdgen -j -j-std ast_atd.atd
- sed -i -e '/type char = Ast.char/d' ast_atd_j.ml
- sed -i -e '/type char = Ast.char/d' ast_atd_j.mli
- mv ast_atd_j.ml ast_json.ml
- mv ast_atd_j.mli ast_json.mli
- ocamlfind ocamlopt -g -thread -package threads,str,atdgen,ctypes,ctypes.foreign -linkpkg -cclib -L/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/lib -cclib -ldash dash.cmxa ast_json.mli ast_json.ml shell_to_json.ml -o shell_to_json
- ocamlfind ocamlopt -g -thread -package threads,str,atdgen,ctypes,ctypes.foreign -linkpkg -cclib -L/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/_build/lib -cclib -ldash dash.cmxa ast_json.mli ast_json.ml json_to_shell.ml -o json_to_shell
- make: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/ocaml'
Processing 2/4: [libdash: ./mk_dot_install.sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./mk_dot_install.sh" (CWD=/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3)
Processing 2/4: [libdash: ./ldconfig.sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./ldconfig.sh" (CWD=/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3)
Processing 2/4: [libdash: make ocaml]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "-C" "ocaml" "test" (CWD=/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3)
- make: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/ocaml'
- PASS '../test/tests/weird_tilde.sh'
- PASS '../test/tests/timeout3' (two runs to fixpoint)
- PASS '../test/tests/tilde_arith'
- PASS '../test/tests/test.sh'
- PASS '../test/tests/syntax' (two runs to fixpoint)
- PASS '../test/tests/send_emails.sh'
- PASS '../test/tests/run_lda.sh'
- PASS '../test/tests/run_grader.sh'
- PASS '../test/tests/redir_indirect' (two runs to fixpoint)
- PASS '../test/tests/grade.sh'
- PASS '../test/tests/grab_submissions.sh'
- PASS '../test/tests/for_spaces.sh'
- PASS '../test/tests/escaping'
- PASS '../test/tests/empty_case'
- PASS '../test/tests/diverge.sh'
- PASS '../test/tests/builtin.trap.exitcode.test'
- PASS '../test/tests/braces_amp.sh' (two runs to fixpoint)
- PASS '../test/tests/backslash' (two runs to fixpoint)
- PASS '../test/tests/aaaa_single'
- PASS '../test/tests/aaaa'
- PASS '../test/pash_tests/wrap_cat.sh'
- PASS '../test/pash_tests/worker.sh'
- PASS '../test/pash_tests/wf_env_test.sh'
- PASS '../test/pash_tests/wf.sh'
- PASS '../test/pash_tests/web-index.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/web-index-aux.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/wc.sh'
- PASS '../test/pash_tests/wait_for_output_and_sigpipe_rest.sh'
- PASS '../test/pash_tests/var_assgn.sh'
- PASS '../test/pash_tests/update-img.sh'
- PASS '../test/pash_tests/unsafe2.sh'
- PASS '../test/pash_tests/unsafe1.sh'
- PASS '../test/pash_tests/unsafe0.sh'
- PASS '../test/pash_tests/unparsing-special-chars.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/unix50.sh'
- PASS '../test/pash_tests/uniq.sh'
- PASS '../test/pash_tests/uniq-c.2.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/trim_primers.sh'
- PASS '../test/pash_tests/trigrams.sh'
- PASS '../test/pash_tests/trap.sh'
- PASS '../test/pash_tests/tr_cs_wc_test.sh'
- PASS '../test/pash_tests/tr-test.sh'
- PASS '../test/pash_tests/topn_env_test.sh'
- PASS '../test/pash_tests/topn.sh'
- PASS '../test/pash_tests/top-n.sh'
- PASS '../test/pash_tests/to_mp3.sh'
- PASS '../test/pash_tests/tilde.sh'
- PASS '../test/pash_tests/test1.sh'
- PASS '../test/pash_tests/test.sh'
- PASS '../test/pash_tests/test-common.sh'
- PASS '../test/pash_tests/temp_test.sh'
- PASS '../test/pash_tests/temp-analytics.sh'
- PASS '../test/pash_tests/tee_web_index_bug.sh'
- PASS '../test/pash_tests/tailprogs.sh'
- PASS '../test/pash_tests/tail.sh'
- PASS '../test/pash_tests/symtab-sha.sh'
- PASS '../test/pash_tests/suggest-ec2.sh'
- PASS '../test/pash_tests/star-escape.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/split_pcap.sh'
- PASS '../test/pash_tests/spell_env_test.sh'
- PASS '../test/pash_tests/spell.sh'
- PASS '../test/pash_tests/spell-grep.sh'
- PASS '../test/pash_tests/sort_env_test.sh'
- PASS '../test/pash_tests/sort_env_small.sh'
- PASS '../test/pash_tests/sort_env.sh'
- PASS '../test/pash_tests/sort.sh'
- PASS '../test/pash_tests/sort-sort.sh'
- PASS '../test/pash_tests/sort-opt_env.sh'
- PASS '../test/pash_tests/sort-opt.sh'
- PASS '../test/pash_tests/sine.sh'
- PASS '../test/pash_tests/shortest_scripts_env_test.sh'
- PASS '../test/pash_tests/shortest_scripts.sh'
- PASS '../test/pash_tests/shortest-scripts.sh'
- PASS '../test/pash_tests/setup.sh'
- PASS '../test/pash_tests/setup-dspash.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/set_bug.sh'
- PASS '../test/pash_tests/set.sh'
- PASS '../test/pash_tests/set-v.sh'
- PASS '../test/pash_tests/set-e.sh'
- PASS '../test/pash_tests/set-e-3.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/set-e-2.sh'
- PASS '../test/pash_tests/set-diff_env_test.sh'
- PASS '../test/pash_tests/set-diff.sh'
- PASS '../test/pash_tests/set-dash-v-x.sh'
- PASS '../test/pash_tests/send_emails.sh'
- PASS '../test/pash_tests/sed-test.sh'
- PASS '../test/pash_tests/search.sh'
- PASS '../test/pash_tests/safe7.sh'
- PASS '../test/pash_tests/safe5.sh'
- PASS '../test/pash_tests/safe4.sh'
- PASS '../test/pash_tests/safe3.sh'
- PASS '../test/pash_tests/safe2.sh'
- PASS '../test/pash_tests/safe1.sh'
- PASS '../test/pash_tests/safe0.sh'
- PASS '../test/pash_tests/run_tests.sh'
- PASS '../test/pash_tests/run_lda.sh'
- PASS '../test/pash_tests/run_grader.sh'
- PASS '../test/pash_tests/run_evaluation.sh'
- PASS '../test/pash_tests/run_all_benchmarks.sh'
- PASS '../test/pash_tests/round_trip.sh'
- PASS '../test/pash_tests/remove_adapter.sh'
- PASS '../test/pash_tests/remote_write.sh'
- PASS '../test/pash_tests/remote_read.sh'
- PASS '../test/pash_tests/redirect_wrapper.sh'
- PASS '../test/pash_tests/redirect_stdin_to.sh'
- PASS '../test/pash_tests/redirect.sh'
- PASS '../test/pash_tests/redir-var-test.sh'
- PASS '../test/pash_tests/readonly.sh'
- PASS '../test/pash_tests/raw-r-sort.sh'
- PASS '../test/pash_tests/r-wc.sh'
- PASS '../test/pash_tests/r-sort.sh'
- PASS '../test/pash_tests/r-shortest-scripts.sh'
- PASS '../test/pash_tests/r-minimal_grep.sh'
- PASS '../test/pash_tests/r-bell_grep.sh'
- PASS '../test/pash_tests/proginf.sh'
- PASS '../test/pash_tests/pretty_print_json.sh'
- PASS '../test/pash_tests/pkg.sh'
- PASS '../test/pash_tests/pcap_bench.sh'
- PASS '../test/pash_tests/pcap.sh'
- PASS '../test/pash_tests/pash_runtime_shell_to_pash.sh'
- PASS '../test/pash_tests/pash_runtime_complete_execution.sh'
- PASS '../test/pash_tests/pash_ptempfile_name.sh'
- PASS '../test/pash_tests/pash_declare_vars.sh'
- PASS '../test/pash_tests/parse.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/page-per-line.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/page-count.sh'
- PASS '../test/pash_tests/pacaur.sh'
- PASS '../test/pash_tests/pa.sh'
- PASS '../test/pash_tests/p2.sh'
- PASS '../test/pash_tests/p1.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/no_in_script.sh'
- PASS '../test/pash_tests/nginx.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/nfa-regex.sh'
- PASS '../test/pash_tests/newline_in_var.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/mk_dot_install.sh'
- PASS '../test/pash_tests/minimal_sort_env_test.sh'
- PASS '../test/pash_tests/minimal_sort.sh'
- PASS '../test/pash_tests/minimal_grep_stdin.sh'
- PASS '../test/pash_tests/minimal_grep_env_test.sh'
- PASS '../test/pash_tests/minimal_grep.sh'
- PASS '../test/pash_tests/micro_10_env_test.sh'
- PASS '../test/pash_tests/micro_1000_env_test.sh'
- PASS '../test/pash_tests/micro_1000.sh'
- PASS '../test/pash_tests/micro_10.sh'
- PASS '../test/pash_tests/merge-wc.sh'
- PASS '../test/pash_tests/merge-uniq.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/max-temp.sh'
- PASS '../test/pash_tests/max-temp-process.sh'
- PASS '../test/pash_tests/max-temp-preprocess.sh'
- PASS '../test/pash_tests/make-ec2.sh'
- PASS '../test/pash_tests/loop1.sh'
- PASS '../test/pash_tests/longest-man.sh'
- PASS '../test/pash_tests/ldconfig.sh'
- PASS '../test/pash_tests/install-deps.sh'
- PASS '../test/pash_tests/innefficient_auto_split.sh'
- PASS '../test/pash_tests/incr.sh'
- PASS '../test/pash_tests/img_convert.sh'
- PASS '../test/pash_tests/identity.sh'
- PASS '../test/pash_tests/heredoc1.sh'
- PASS '../test/pash_tests/hello-world.sh'
- PASS '../test/pash_tests/head_deadlock_fixed_2.sh'
- PASS '../test/pash_tests/head_deadlock_fixed3.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/head_deadlock_fixed.sh'
- PASS '../test/pash_tests/head_deadlock.sh'
- PASS '../test/pash_tests/head.sh'
- PASS '../test/pash_tests/grep_f_script.sh'
- PASS '../test/pash_tests/grep_env_test.sh'
- PASS '../test/pash_tests/grep.sh'
- PASS '../test/pash_tests/grep-test.sh'
- PASS '../test/pash_tests/grade.sh'
- PASS '../test/pash_tests/grab_submissions.sh'
- PASS '../test/pash_tests/get_type_count.sh'
- PASS '../test/pash_tests/get_results.sh'
- PASS '../test/pash_tests/get_hash.sh'
- PASS '../test/pash_tests/get-summary.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/genquality.sh'
- PASS '../test/pash_tests/genomics.sh'
- PASS '../test/pash_tests/generate_single_chrom.sh'
- PASS '../test/pash_tests/gen_pl.sh'
- PASS '../test/pash_tests/gen_data.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/fun-def.sh'
- PASS '../test/pash_tests/for_spaces.sh'
- PASS '../test/pash_tests/for_loop_simple_env_test.sh'
- PASS '../test/pash_tests/for_loop_simple.sh'
- PASS '../test/pash_tests/for-loop.sh'
- PASS '../test/pash_tests/for-echo.sh'
- PASS '../test/pash_tests/export_var_script.sh'
- PASS '../test/pash_tests/expand-u.sh'
- PASS '../test/pash_tests/expand-u-positional.sh'
- PASS '../test/pash_tests/exit_code.sh'
- PASS '../test/pash_tests/execute_unix_benchmarks.sh'
- PASS '../test/pash_tests/exec-redirections.sh'
- PASS '../test/pash_tests/escape-madness.sh'
- PASS '../test/pash_tests/encrypt_files.sh'
- PASS '../test/pash_tests/echo_args.sh'
- PASS '../test/pash_tests/eager_test.sh'
- PASS '../test/pash_tests/eager.sh'
- PASS '../test/pash_tests/eager-no-task-par.sh'
- PASS '../test/pash_tests/drain_stream.sh'
- PASS '../test/pash_tests/double_sort_env_test.sh'
- PASS '../test/pash_tests/double_sort.sh'
- PASS '../test/pash_tests/diverge.sh'
- PASS '../test/pash_tests/distrotest_funs.sh'
- PASS '../test/pash_tests/distrotest_env.sh'
- PASS '../test/pash_tests/distrotest.sh'
- PASS '../test/pash_tests/distro-deps.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/distributed.sh'
- PASS '../test/pash_tests/diff_env_test.sh'
- PASS '../test/pash_tests/diff.sh'
- PASS '../test/pash_tests/dgsh-wc.sh'
- PASS '../test/pash_tests/dgsh-sort.sh'
- PASS '../test/pash_tests/dgsh-raw-sort.sh'
- PASS '../test/pash_tests/dfs_split_reader.sh'
- PASS '../test/pash_tests/demo-spell.sh'
- PASS '../test/pash_tests/deadlock_test_env_test.sh'
- PASS '../test/pash_tests/deadlock_test.sh'
- PASS '../test/pash_tests/count_packets.sh'
- PASS '../test/pash_tests/count.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/convert_to_fast.sh'
- PASS '../test/pash_tests/concat.sh'
- PASS '../test/pash_tests/compress_files.sh'
- PASS '../test/pash_tests/compile.sh'
- PASS '../test/pash_tests/comm-par-test_env_test.sh'
- PASS '../test/pash_tests/comm-par-test2_env_test.sh'
- PASS '../test/pash_tests/comm-par-test2.sh'
- PASS '../test/pash_tests/comm-par-test.sh'
- PASS '../test/pash_tests/cmd_sbst_subscript.sh'
- PASS '../test/pash_tests/cmd_sbst.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/clone_compress_repo.sh'
- PASS '../test/pash_tests/circus.sh'
- PASS '../test/pash_tests/cat_output_files.sh'
- PASS '../test/pash_tests/cat-redir-fail.sh'
- PASS '../test/pash_tests/call_distrib_planner_example.sh'
- PASS '../test/pash_tests/buggy_non_newline_input.sh'
- PASS '../test/pash_tests/braces_amp.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/bio4.sh'
- PASS '../test/pash_tests/bigrams_env_test.sh'
- PASS '../test/pash_tests/bigrams_aux_map.sh'
- PASS '../test/pash_tests/bigrams.sh'
- PASS '../test/pash_tests/bi-grams.sh'
- PASS '../test/pash_tests/bi-gram.aux.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/bell_grep.sh'
- PASS '../test/pash_tests/bam_to_sam.sh'
- PASS '../test/pash_tests/autogen.sh'
- PASS '../test/pash_tests/args_with_spaces.sh'
- PASS '../test/pash_tests/archive.sh'
- PASS '../test/pash_tests/ann-agg.sh'
- PASS '../test/pash_tests/ann-agg-2.sh'
- PASS '../test/pash_tests/alt_bigrams_funs.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/alt_bigrams_env_test.sh'
- PASS '../test/pash_tests/alt_bigrams.sh'
- PASS '../test/pash_tests/add.sh'
- PASS '../test/pash_tests/9.sh'
- PASS '../test/pash_tests/8_1.sh'
- PASS '../test/pash_tests/8.varlog.sh'
- PASS '../test/pash_tests/8.sh'
- PASS '../test/pash_tests/8.3_3.sh'
- PASS '../test/pash_tests/8.3_2.sh'
- PASS '../test/pash_tests/8.2_2.sh'
- PASS '../test/pash_tests/8.2_1.sh'
- PASS '../test/pash_tests/7_2.sh'
- PASS '../test/pash_tests/7_1.sh'
- PASS '../test/pash_tests/7.sh'
- PASS '../test/pash_tests/7.nginx.sh'
- PASS '../test/pash_tests/6_7.sh'
- PASS '../test/pash_tests/6_5.sh'
- PASS '../test/pash_tests/6_4.sh'
- PASS '../test/pash_tests/6_3.sh'
- PASS '../test/pash_tests/6_2.sh'
- PASS '../test/pash_tests/6_1_2.sh'
- PASS '../test/pash_tests/6_1_1.sh'
- PASS '../test/pash_tests/6_1.sh'
- PASS '../test/pash_tests/6.sh'
- PASS '../test/pash_tests/6.msg.sh'
- PASS '../test/pash_tests/5.sh'
- PASS '../test/pash_tests/5.apachelog.sh'
- PASS '../test/pash_tests/4_3b.sh'
- PASS '../test/pash_tests/4_3.sh'
- PASS '../test/pash_tests/4.sh'
- PASS '../test/pash_tests/4.gitkernel.sh'
- PASS '../test/pash_tests/3_3.sh'
- PASS '../test/pash_tests/3_2.sh'
- PASS '../test/pash_tests/3_1.sh'
- PASS '../test/pash_tests/36.sh'
- PASS '../test/pash_tests/35.sh'
- PASS '../test/pash_tests/34.sh'
- PASS '../test/pash_tests/33.sh'
- PASS '../test/pash_tests/32.sh'
- PASS '../test/pash_tests/31.sh'
- PASS '../test/pash_tests/30.sh'
- PASS '../test/pash_tests/3.sh'
- PASS '../test/pash_tests/2_2.sh'
- PASS '../test/pash_tests/2_1.sh'
- PASS '../test/pash_tests/29.sh'
- PASS '../test/pash_tests/28.sh'
- PASS '../test/pash_tests/27.sh'
- PASS '../test/pash_tests/26.sh'
- PASS '../test/pash_tests/25.sh'
- PASS '../test/pash_tests/24.sh'
- PASS '../test/pash_tests/23.sh'
- PASS '../test/pash_tests/22.sh'
- PASS '../test/pash_tests/21.sh'
- PASS '../test/pash_tests/20.sh'
- PASS '../test/pash_tests/2.unrtf.sh'
- PASS '../test/pash_tests/2.sh'
- PASS '../test/pash_tests/1_1.sh'
- PASS '../test/pash_tests/19.sh'
- PASS '../test/pash_tests/18.sh'
- PASS '../test/pash_tests/17.sh'
- PASS '../test/pash_tests/16.sh'
- PASS '../test/pash_tests/15.sh'
- PASS '../test/pash_tests/14.sh'
- PASS '../test/pash_tests/13.sh'
- PASS '../test/pash_tests/12.sh'
- PASS '../test/pash_tests/11.sh'
- PASS '../test/pash_tests/10.sh'
- PASS '../test/pash_tests/1.sh'
- make: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/libdash.0.3/ocaml'
-> compiled libdash.0.3
-> removed libdash.0.3
-> installed libdash.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 20:17.29 ---> saved as "6f2be6d6ce04cdabb6d2cd9eae5df9512a054b2a8b5f4cda90224acb9f707f0e"
Job succeeded
2025-08-12 20:17.38: Job succeeded