- github
- ocaml
- opam-repository
- 6f0fc6
- compilers,4.14,mirage-runtime.4.10.4,revdeps,aws-cloudformation.0.1.0
(not at the head of any monitored branch or PR)
2025-11-21 11:38.58: New job: test aws-cloudformation.0.1.0 with mirage-runtime.4.10.4, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/28942/head (6f0fc6a951253ffe47c1572d3ded0aa67df3d990)
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/28942/head" && git reset --hard 6f0fc6a9
git fetch origin master
git merge --no-edit ee3428377a13c3c9716b6f791c33441cfb542498
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c
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 mirage-runtime.4.10.4 4.10.4
RUN opam reinstall mirage-runtime.4.10.4; \
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" != 'mirage-runtime.4.10.4' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall aws-cloudformation.0.1.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'aws-cloudformation.0.1.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test aws-cloudformation.0.1.0) || true
RUN opam reinstall --with-test --verbose aws-cloudformation.0.1.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'aws-cloudformation.0.1.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2025-11-21 11:38.58: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c-mirage-runtime.4.10.4-aws-cloudformation.0.1.0-6f0fc6a951253ffe47c1572d3ded0aa67df3d990"
2025-11-21 11:38.58: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c)
(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 mirage-runtime.4.10.4 4.10.4"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall mirage-runtime.4.10.4;\
\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\" != 'mirage-runtime.4.10.4' && 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 aws-cloudformation.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'aws-cloudformation.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test aws-cloudformation.0.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose aws-cloudformation.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'aws-cloudformation.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-11-21 11:38.58: Waiting for resource in pool OCluster
2025-11-21 13:41.53: Waiting for worker…
2025-11-21 13:45.13: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files: 64% (12174/18785)
Updating files: 65% (12211/18785)
Updating files: 66% (12399/18785)
Updating files: 67% (12586/18785)
Updating files: 68% (12774/18785)
Updating files: 69% (12962/18785)
Updating files: 70% (13150/18785)
Updating files: 71% (13338/18785)
Updating files: 72% (13526/18785)
Updating files: 73% (13714/18785)
Updating files: 74% (13901/18785)
Updating files: 75% (14089/18785)
Updating files: 76% (14277/18785)
Updating files: 77% (14465/18785)
Updating files: 78% (14653/18785)
Updating files: 79% (14841/18785)
Updating files: 80% (15028/18785)
Updating files: 81% (15216/18785)
Updating files: 82% (15404/18785)
Updating files: 83% (15592/18785)
Updating files: 84% (15780/18785)
Updating files: 85% (15968/18785)
Updating files: 86% (16156/18785)
Updating files: 87% (16343/18785)
Updating files: 88% (16531/18785)
Updating files: 89% (16719/18785)
Updating files: 90% (16907/18785)
Updating files: 91% (17095/18785)
Updating files: 92% (17283/18785)
Updating files: 93% (17471/18785)
Updating files: 94% (17658/18785)
Updating files: 95% (17846/18785)
Updating files: 96% (18034/18785)
Updating files: 97% (18222/18785)
Updating files: 98% (18410/18785)
Updating files: 99% (18598/18785)
Updating files: 100% (18785/18785)
Updating files: 100% (18785/18785), done.
HEAD is now at ee3428377a Merge pull request #28925 from edwintorok/rocky
Updating ee3428377a..6f0fc6a951
Fast-forward
packages/mirage-runtime/mirage-runtime.4.10.4/opam | 45 +++++++++++++++
packages/mirage/mirage.4.10.4/opam | 64 ++++++++++++++++++++++
2 files changed, 109 insertions(+)
create mode 100644 packages/mirage-runtime/mirage-runtime.4.10.4/opam
create mode 100644 packages/mirage/mirage.4.10.4/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c)
2025-11-21 13:45.16 ---> using "e1d8c7e6beb03face60eaf04e7070eb8fe39365c831388bb928a8a0dc291c14b" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-11-21 13:45.16 ---> using "2307f4f0390ea55b0743cced2b0ef2c439085d38b1bcfe5527a1eea2d8f28a7b" 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
2025-11-21 13:45.16 ---> using "476926e1c541f3b8e2a490bca49177a7fda19b1c01d3393e3e0155a9c8e57d37" 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~beta1
# 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
2025-11-21 13:45.16 ---> using "f29c5689f62c7ea3a8637db8ec34207e109fb97b0cdeb9e76d16c5be29766fea" 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-11-21 13:45.16 ---> using "95b7b1f66abb06f8d3a8f197d1e8d2b38f8b35c8e65e7fbee6a5b1e76aa55116" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-21 13:45.18 ---> using "3ea6125d37318f691fa104d52c30e245a378ea5c21b7f441202ad8f73078ef28" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-21 13:45.18 ---> using "8a4f01dd5788974401caaea12f7798f7828afdc7bf5d8ea6f8ff15833dea2f77" 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 [9670 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [71.8 kB]
- Fetched 9973 kB in 2s (5212 kB/s)
- Reading package lists...
-
2025-11-21 13:45.18 ---> using "743ffdfadbe6001a674c844290e4b7561005ae96a405d0b7abacad246edc635a" from cache
/home/opam: (run (shell "opam pin add -k version -yn mirage-runtime.4.10.4 4.10.4"))
mirage-runtime is now pinned to version 4.10.4
2025-11-21 13:45.18 ---> using "51f802b4f0f351ea48c79bfd32bd54f6e18b256a6da536dbf6e398266c3cb6b6" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall mirage-runtime.4.10.4;\
\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\" != 'mirage-runtime.4.10.4' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
mirage-runtime.4.10.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 16 packages
- install base-bytes base [required by ocplib-endian]
- install cmdliner 2.0.0 [required by mirage-runtime]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install domain-name 0.5.0 [required by ipaddr]
- install dune 3.20.2 [required by mirage-runtime]
- install dune-configurator 3.20.2 [required by lwt]
- install ipaddr 5.6.1 [required by mirage-runtime]
- install logs 0.10.0 [required by mirage-runtime]
- install lwt 5.9.2 [required by mirage-runtime]
- install macaddr 5.6.1 [required by ipaddr]
- install mirage-runtime 4.10.4 (pinned)
- install ocamlbuild 0.16.1 [required by logs]
- install ocamlfind 1.9.8 [required by logs]
- install ocplib-endian 1.2 [required by lwt]
- install topkg 1.1.1 [required by logs]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.2.0.0 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved domain-name.0.5.0 (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
-> retrieved ipaddr.5.6.1, macaddr.5.6.1 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt.5.9.2 (cached)
-> installed cmdliner.2.0.0
-> retrieved mirage-runtime.4.10.4 (https://github.com/mirage/mirage/releases/download/v4.10.4/mirage-4.10.4.tbz)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved topkg.1.1.1 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed dune.3.20.2
-> installed macaddr.5.6.1
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed domain-name.0.5.0
-> installed ocplib-endian.1.2
-> installed ipaddr.5.6.1
-> installed dune-configurator.3.20.2
-> installed lwt.5.9.2
-> installed logs.0.10.0
-> installed mirage-runtime.4.10.4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-21 13:45.18 ---> using "4ed5754f912a8b3c075a91246dba1e1c7c41b8221862593044caed6423a64a59" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall aws-cloudformation.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'aws-cloudformation.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
aws-cloudformation.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 34 packages
- install angstrom 0.16.1 [required by uri]
- install astring 0.8.5 [required by ocb-stubblr]
- install aws 1.0.2 [required by aws-cloudformation]
- install aws-cloudformation 0.1.0
- install base v0.16.4 [required by ppx_sexp_conv]
- install bigarray-compat 1.1.0 [required by cstruct]
- install bigstringaf 0.10.0 [required by angstrom]
- install calendar 3.0.0 [required by aws]
- install conf-gmp 5 [required by zarith]
- install conf-pkg-config 4 [required by zarith]
- install cpuid 0.1.2 [required by nocrypto]
- install cstruct 6.0.1 [required by nocrypto]
- install cstruct-lwt 6.0.1 [required by nocrypto]
- install ezxmlm 1.1.0 [required by aws]
- install mirage-no-solo5 1 (deprecated) [required by nocrypto]
- install mirage-no-xen 1 (deprecated) [required by nocrypto]
- install nocrypto 0.5.4-2 [required by aws]
- install num 1.6 [required by sexplib]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocb-stubblr 0.1.1-1 [required by nocrypto]
- install parsexp v0.16.0 [required by sexplib]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.0.3 [required by nocrypto]
- install ppx_sexp_conv v0.16.0 [required by nocrypto]
- install ppxlib 0.35.0 [required by ppx_deriving, ppx_sexp_conv]
- install re 1.14.0 [required by calendar]
- install sexplib v0.16.0 [required by nocrypto]
- install sexplib0 v0.16.0 [required by ppx_sexp_conv, sexplib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install stringext 1.6.0 [required by uri]
- install uri 4.4.0 [required by aws]
- install xmlm 1.4.0 [required by ezxmlm]
- install zarith 1.14 [required by nocrypto]
The following system packages will first need to be installed:
libgmp-dev pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config"
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (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 ... 20622 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved aws.1.0.2 (cached)
-> retrieved aws-cloudformation.0.1.0 (https://opam.ocaml.org/cache)
-> retrieved base.v0.16.4 (cached)
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved calendar.3.0.0 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved cpuid.0.1.2 (cached)
-> installed conf-pkg-config.4
-> installed conf-gmp.5
-> retrieved cstruct.6.0.1, cstruct-lwt.6.0.1 (cached)
-> retrieved ezxmlm.1.1.0 (cached)
-> installed mirage-no-solo5.1
-> installed mirage-no-xen.1
-> installed bigarray-compat.1.1.0
-> installed cpuid.0.1.2
-> installed bigstringaf.0.10.0
-> retrieved nocrypto.0.5.4-2 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocb-stubblr.0.1.1-1 (cached)
-> retrieved parsexp.v0.16.0 (cached)
-> installed cstruct.6.0.1
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.0.3 (cached)
-> retrieved ppx_sexp_conv.v0.16.0 (cached)
-> installed ppx_derivers.1.2.1
-> installed cstruct-lwt.6.0.1
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved sexplib.v0.16.0 (cached)
-> retrieved sexplib0.v0.16.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved uri.4.4.0 (cached)
-> retrieved xmlm.1.4.0 (cached)
-> retrieved zarith.1.14 (cached)
-> installed stdlib-shims.0.3.0
-> installed astring.0.8.5
-> installed stringext.1.6.0
-> installed sexplib0.v0.16.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed ocb-stubblr.0.1.1-1
-> installed num.1.6
-> installed re.1.14.0
-> installed xmlm.1.4.0
-> installed angstrom.0.16.1
-> installed ezxmlm.1.1.0
-> installed parsexp.v0.16.0
-> installed calendar.3.0.0
-> installed sexplib.v0.16.0
-> installed uri.4.4.0
-> installed zarith.1.14
-> installed base.v0.16.4
-> installed ppxlib.0.35.0
-> installed ppx_deriving.6.0.3
-> installed ppx_sexp_conv.v0.16.0
-> installed nocrypto.0.5.4-2
-> installed aws.1.0.2
-> installed aws-cloudformation.0.1.0
Done.
<><> mirage-no-xen.1 installed successfully <><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
<><> mirage-no-solo5.1 installed successfully <><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2025-11-21 13:46.34 ---> saved as "7e3ba0a9dbec8d02f65a563a544631f2b2a07496cecf1bd307eac3cd585d9674"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test aws-cloudformation.0.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile aws-cloudformation 0.1.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved aws-cloudformation.0.1.0 (https://opam.ocaml.org/cache)
-> removed aws-cloudformation.0.1.0
-> installed aws-cloudformation.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-21 13:46.51 ---> saved as "202dd1af6eca1b8eab8d0394c49cee88cfe4e8cdaa1a3bf51c4507e415fe0e9f"
/home/opam: (run (shell "opam reinstall --with-test --verbose aws-cloudformation.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'aws-cloudformation.0.1.0' && 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 aws-cloudformation 0.1.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [aws-cloudformation.0.1.0: extract]
-> retrieved aws-cloudformation.0.1.0 (cached)
Processing 2/4: [aws-cloudformation: ocaml setup.ml]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "setup.ml" "-configure" "--prefix" "/home/opam/.opam/4.14" (CWD=/home/opam/.opam/4.14/.opam-switch/build/aws-cloudformation.0.1.0)
- File "./setup.ml", line 318, characters 20-36:
- 318 | String.compare (String.lowercase s1) (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 318, characters 42-58:
- 318 | String.compare (String.lowercase s1) (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 14-30:
- 327 | (String.lowercase s1) = (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 38-54:
- 327 | (String.lowercase s1) = (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 330, characters 25-41:
- 330 | Hashtbl.hash (String.lowercase s)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 368, characters 10-26:
- 368 | String.lowercase buf
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 474, characters 13-29:
- 474 | String.lowercase
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 1381, characters 23-41:
- 1381 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "./setup.ml", line 1825, characters 16-33:
- 1825 | concat dir (String.capitalize base)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "./setup.ml", line 1831, characters 16-35:
- 1831 | concat dir (String.uncapitalize base)
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 2916, characters 10-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2922, characters 10-21:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2925, characters 23-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2928, characters 20-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2931, characters 10-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2934, characters 16-28:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 15-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 32-42:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 48-61:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2936, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2937, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2938, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3088, characters 4-21:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3107, characters 24-40:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3109, characters 21-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 41-53:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 41-54:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 50-62:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 50-63:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3118, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3131, characters 15-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3229, characters 16-34:
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "setup.ml", line 5847, characters 11-28:
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "setup.ml", line 5848, characters 11-30:
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 6484, characters 33-42:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 6485, characters 36-45:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
-
- Configuration:
- ocamlfind: ........................................... /home/opam/.opam/4.14/bin/ocamlfind
- ocamlc: .............................................. /home/opam/.opam/4.14/bin/ocamlc.opt
- ocamlopt: ............................................ /home/opam/.opam/4.14/bin/ocamlopt.opt
- ocamlbuild: .......................................... /home/opam/.opam/4.14/bin/ocamlbuild
- Package name: ........................................ aws-cloudformation
- Package version: ..................................... 0.1.0
- os_type: ............................................. Unix
- system: .............................................. linux
- architecture: ........................................ amd64
- ccomp_type: .......................................... cc
- ocaml_version: ....................................... 4.14.2
- standard_library_default: ............................ /home/opam/.opam/4.14/lib/ocaml
- standard_library: .................................... /home/opam/.opam/4.14/lib/ocaml
- bytecomp_c_compiler: ................................. gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64
- native_c_compiler: ................................... gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64
- model: ............................................... default
- ext_obj: ............................................. .o
- ext_asm: ............................................. .s
- ext_lib: ............................................. .a
- ext_dll: ............................................. .so
- default_executable_name: ............................. a.out
- systhread_supported: ................................. true
- Install architecture-independent files dir: .......... /home/opam/.opam/4.14
- Install architecture-dependent files in dir: ......... $prefix
- User executables: .................................... $exec_prefix/bin
- System admin executables: ............................ $exec_prefix/sbin
- Program executables: ................................. $exec_prefix/libexec
- Read-only single-machine data: ....................... $prefix/etc
- Modifiable architecture-independent data: ............ $prefix/com
- Modifiable single-machine data: ...................... $prefix/var
- Object code libraries: ............................... $exec_prefix/lib
- Read-only arch-independent data root: ................ $prefix/share
- Read-only architecture-independent data: ............. $datarootdir
- Info documentation: .................................. $datarootdir/info
- Locale-dependent data: ............................... $datarootdir/locale
- Man documentation: ................................... $datarootdir/man
- Documentation root: .................................. $datarootdir/doc/$pkg_name
- HTML documentation: .................................. $docdir
- DVI documentation: ................................... $docdir
- PDF documentation: ................................... $docdir
- PS documentation: .................................... $docdir
- findlib_version: ..................................... 1.9.8
- is_native: ........................................... true
- suffix_program: ......................................
- Remove a file.: ...................................... rm -f
- Remove a directory.: ................................. rm -rf
- Turn ocaml debug flag on: ............................ true
- Turn ocaml profile flag on: .......................... false
- Compiler support generation of .cmxs.: ............... true
- OCamlbuild additional flags: .........................
- Create documentations: ............................... true
- Compile tests executable and library and run them: ... false
- pkg_aws: ............................................. /home/opam/.opam/4.14/lib/aws
- ocamldoc: ............................................ /home/opam/.opam/4.14/bin/ocamldoc
-
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "setup.ml" "-build" (CWD=/home/opam/.opam/4.14/.opam-switch/build/aws-cloudformation.0.1.0)
- File "./setup.ml", line 318, characters 20-36:
- 318 | String.compare (String.lowercase s1) (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 318, characters 42-58:
- 318 | String.compare (String.lowercase s1) (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 14-30:
- 327 | (String.lowercase s1) = (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 38-54:
- 327 | (String.lowercase s1) = (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 330, characters 25-41:
- 330 | Hashtbl.hash (String.lowercase s)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 368, characters 10-26:
- 368 | String.lowercase buf
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 474, characters 13-29:
- 474 | String.lowercase
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 1381, characters 23-41:
- 1381 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "./setup.ml", line 1825, characters 16-33:
- 1825 | concat dir (String.capitalize base)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "./setup.ml", line 1831, characters 16-35:
- 1831 | concat dir (String.uncapitalize base)
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 2916, characters 10-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2922, characters 10-21:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2925, characters 23-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2928, characters 20-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2931, characters 10-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2934, characters 16-28:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 15-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 32-42:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 48-61:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2936, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2937, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2938, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3088, characters 4-21:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3107, characters 24-40:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3109, characters 21-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 41-53:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 41-54:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 50-62:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 50-63:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3118, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3131, characters 15-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3229, characters 16-34:
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "setup.ml", line 5847, characters 11-28:
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "setup.ml", line 5848, characters 11-30:
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 6484, characters 33-42:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 6485, characters 36-45:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- W: Cannot find source file matching module 'aws-cloudformation' in library aws-cloudformation
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + /home/opam/.opam/4.14/bin/ocamlopt.opt unix.cmxa -I /home/opam/.opam/4.14/lib/ocamlbuild /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuildlib.cmxa myocamlbuild.ml /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuild.cmx -o myocamlbuild
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/types.ml > lib/types.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/errors.ml > lib/errors.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/cancelUpdateStack.mli > lib/cancelUpdateStack.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/errors.cmo lib/errors.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/types.cmo lib/types.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/cancelUpdateStack.cmi lib/cancelUpdateStack.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/cancelUpdateStack.ml > lib/cancelUpdateStack.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/createStack.mli > lib/createStack.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/createStack.cmi lib/createStack.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/createStack.ml > lib/createStack.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/deleteStack.mli > lib/deleteStack.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/deleteStack.cmi lib/deleteStack.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/deleteStack.ml > lib/deleteStack.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/describeStackEvents.mli > lib/describeStackEvents.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/describeStackEvents.cmi lib/describeStackEvents.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/describeStackEvents.ml > lib/describeStackEvents.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/describeStackResource.mli > lib/describeStackResource.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/describeStackResource.cmi lib/describeStackResource.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/describeStackResource.ml > lib/describeStackResource.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/describeStackResources.mli > lib/describeStackResources.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/describeStackResources.cmi lib/describeStackResources.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/describeStackResources.ml > lib/describeStackResources.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/describeStacks.mli > lib/describeStacks.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/describeStacks.cmi lib/describeStacks.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/describeStacks.ml > lib/describeStacks.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/estimateTemplateCost.mli > lib/estimateTemplateCost.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/estimateTemplateCost.cmi lib/estimateTemplateCost.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/estimateTemplateCost.ml > lib/estimateTemplateCost.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/getStackPolicy.mli > lib/getStackPolicy.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/getStackPolicy.cmi lib/getStackPolicy.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/getStackPolicy.ml > lib/getStackPolicy.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/getTemplate.mli > lib/getTemplate.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/getTemplate.cmi lib/getTemplate.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/getTemplate.ml > lib/getTemplate.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/getTemplateSummary.mli > lib/getTemplateSummary.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/getTemplateSummary.cmi lib/getTemplateSummary.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/getTemplateSummary.ml > lib/getTemplateSummary.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/listStackResources.mli > lib/listStackResources.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/listStackResources.cmi lib/listStackResources.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/listStackResources.ml > lib/listStackResources.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/listStacks.mli > lib/listStacks.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/listStacks.cmi lib/listStacks.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/listStacks.ml > lib/listStacks.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/setStackPolicy.mli > lib/setStackPolicy.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/setStackPolicy.cmi lib/setStackPolicy.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/setStackPolicy.ml > lib/setStackPolicy.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/signalResource.mli > lib/signalResource.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/signalResource.cmi lib/signalResource.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/signalResource.ml > lib/signalResource.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/updateStack.mli > lib/updateStack.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/updateStack.cmi lib/updateStack.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/updateStack.ml > lib/updateStack.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/validateTemplate.mli > lib/validateTemplate.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/validateTemplate.cmi lib/validateTemplate.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/validateTemplate.ml > lib/validateTemplate.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/cancelUpdateStack.cmo lib/cancelUpdateStack.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/createStack.cmo lib/createStack.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/deleteStack.cmo lib/deleteStack.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/describeStackEvents.cmo lib/describeStackEvents.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/describeStackResource.cmo lib/describeStackResource.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/describeStackResources.cmo lib/describeStackResources.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/describeStacks.cmo lib/describeStacks.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/estimateTemplateCost.cmo lib/estimateTemplateCost.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/getStackPolicy.cmo lib/getStackPolicy.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/getTemplate.cmo lib/getTemplate.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/getTemplateSummary.cmo lib/getTemplateSummary.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/listStackResources.cmo lib/listStackResources.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/listStacks.cmo lib/listStacks.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/setStackPolicy.cmo lib/setStackPolicy.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/signalResource.cmo lib/signalResource.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/updateStack.cmo lib/updateStack.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/validateTemplate.cmo lib/validateTemplate.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -pack -g -annot -bin-annot lib/types.cmo lib/errors.cmo lib/cancelUpdateStack.cmo lib/createStack.cmo lib/deleteStack.cmo lib/describeStackEvents.cmo lib/describeStackResource.cmo lib/describeStackResources.cmo lib/describeStacks.cmo lib/estimateTemplateCost.cmo lib/getStackPolicy.cmo lib/getTemplate.cmo lib/getTemplateSummary.cmo lib/listStackResources.cmo lib/listStacks.cmo lib/setStackPolicy.cmo lib/signalResource.cmo lib/updateStack.cmo lib/validateTemplate.cmo -o lib/aws-cloudformation.cmo
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -I lib lib/aws-cloudformation.cmo -o lib/aws-cloudformation.cma
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-cloudformation -I lib -o lib/errors.cmx lib/errors.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-cloudformation -I lib -o lib/types.cmx lib/types.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-cloudformation -I lib -o lib/cancelUpdateStack.cmx lib/cancelUpdateStack.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-cloudformation -I lib -o lib/createStack.cmx lib/createStack.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-cloudformation -I lib -o lib/deleteStack.cmx lib/deleteStack.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-cloudformation -I lib -o lib/describeStackEvents.cmx lib/describeStackEvents.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-cloudformation -I lib -o lib/describeStackResource.cmx lib/describeStackResource.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-cloudformation -I lib -o lib/describeStackResources.cmx lib/describeStackResources.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-cloudformation -I lib -o lib/describeStacks.cmx lib/describeStacks.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-cloudformation -I lib -o lib/estimateTemplateCost.cmx lib/estimateTemplateCost.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-cloudformation -I lib -o lib/getStackPolicy.cmx lib/getStackPolicy.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-cloudformation -I lib -o lib/getTemplate.cmx lib/getTemplate.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-cloudformation -I lib -o lib/getTemplateSummary.cmx lib/getTemplateSummary.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-cloudformation -I lib -o lib/listStackResources.cmx lib/listStackResources.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-cloudformation -I lib -o lib/listStacks.cmx lib/listStacks.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-cloudformation -I lib -o lib/setStackPolicy.cmx lib/setStackPolicy.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-cloudformation -I lib -o lib/signalResource.cmx lib/signalResource.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-cloudformation -I lib -o lib/updateStack.cmx lib/updateStack.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-cloudformation -I lib -o lib/validateTemplate.cmx lib/validateTemplate.ml
- + touch lib/aws-cloudformation.mli ; if /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -pack -g -annot -bin-annot -I lib lib/types.cmx lib/errors.cmx lib/cancelUpdateStack.cmx lib/createStack.cmx lib/deleteStack.cmx lib/describeStackEvents.cmx lib/describeStackResource.cmx lib/describeStackResources.cmx lib/describeStacks.cmx lib/estimateTemplateCost.cmx lib/getStackPolicy.cmx lib/getTemplate.cmx lib/getTemplateSummary.cmx lib/listStackResources.cmx lib/listStacks.cmx lib/setStackPolicy.cmx lib/signalResource.cmx lib/updateStack.cmx lib/validateTemplate.cmx -o lib/aws-cloudformation.cmx ; then rm -f lib/aws-cloudformation.mli ; else rm -f lib/aws-cloudformation.mli ; exit 1; fi
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -I lib lib/aws-cloudformation.cmx -o lib/aws-cloudformation.cmxa
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -shared -I lib lib/aws-cloudformation.cmxa lib/aws-cloudformation.cmx -o lib/aws-cloudformation.cmxs
- + /home/opam/.opam/4.14/bin/ocamlopt.opt unix.cmxa -I /home/opam/.opam/4.14/lib/ocamlbuild /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuildlib.cmxa myocamlbuild.ml /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuild.cmx -o myocamlbuild
- File "myocamlbuild.ml", line 155, characters 10-27:
- 155 | Stream.of_channel chn
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 161, characters 10-21:
- 161 | Stream.from
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 164, characters 23-34:
- 164 | match Stream.next st with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 167, characters 20-34:
- 167 | with Stream.Failure -> None)
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 170, characters 10-27:
- 170 | Genlex.make_lexer ["="] st_line
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 173, characters 16-28:
- 173 | match Stream.npeek 3 lexer with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 174, characters 15-27:
- 174 | | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 174, characters 32-42:
- 174 | | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
- ^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 174, characters 48-61:
- 174 | | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
- ^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 175, characters 16-27:
- 175 | Stream.junk lexer;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 176, characters 16-27:
- 176 | Stream.junk lexer;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 177, characters 16-27:
- 177 | Stream.junk lexer;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 518, characters 43-62:
- 518 | List.map (fun m -> (String.uncapitalize m) ^ ".cmi")
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Ocamlbuild_plugin.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "myocamlbuild.ml", line 531, characters 51-70:
- 531 | List.map (fun m -> dir^"/"^(String.uncapitalize m)^".cmi")
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Ocamlbuild_plugin.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
-> compiled aws-cloudformation.0.1.0
Processing 3/4: [aws-cloudformation: ocamlfind remove]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "ocamlfind" "remove" "aws-autoscaling" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/aws-cloudformation.0.1.0)
- ocamlfind: [WARNING] No such file: /home/opam/.opam/4.14/lib/aws-autoscaling/META
-> removed aws-cloudformation.0.1.0
Processing 4/4: [aws-cloudformation: ocaml setup.ml]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "ocaml" "setup.ml" "-install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/aws-cloudformation.0.1.0)
- File "./setup.ml", line 318, characters 20-36:
- 318 | String.compare (String.lowercase s1) (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 318, characters 42-58:
- 318 | String.compare (String.lowercase s1) (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 14-30:
- 327 | (String.lowercase s1) = (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 38-54:
- 327 | (String.lowercase s1) = (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 330, characters 25-41:
- 330 | Hashtbl.hash (String.lowercase s)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 368, characters 10-26:
- 368 | String.lowercase buf
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 474, characters 13-29:
- 474 | String.lowercase
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 1381, characters 23-41:
- 1381 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "./setup.ml", line 1825, characters 16-33:
- 1825 | concat dir (String.capitalize base)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "./setup.ml", line 1831, characters 16-35:
- 1831 | concat dir (String.uncapitalize base)
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 2916, characters 10-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2922, characters 10-21:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2925, characters 23-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2928, characters 20-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2931, characters 10-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2934, characters 16-28:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 15-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 32-42:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 48-61:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2936, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2937, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2938, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3088, characters 4-21:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3107, characters 24-40:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3109, characters 21-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 41-53:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 41-54:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 50-62:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 50-63:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3118, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3131, characters 15-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3229, characters 16-34:
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "setup.ml", line 5847, characters 11-28:
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "setup.ml", line 5848, characters 11-30:
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 6484, characters 33-42:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 6485, characters 36-45:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/types.ml
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/errors.ml
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/cancelUpdateStack.mli
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/createStack.mli
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/deleteStack.mli
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/describeStackEvents.mli
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/describeStackResource.mli
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/describeStackResources.mli
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/describeStacks.mli
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/estimateTemplateCost.mli
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/getStackPolicy.mli
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/getTemplate.mli
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/getTemplateSummary.mli
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/listStackResources.mli
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/listStacks.mli
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/setStackPolicy.mli
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/signalResource.mli
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/updateStack.mli
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/validateTemplate.mli
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/aws-cloudformation.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/aws-cloudformation.cmi
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/aws-cloudformation.cma
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/aws-cloudformation.cmxa
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/aws-cloudformation.a
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/aws-cloudformation.cmxs
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/validateTemplate.cmti
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/validateTemplate.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/validateTemplate.annot
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/updateStack.cmti
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/updateStack.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/updateStack.annot
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/signalResource.cmti
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/signalResource.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/signalResource.annot
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/setStackPolicy.cmti
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/setStackPolicy.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/setStackPolicy.annot
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/listStacks.cmti
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/listStacks.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/listStacks.annot
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/listStackResources.cmti
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/listStackResources.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/listStackResources.annot
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/getTemplateSummary.cmti
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/getTemplateSummary.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/getTemplateSummary.annot
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/getTemplate.cmti
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/getTemplate.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/getTemplate.annot
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/getStackPolicy.cmti
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/getStackPolicy.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/getStackPolicy.annot
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/estimateTemplateCost.cmti
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/estimateTemplateCost.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/estimateTemplateCost.annot
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/describeStacks.cmti
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/describeStacks.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/describeStacks.annot
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/describeStackResources.cmti
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/describeStackResources.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/describeStackResources.annot
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/describeStackResource.cmti
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/describeStackResource.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/describeStackResource.annot
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/describeStackEvents.cmti
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/describeStackEvents.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/describeStackEvents.annot
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/deleteStack.cmti
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/deleteStack.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/deleteStack.annot
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/createStack.cmti
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/createStack.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/createStack.annot
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/cancelUpdateStack.cmti
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/cancelUpdateStack.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/cancelUpdateStack.annot
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/errors.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/errors.annot
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/types.cmt
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/types.annot
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/aws-cloudformation.cmx
- Installed /home/opam/.opam/4.14/lib/aws-cloudformation/META
-> installed aws-cloudformation.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-21 13:47.08 ---> saved as "c34f23baf51414c8e2f0bc220bb14977a089a8dde85a2808c461cb7837063322"
Job succeeded
2025-11-21 13:47.33: Job succeeded