- github
- ocaml
- opam-repository
- 19c70f
- compilers,4.14,dune-configurator.3.22.0~alpha2,revdeps,libdash.0.3
(not at the head of any monitored branch or PR)
2026-03-16 19:15.32: New job: test libdash.0.3 with dune-configurator.3.22.0~alpha2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29547/head (19c70fd6a788b154ec5e9fe26bca1d12fb2519be)
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/29547/head" && git reset --hard 19c70fd6
git fetch origin master
git merge --no-edit 4f056bfedf536e66065c3783e694e6aa0b38261a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
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 dune-configurator.3.22.0~alpha2 3.22.0~alpha2
RUN opam reinstall dune-configurator.3.22.0~alpha2; \
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" != 'dune-configurator.3.22.0~alpha2' && 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-13\""; 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-13\""; 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 .
2026-03-16 19:15.32: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-dune-configurator.3.22.0~alpha2-libdash.0.3-19c70fd6a788b154ec5e9fe26bca1d12fb2519be"
2026-03-16 19:15.32: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
(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 dune-configurator.3.22.0~alpha2 3.22.0~alpha2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-configurator.3.22.0~alpha2;\
\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\" != 'dune-configurator.3.22.0~alpha2' && 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-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\" != '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-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\" != '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"))
)
2026-03-16 19:15.32: Waiting for resource in pool OCluster
2026-03-17 01:00.20: Waiting for worker…
2026-03-17 01:02.03: Got resource from pool OCluster
Building on eumache
All commits already cached
Updating files: 69% (12759/18461)
Updating files: 70% (12923/18461)
Updating files: 71% (13108/18461)
Updating files: 72% (13292/18461)
Updating files: 73% (13477/18461)
Updating files: 74% (13662/18461)
Updating files: 75% (13846/18461)
Updating files: 76% (14031/18461)
Updating files: 77% (14215/18461)
Updating files: 78% (14400/18461)
Updating files: 79% (14585/18461)
Updating files: 80% (14769/18461)
Updating files: 81% (14954/18461)
Updating files: 82% (15139/18461)
Updating files: 83% (15323/18461)
Updating files: 84% (15508/18461)
Updating files: 85% (15692/18461)
Updating files: 86% (15877/18461)
Updating files: 87% (16062/18461)
Updating files: 88% (16246/18461)
Updating files: 89% (16431/18461)
Updating files: 90% (16615/18461)
Updating files: 91% (16800/18461)
Updating files: 92% (16985/18461)
Updating files: 93% (17169/18461)
Updating files: 94% (17354/18461)
Updating files: 95% (17538/18461)
Updating files: 96% (17723/18461)
Updating files: 97% (17908/18461)
Updating files: 98% (18092/18461)
Updating files: 99% (18277/18461)
Updating files: 100% (18461/18461)
Updating files: 100% (18461/18461), done.
HEAD is now at 4f056bfedf Merge pull request #29543 from Zaneham/add-olint-0.1.0
Updating 4f056bfedf..19c70fd6a7
Fast-forward
Auto packing the repository in the background for optimum performance.
See "git help gc" for manual housekeeping.
warning: The last gc run reported the following. Please correct the root cause
and remove .git/gc.log
Automatic cleanup will not be performed until the file is removed.
warning: There are too many unreachable loose objects; run 'git prune' to remove them.
.../chrome-trace/chrome-trace.3.22.0~alpha2/opam | 39 +++++++++++
.../dune-action-plugin.3.22.0~alpha2/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.0~alpha2/opam | 39 +++++++++++
.../dune-build-info.3.22.0~alpha2/opam | 45 +++++++++++++
.../dune-configurator.3.22.0~alpha2/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.0~alpha2/opam | 42 ++++++++++++
.../dune-private-libs.3.22.0~alpha2/opam | 50 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha2/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.0~alpha2/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.0~alpha2/opam | 37 +++++++++++
packages/dune/dune.3.22.0~alpha2/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.0~alpha2/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.0~alpha2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha2/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.0~alpha2/opam | 38 +++++++++++
packages/stdune/stdune.3.22.0~alpha2/opam | 46 +++++++++++++
.../top-closure/top-closure.3.22.0~alpha2/opam | 38 +++++++++++
packages/xdg/xdg.3.22.0~alpha2/opam | 39 +++++++++++
18 files changed, 796 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.0~alpha2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.0~alpha2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.0~alpha2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.0~alpha2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.0~alpha2/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.0~alpha2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.0~alpha2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.0~alpha2/opam
create mode 100644 packages/dune-site/dune-site.3.22.0~alpha2/opam
create mode 100644 packages/dune/dune.3.22.0~alpha2/opam
create mode 100644 packages/dyn/dyn.3.22.0~alpha2/opam
create mode 100644 packages/fs-io/fs-io.3.22.0~alpha2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha2/opam
create mode 100644 packages/ordering/ordering.3.22.0~alpha2/opam
create mode 100644 packages/stdune/stdune.3.22.0~alpha2/opam
create mode 100644 packages/top-closure/top-closure.3.22.0~alpha2/opam
create mode 100644 packages/xdg/xdg.3.22.0~alpha2/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e' locally
docker.io/ocaml/opam@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e: Pulling from ocaml/opam
866771c43bf5: Already exists
1e49bea09367: Already exists
e793768537e6: Already exists
ed323d3d481a: Already exists
7df34a5cd5f1: Already exists
fd712d3eb935: Already exists
4b9fb8c99118: Already exists
9d9a01948b94: Already exists
0f1514f90b32: Already exists
e1ec5a753447: Already exists
03cc323e2f71: Already exists
c09c08ea9749: Already exists
b36b619f8e6b: Already exists
195344ca5274: Already exists
228ee78582a6: Already exists
504bde1c25b3: Already exists
9d8b1356c89f: Already exists
9d8b1356c89f: Already exists
568fb6dda155: Already exists
c499c9198aea: Already exists
048e5e358118: Already exists
871ca48eb45d: Already exists
4f4fb700ef54: Already exists
a5a2568b9df9: Already exists
068cf3106ac8: Already exists
559f54ec9b29: Already exists
798ffd96fde5: Already exists
e9a891bf80d7: Already exists
d720cfe12674: Already exists
c81c932f4a91: Already exists
79f24fa3bb11: Already exists
8c1debcd8c20: Already exists
1bb2cfea7250: Already exists
2b3d3ca75e4c: Already exists
557cacaf263c: Already exists
d10483022eef: Already exists
7b62a90d8223: Already exists
28ce8ea66e72: Already exists
d975909ea717: Already exists
5c215c69c247: Already exists
e7c082452a54: Already exists
d1a4c61b613c: Already exists
0195a6679dc6: Already exists
410dfa46d7be: Already exists
b7b221f39cbe: Already exists
Digest: sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
Status: Downloaded newer image for ocaml/opam@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
2026-03-17 01:02.10 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" 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-03-17 01:02.10 ---> using "f3ed7bdbef828c9c0b079b10505c5f05c3c9adcca11ce5bf2dac2a4183e099d8" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-17 01:02.10 ---> using "5bf6adb7b45bb7e0c215b8f509c71a8dae73a9a2060efcc27df9d4ef6c6d3350" 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.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, 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.2
2026-03-17 01:02.10 ---> using "0546f18fa5979677ee22eb9f2fcf19ab371564e845d317c2c70e41dd97dc22dd" 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-03-17 01:02.10 ---> using "0a7188cbe95f4fe0ff26694977eb8794c975bdb534078da98a06d6c7373289b4" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 01:02.11 ---> using "bac94271bd2933048ab9ec083de7359406ae7b709f9e625d1aacde394e5b6b85" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 01:02.11 ---> using "1963dd823dac22306d550e5e9c9f971346ae5d465407ab924aff86b04a5120b3" 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 trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [111 kB]
- Fetched 10.0 MB in 2s (5406 kB/s)
- Reading package lists...
-
2026-03-17 01:02.11 ---> using "2bbae9754f2da55382df5a713573b4f2579b518f80eaef97920d7868fdc429fa" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune-configurator.3.22.0~alpha2 3.22.0~alpha2"))
dune-configurator is now pinned to version 3.22.0~alpha2
2026-03-17 01:02.11 ---> using "f8e40a83da9892aad73dee81865c4f15b894fd506ea93a49d392900925751de3" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-configurator.3.22.0~alpha2;\
\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\" != 'dune-configurator.3.22.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune-configurator.3.22.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 3 packages
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.22.0~alpha2 [required by dune-configurator]
- install dune-configurator 3.22.0~alpha2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.22.0~alpha2, dune-configurator.3.22.0~alpha2 (cached)
-> installed dune.3.22.0~alpha2
-> installed csexp.1.5.2
-> installed dune-configurator.3.22.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 01:02.11 ---> using "67b904f2d73d6788680639795bd2fb0e77bfc952d186028cfe5ace97eb311540" 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-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\" != '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 27 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 biniou 1.2.2 [required by atdgen]
- install camlp-streams 5.0.1 [required by biniou]
- install cmdliner 2.1.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 ctypes 0.24.0 [required by libdash]
- install ctypes-foreign 0.24.0 [required by libdash]
- install easy-format 1.3.4 [required by atd]
- install integers 0.7.0 [required by ctypes]
- install libdash 0.3
- install menhir 20260209 [required by atd]
- install menhirCST 20260209 [required by menhir]
- install menhirGLR 20260209 [required by menhir]
- install menhirLib 20260209 [required by menhir]
- install menhirSdk 20260209 [required by menhir]
- install ocamlfind 1.9.8 [required by libdash]
- install re 1.14.0 [required by atdgen]
- install seq base [required by 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"
- 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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../00-libmagic-mgc_1%3a5.46-5_amd64.deb ...
- Unpacking libmagic-mgc (1:5.46-5) ...
- Selecting previously unselected package libmagic1t64:amd64.
- Preparing to unpack .../01-libmagic1t64_1%3a5.46-5_amd64.deb ...
- Unpacking libmagic1t64:amd64 (1:5.46-5) ...
- Selecting previously unselected package file.
- Preparing to unpack .../02-file_1%3a5.46-5_amd64.deb ...
- Unpacking file (1:5.46-5) ...
- Selecting previously unselected package m4.
- Preparing to unpack .../03-m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Selecting previously unselected package autoconf.
- Preparing to unpack .../04-autoconf_2.72-3.1_all.deb ...
- Unpacking autoconf (2.72-3.1) ...
- Selecting previously unselected package autotools-dev.
- Preparing to unpack .../05-autotools-dev_20240727.1_all.deb ...
- Unpacking autotools-dev (20240727.1) ...
- Selecting previously unselected package automake.
- Preparing to unpack .../06-automake_1%3a1.17-4_all.deb ...
- Unpacking automake (1:1.17-4) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../07-libffi-dev_3.4.8-2_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.8-2) ...
- Selecting previously unselected package libltdl7:amd64.
- Preparing to unpack .../08-libltdl7_2.5.4-4_amd64.deb ...
- Unpacking libltdl7:amd64 (2.5.4-4) ...
- Selecting previously unselected package libltdl-dev:amd64.
- Preparing to unpack .../09-libltdl-dev_2.5.4-4_amd64.deb ...
- Unpacking libltdl-dev:amd64 (2.5.4-4) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../10-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package libtool.
- Preparing to unpack .../11-libtool_2.5.4-4_all.deb ...
- Unpacking libtool (2.5.4-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../12-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../13-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../14-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libmagic-mgc (1:5.46-5) ...
- Setting up libmagic1t64:amd64 (1:5.46-5) ...
- Setting up m4 (1.4.19-8) ...
- Setting up file (1:5.46-5) ...
- Setting up libffi-dev:amd64 (3.4.8-2) ...
- Setting up autotools-dev (20240727.1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libltdl7:amd64 (2.5.4-4) ...
- Setting up autoconf (2.72-3.1) ...
- Setting up automake (1:1.17-4) ...
- update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode
- Setting up libtool (2.5.4-4) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up libltdl-dev:amd64 (2.5.4-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved atd.2.16.0, atdgen-runtime.2.16.0 (cached)
-> retrieved atdgen.2.15.0 (cached)
-> retrieved biniou.1.2.2 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved ctypes.0.24.0, ctypes-foreign.0.24.0 (cached)
-> installed conf-autoconf.0.2
-> installed conf-libtool.1
-> installed conf-pkg-config.4
-> retrieved easy-format.1.3.4 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved libdash.0.3 (cached)
-> installed conf-libffi.2.0.0
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (cached)
-> installed camlp-streams.5.0.1
-> installed conf-automake.1
-> installed easy-format.1.3.4
-> retrieved ocamlfind.1.9.8 (cached)
-> installed menhirCST.20260209
-> retrieved re.1.14.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> installed conf-aclocal.2
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved yojson.2.2.2 (cached)
-> installed stdlib-shims.0.3.0
-> installed menhirLib.20260209
-> installed menhirGLR.20260209
-> installed menhirSdk.20260209
-> installed biniou.1.2.2
-> installed integers.0.7.0
-> installed re.1.14.0
-> installed yojson.2.2.2
-> installed atdgen-runtime.2.16.0
-> installed ocamlfind.1.9.8
-> installed cmdliner.2.1.0
-> installed ctypes.0.24.0
-> installed ctypes-foreign.0.24.0
-> installed menhir.20260209
-> 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)
2026-03-17 01:04.25 ---> saved as "ea6560a7a61bf81397ebcf9ecf45da46fc7501ac4461868177eff25176b34b80"
/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)
2026-03-17 01:06.01 ---> saved as "8fdec4f3e974db14b3b8580d2104bf7373ad511e314f0dc340f05ad6528cd0db"
/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-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\" != '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/4.14/.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/4.14/.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/4.14/.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/4.14/.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/4.14/.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/4.14/.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/4.14/.opam-switch/build/libdash.0.3/_build" (CWD=/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3)
- checking for a BSD-compatible install... /usr/bin/install -c
- checking whether sleep supports fractional seconds... yes
- checking filesystem timestamp resolution... 0.01
- 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 xargs -n works... 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 ranlib... ranlib
- checking for archiver @FILE support...
- @
- checking for strip... strip
- 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/4.14/.opam-switch/build/libdash.0.3)
- make all-recursive
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3'
- Making all in src
- make[2]: Entering directory '/home/opam/.opam/4.14/.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/4.14/.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
- 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/4.14/.opam-switch/build/libdash.0.3/src'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/src'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.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/4.14/.opam-switch/build/libdash.0.3)
- Making install in src
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/src'
- make install-am
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/src'
- make[3]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/src'
- /usr/bin/mkdir -p '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/_build/lib'
- /bin/bash ../libtool --mode=install /usr/bin/install -c libdash.la dlldash.la '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/_build/lib'
- libtool: install: /usr/bin/install -c .libs/libdash.so.0.0.0 /home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/_build/lib/libdash.so.0.0.0
- libtool: install: (cd /home/opam/.opam/4.14/.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/4.14/.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/4.14/.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/4.14/.opam-switch/build/libdash.0.3/_build/lib/dlldash.so.0.0.0
- libtool: install: (cd /home/opam/.opam/4.14/.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/4.14/.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/4.14/.opam-switch/build/libdash.0.3/_build/lib/dlldash.la
- libtool: finish: PATH="/home/opam/.opam/4.14/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/_build/lib
- ----------------------------------------------------------------------
- Libraries have been installed in:
- /home/opam/.opam/4.14/.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/4.14/.opam-switch/build/libdash.0.3/_build/bin'
- /bin/bash ../libtool --mode=install /usr/bin/install -c dash '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/_build/bin'
- libtool: install: /usr/bin/install -c dash /home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/_build/bin/dash
- /usr/bin/mkdir -p '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/_build/lib'
- /usr/bin/install -c -m 644 libdash.a '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/_build/lib'
- ( cd '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/_build/lib' && ranlib libdash.a )
- /usr/bin/mkdir -p '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/_build/share/man/man1'
- /usr/bin/install -c -m 644 dash.1 '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/_build/share/man/man1'
- make[3]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/src'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/src'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/src'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3'
- make[2]: Entering directory '/home/opam/.opam/4.14/.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/4.14/.opam-switch/build/libdash.0.3'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.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/4.14/lib/libdash" (CWD=/home/opam/.opam/4.14/.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/4.14/.opam-switch/build/libdash.0.3)
- make: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/ocaml'
- ocamlfind ocamlmklib -g -package str,ctypes,ctypes.foreign -L/home/opam/.opam/4.14/.opam-switch/build/libdash.0.3/_build/lib -ldash dash.mli dash.ml ast.mli ast.ml -o dash
- ocamlfind: [WARNING] Package `threads': Linking problems may arise because of the missing -thread or -vmthread switch
- ./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/4.14/.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/4.14/.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/4.14/.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/4.14/.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/4.14/.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/4.14/.opam-switch/build/libdash.0.3)
- make: Entering directory '/home/opam/.opam/4.14/.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/4.14/.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)
2026-03-17 01:07.39 ---> saved as "f7ce5a00e81c199d2d8e3a5ac8a199367034bfa5bab3dc8f71b9eebbcd7f5df9"
Job succeeded
2026-03-17 01:07.46: Job succeeded