- github
- ocaml
- opam-repository
- 3e0c39
- compilers,4.14,dune.3.22.2,revdeps,freetds.0.7
(not at the head of any monitored branch or PR)
2026-04-10 17:57.43: New job: test freetds.0.7 with dune.3.22.2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
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/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.22.2 3.22.2
RUN opam reinstall dune.3.22.2; \
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.3.22.2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall freetds.0.7; \
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" != 'freetds.0.7' && 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 freetds.0.7) || true
RUN opam reinstall --with-test --verbose freetds.0.7; \
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" != 'freetds.0.7' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-04-10 17:57.43: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune.3.22.2-freetds.0.7-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:57.43: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\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.3.22.2' && 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 freetds.0.7;\
\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\" != 'freetds.0.7' && 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 freetds.0.7) || true"))
(run (shell "opam reinstall --with-test --verbose freetds.0.7;\
\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\" != 'freetds.0.7' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-04-10 17:57.43: Waiting for resource in pool OCluster
2026-04-11 03:15.30: Waiting for worker…
2026-04-11 03:18.07: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
packages/chrome-trace/chrome-trace.3.22.2/opam | 39 +++++++++++
.../dune-action-plugin.3.22.2/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.2/opam | 39 +++++++++++
.../dune-build-info/dune-build-info.3.22.2/opam | 45 +++++++++++++
.../dune-configurator.3.22.2/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.2/opam | 42 ++++++++++++
.../dune-private-libs.3.22.2/opam | 50 +++++++++++++++
packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.2/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.2/opam | 37 +++++++++++
packages/dune/dune.3.22.2/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.2/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.2/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.2/opam | 38 +++++++++++
packages/stdune/stdune.3.22.2/opam | 46 +++++++++++++
packages/top-closure/top-closure.3.22.2/opam | 38 +++++++++++
packages/xdg/xdg.3.22.2/opam | 39 +++++++++++
18 files changed, 796 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
create mode 100644 packages/dune-site/dune-site.3.22.2/opam
create mode 100644 packages/dune/dune.3.22.2/opam
create mode 100644 packages/dyn/dyn.3.22.2/opam
create mode 100644 packages/fs-io/fs-io.3.22.2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
create mode 100644 packages/ordering/ordering.3.22.2/opam
create mode 100644 packages/stdune/stdune.3.22.2/opam
create mode 100644 packages/top-closure/top-closure.3.22.2/opam
create mode 100644 packages/xdg/xdg.3.22.2/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
2026-04-11 03:41.04 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-11 03:41.04 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-11 03:41.04 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.3
2026-04-11 03:41.04 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-11 03:41.04 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 03:41.05 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 03:41.05 ---> using "bb36992fd0066703535b2984ee1ead3db92bb1f04a8df092631924067dac4082" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [121 kB]
- Fetched 211 kB in 0s (2063 kB/s)
- Reading package lists...
2026-04-11 03:41.05 ---> using "e0d9ada0baddc41d2c835edef7d0cf7cceebd2dadac41fda17c9e860b5313a74" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 03:41.05 ---> using "a60db6b945be7f2fc9953546cee71bf416921d54f02951a4c9176dbdf1065520" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\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.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.22.2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2 (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:41.05 ---> using "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall freetds.0.7;\
\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\" != 'freetds.0.7' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
freetds.0.7 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 4 packages
- install cppo 1.8.0 [required by freetds]
- install csexp 1.5.2 [required by dune-configurator]
- install dune-configurator 3.22.2 [required by freetds]
- install freetds 0.7
The following system packages will first need to be installed:
freetds-dev
<><> 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" "freetds-dev"
- Selecting previously unselected package freetds-common.
- (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 .../freetds-common_1.3.17+ds-2+deb13u1_all.deb ...
- Unpacking freetds-common (1.3.17+ds-2+deb13u1) ...
- Selecting previously unselected package libct4:amd64.
- Preparing to unpack .../libct4_1.3.17+ds-2+deb13u1_amd64.deb ...
- Unpacking libct4:amd64 (1.3.17+ds-2+deb13u1) ...
- Selecting previously unselected package libsybdb5:amd64.
- Preparing to unpack .../libsybdb5_1.3.17+ds-2+deb13u1_amd64.deb ...
- Unpacking libsybdb5:amd64 (1.3.17+ds-2+deb13u1) ...
- Selecting previously unselected package freetds-dev.
- Preparing to unpack .../freetds-dev_1.3.17+ds-2+deb13u1_amd64.deb ...
- Unpacking freetds-dev (1.3.17+ds-2+deb13u1) ...
- Selecting previously unselected package freetds-doc.
- Preparing to unpack .../freetds-doc_1.3.17+ds-2+deb13u1_all.deb ...
- Unpacking freetds-doc (1.3.17+ds-2+deb13u1) ...
- Setting up freetds-doc (1.3.17+ds-2+deb13u1) ...
- Setting up freetds-common (1.3.17+ds-2+deb13u1) ...
- Setting up libsybdb5:amd64 (1.3.17+ds-2+deb13u1) ...
- Setting up libct4:amd64 (1.3.17+ds-2+deb13u1) ...
- Setting up freetds-dev (1.3.17+ds-2+deb13u1) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.22.2 (cached)
-> installed cppo.1.8.0
-> retrieved freetds.0.7 (cached)
-> installed dune-configurator.3.22.2
-> installed freetds.0.7
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:41.17 ---> saved as "ff9aa61c56316fbb5578ad93ea368b7ac7b699361edc2e7498c662e2ea888db7"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test freetds.0.7) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile freetds 0.7
=== install 5 packages
- install ocamlfind 1.9.8 [required by ounit]
- install ounit 2.2.7 [required by freetds]
- install ounit2 2.2.7 [required by ounit]
- install seq base [required by ounit2]
- install stdlib-shims 0.3.0 [required by ounit2]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved freetds.0.7 (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache)
-> retrieved ounit.2.2.7, ounit2.2.2.7 (https://opam.ocaml.org/cache)
-> retrieved seq.base (2 extra sources)
-> retrieved seq.base (2 extra sources)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed ounit2.2.2.7
-> removed freetds.0.7
-> installed ocamlfind.1.9.8
-> installed ounit.2.2.7
-> installed freetds.0.7
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:41.27 ---> saved as "e71263d44b101940521b9b4b448b415c86860872a3bb48246f56fc6e32accf68"
/home/opam: (run (shell "opam reinstall --with-test --verbose freetds.0.7;\
\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\" != 'freetds.0.7' && 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 freetds 0.7
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [freetds.0.7: extract]
-> retrieved freetds.0.7 (cached)
Processing 2/4: [freetds: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "freetds" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/freetds.0.7)
- (cd _build/default/src && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -g -I /home/opam/.opam/4.14/lib/ocaml -o ct_c.o -c ct_c.c)
- ct_c.c: In function 'retval_inspect':
- ct_c.c:76:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 76 | failwith(whichfunc);
- | ^~~~~~~~~~~~~~~~
- ct_c.c:81:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 81 | failwith("Internal error - CS_NOMSG returned (This should never be possible)");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:85:13: warning: "raise_constant" is deprecated: use "caml_raise_constant" instead
- 85 | raise_constant(*caml_named_value("cs_end_results"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:87:13: warning: "raise_constant" is deprecated: use "caml_raise_constant" instead
- 87 | raise_constant(*caml_named_value("cs_end_data"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:89:13: warning: "raise_constant" is deprecated: use "caml_raise_constant" instead
- 89 | raise_constant(*caml_named_value("cs_cancelled"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c: In function 'conprop_of_value':
- ct_c.c:103:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 103 | if (field == hash_variant("Username")) CAMLreturn(CS_USERNAME);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:104:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 104 | else if (field == hash_variant("Password")) CAMLreturn(CS_PASSWORD);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c: In function 'cmdtype_of_value':
- ct_c.c:112:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 112 | if ( cmdtype == hash_variant("Lang") )
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c: In function 'datatype_of_value':
- ct_c.c:122:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 122 | if ( datatype == hash_variant("Char") ) CAMLreturn(CS_CHAR_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:123:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 123 | else if ( datatype == hash_variant("Int") ) CAMLreturn(CS_INT_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:124:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 124 | else if ( datatype == hash_variant("SmallInt") ) CAMLreturn(CS_SMALLINT_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:125:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 125 | else if ( datatype == hash_variant("TinyInt") ) CAMLreturn(CS_TINYINT_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:126:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 126 | else if ( datatype == hash_variant("Money") ) CAMLreturn(CS_MONEY_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:127:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 127 | else if ( datatype == hash_variant("DateTime") ) CAMLreturn(CS_DATETIME_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:128:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 128 | else if ( datatype == hash_variant("Numeric") ) CAMLreturn(CS_NUMERIC_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:129:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 129 | else if ( datatype == hash_variant("Decimal") ) CAMLreturn(CS_DECIMAL_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:130:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 130 | else if ( datatype == hash_variant("DateTime4") ) CAMLreturn(CS_DATETIME4_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:131:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 131 | else if ( datatype == hash_variant("Money4") ) CAMLreturn(CS_MONEY4_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:132:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 132 | else if ( datatype == hash_variant("Image") ) CAMLreturn(CS_IMAGE_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:133:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 133 | else if ( datatype == hash_variant("Binary") ) CAMLreturn(CS_BINARY_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:134:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 134 | else if ( datatype == hash_variant("Bit") ) CAMLreturn(CS_BIT_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:135:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 135 | else if ( datatype == hash_variant("Real") ) CAMLreturn(CS_REAL_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:136:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 136 | else if ( datatype == hash_variant("Float") ) CAMLreturn(CS_FLOAT_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:137:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 137 | else if ( datatype == hash_variant("Text") ) CAMLreturn(CS_TEXT_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:138:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 138 | else if ( datatype == hash_variant("VarChar") ) CAMLreturn(CS_VARCHAR_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:139:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 139 | else if ( datatype == hash_variant("VarBinary") ) CAMLreturn(CS_VARBINARY_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:140:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 140 | else if ( datatype == hash_variant("LongChar") ) CAMLreturn(CS_LONGCHAR_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:141:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 141 | else if ( datatype == hash_variant("LongBinary") ) CAMLreturn(CS_LONGBINARY_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:142:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 142 | else if ( datatype == hash_variant("Long") ) CAMLreturn(CS_LONG_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:143:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 143 | else if ( datatype == hash_variant("Illegal") ) CAMLreturn(CS_ILLEGAL_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:144:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 144 | else if ( datatype == hash_variant("Sensitivity") ) CAMLreturn(CS_SENSITIVITY_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:145:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 145 | else if ( datatype == hash_variant("Boundary") ) CAMLreturn(CS_BOUNDARY_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:146:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 146 | else if ( datatype == hash_variant("Void") ) CAMLreturn(CS_VOID_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:147:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 147 | else if ( datatype == hash_variant("UShort") ) CAMLreturn(CS_USHORT_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:151:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 151 | else if ( datatype == hash_variant("Unique") ) CAMLreturn(CS_UNIQUE_TYPE);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c: In function 'value_of_indicator':
- ct_c.c:163:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 163 | CAMLreturn(hash_variant("NullData"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:166:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 166 | CAMLreturn(hash_variant("GoodData"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c: In function 'value_of_datatype':
- ct_c.c:176:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 176 | case CS_CHAR_TYPE: CAMLreturn(hash_variant("Char"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:177:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 177 | case CS_INT_TYPE: CAMLreturn(hash_variant("Int"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:178:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 178 | case CS_SMALLINT_TYPE: CAMLreturn(hash_variant("SmallInt"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:179:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 179 | case CS_TINYINT_TYPE: CAMLreturn(hash_variant("TinyInt"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:180:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 180 | case CS_MONEY_TYPE: CAMLreturn(hash_variant("Money"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:181:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 181 | case CS_DATETIME_TYPE: CAMLreturn(hash_variant("DateTime"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:182:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 182 | case CS_NUMERIC_TYPE: CAMLreturn(hash_variant("Numeric"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:183:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 183 | case CS_DECIMAL_TYPE: CAMLreturn(hash_variant("Decimal"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:184:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 184 | case CS_DATETIME4_TYPE: CAMLreturn(hash_variant("DateTime4"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:185:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 185 | case CS_MONEY4_TYPE: CAMLreturn(hash_variant("Money4"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:186:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 186 | case CS_IMAGE_TYPE: CAMLreturn(hash_variant("Image"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:187:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 187 | case CS_BINARY_TYPE: CAMLreturn(hash_variant("Binary"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:188:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 188 | case CS_BIT_TYPE: CAMLreturn(hash_variant("Bit"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:189:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 189 | case CS_REAL_TYPE: CAMLreturn(hash_variant("Real"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:190:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 190 | case CS_FLOAT_TYPE: CAMLreturn(hash_variant("Float"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:191:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 191 | case CS_TEXT_TYPE: CAMLreturn(hash_variant("Text"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:192:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 192 | case CS_VARCHAR_TYPE: CAMLreturn(hash_variant("VarChar"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:193:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 193 | case CS_VARBINARY_TYPE: CAMLreturn(hash_variant("VarBinary"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:194:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 194 | case CS_LONGCHAR_TYPE: CAMLreturn(hash_variant("LongChar"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:195:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 195 | case CS_LONGBINARY_TYPE: CAMLreturn(hash_variant("LongBinary"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:196:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 196 | case CS_LONG_TYPE: CAMLreturn(hash_variant("Long"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:197:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 197 | case CS_ILLEGAL_TYPE: CAMLreturn(hash_variant("Illegal"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:198:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 198 | case CS_SENSITIVITY_TYPE: CAMLreturn(hash_variant("Sensitivity"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:199:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 199 | case CS_BOUNDARY_TYPE: CAMLreturn(hash_variant("Boundary"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:200:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 200 | case CS_VOID_TYPE: CAMLreturn(hash_variant("Void"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:201:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 201 | case CS_USHORT_TYPE: CAMLreturn(hash_variant("UShort"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:205:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 205 | case CS_UNIQUE_TYPE: CAMLreturn(hash_variant("Unique"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:208:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 208 | CAMLreturn(hash_variant("Illegal"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c: In function 'value_of_restype':
- ct_c.c:230:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 230 | CAMLreturn( hash_variant("Row") );
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:233:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 233 | CAMLreturn( hash_variant("Param") );
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:236:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 236 | CAMLreturn( hash_variant("Status") );
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:239:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 239 | CAMLreturn( hash_variant("Cmd_done") );
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:242:13: warning: "raise_constant" is deprecated: use "caml_raise_constant" instead
- 242 | raise_constant(*caml_named_value("cs_cmd_fail"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:244:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 244 | CAMLreturn(hash_variant("Cmd_succeed"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c: In function 'resinfo_type_of_value':
- ct_c.c:251:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 251 | if ( resinfo == hash_variant("Row_count") )
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:253:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 253 | else if ( resinfo == hash_variant("Cmd_number") )
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c: In function 'cons':
- ct_c.c:265:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 265 | result = alloc(2, Tag_cons);
- | ^~~~~~~~~~~~~~~~~~~~
- ct_c.c: In function 'value_of_status_bitmask':
- ct_c.c:323:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 323 | result = cons(hash_variant("CanBeNull"), result);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:326:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 326 | result = cons(hash_variant("NoData"), result);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:329:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 329 | result = cons(hash_variant("Identity"), result);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:332:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 332 | result = cons(hash_variant("Return"), result);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c: In function 'status_of_value':
- ct_c.c:347:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 347 | if ( stat == hash_variant("CanBeNull") )
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:349:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 349 | else if ( stat == hash_variant("NoData") )
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:351:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 351 | else if ( stat == hash_variant("Identity") )
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:353:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 353 | else if ( stat == hash_variant("Return") )
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c: In function 'column_of_buffer':
- ct_c.c:371:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 371 | buffer = alloc_custom(&binding_buffer_operations,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:375:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 375 | result = alloc(COL_SIZE, 0);
- | ^~~~~~~~~~~~~~~~~~~~
- ct_c.c:376:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 376 | Store_field(result, COL_NAME, copy_string(buf->fmt.name));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c: In function 'mltds_cs_ctx_create':
- ct_c.c:397:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 397 | result = alloc_custom(&context_operations, sizeof(CS_CONTEXT*), 0, 1);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c: In function 'mltds_ct_con_alloc':
- ct_c.c:414:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 414 | result = alloc_custom(&connection_operations, sizeof(CS_CONNECTION*), 0, 1);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c: In function 'mltds_ct_cmd_alloc':
- ct_c.c:429:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 429 | result = alloc_custom(&command_operations, sizeof(CS_COMMAND*), 0, 1);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c: In function 'mltds_ct_con_setstring':
- ct_c.c:447:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 447 | string_length(newval),
- | ^ ~~~~~~~~~~~~~~~~~~~~~~
- In file included from /home/opam/.opam/4.14/lib/ocaml/caml/alloc.h:24,
- from ct_c.c:28:
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 4 of 'ct_con_props' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:446:34: note: in expansion of macro 'String_val'
- 446 | String_val(newval),
- | ^~~~~~~~~~
- In file included from ct_c.c:24:
- /usr/include/ctpublic.h:98:88: note: expected 'CS_VOID *' {aka 'void *'} but argument is of type 'const char *'
- 98 | CS_RETCODE ct_con_props(CS_CONNECTION * con, CS_INT action, CS_INT property, CS_VOID * buffer, CS_INT buflen, CS_INT * out_len);
- | ~~~~~~~~~~^~~~~~
- ct_c.c: In function 'mltds_ct_connect':
- ct_c.c:460:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 460 | string_length(servername)));
- | ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 2 of 'ct_connect' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:459:32: note: in expansion of macro 'String_val'
- 459 | String_val(servername),
- | ^~~~~~~~~~
- /usr/include/ctpublic.h:99:54: note: expected 'CS_CHAR *' {aka 'char *'} but argument is of type 'const char *'
- 99 | CS_RETCODE ct_connect(CS_CONNECTION * con, CS_CHAR * servername, CS_INT snamelen);
- | ~~~~~~~~~~^~~~~~~~~~
- ct_c.c: In function 'mltds_ct_command':
- ct_c.c:475:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 475 | string_length(text),
- | ^ ~~~~~~~~~~~~~~~~~~~~
- ct_c.c: In function 'mltds_buffer_contents':
- ct_c.c:592:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 592 | CAMLreturn(hash_variant("Null"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:601:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 601 | result = alloc(2, 0);
- | ^~~~~~~~~~~~~~~~~
- ct_c.c:602:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 602 | Store_field(result, 0, hash_variant("Bit"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:607:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 607 | result = alloc(2, 0);
- | ^~~~~~~~~~~~~~~~~
- ct_c.c:608:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 608 | Store_field(result, 0, hash_variant("Tinyint"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:613:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 613 | result = alloc(2, 0);
- | ^~~~~~~~~~~~~~~~~
- ct_c.c:614:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 614 | Store_field(result, 0, hash_variant("Smallint"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:619:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 619 | result = alloc(2, 0);
- | ^~~~~~~~~~~~~~~~~
- ct_c.c:620:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 620 | Store_field(result, 0, hash_variant("Int"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:621:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 621 | Store_field(result, 1, copy_int32((int) BUFFER_CONTENTS(buf, CS_INT)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:626:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 626 | result = alloc(2, 0);
- | ^~~~~~~~~~~~~~~~~
- ct_c.c:627:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 627 | Store_field(result, 0, hash_variant("Float"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:628:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 628 | Store_field(result, 1, copy_double((double) BUFFER_CONTENTS(buf, CS_FLOAT)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:645:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 645 | result = alloc(2, 0);
- | ^~~~~~~~~~~~~~~~~~~~~
- ct_c.c:646:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 646 | Store_field(result, 0, hash_variant("Decimal"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:656:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 656 | result = alloc(2, 0);
- | ^~~~~~~~~~~~~~~~~~~~~
- ct_c.c:657:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 657 | Store_field(result, 0, hash_variant("String"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c:676:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 676 | result = alloc(2, 0);
- | ^~~~~~~~~~~~~~~~~
- ct_c.c:677:13: warning: "hash_variant" is deprecated: use "caml_hash_variant" instead
- 677 | Store_field(result, 0, hash_variant("Binary"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ct_c.c: In function 'get_client_message':
- ct_c.c:743:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 743 | result = alloc(2, 0);
- | ^~~~~~~~~~~~~
- ct_c.c: In function 'get_server_message':
- ct_c.c:761:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 761 | result = alloc(2, 0);
- | ^~~~~~~~~~~~~
- (cd _build/default/src && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -g -I /home/opam/.opam/4.14/lib/ocaml -o dblib_stubs.o -c dblib_stubs.c)
- dblib_stubs.c: In function 'make_dblib_error':
- dblib_stubs.c:145:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 145 | exn = caml_named_value("Freetds.Dblib.Error");
- | ^
- dblib_stubs.c: In function 'msg_handler':
- dblib_stubs.c:192:13: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 192 | handler = caml_named_value("Freetds.Dblib.msg_handler");
- | ^
- dblib_stubs.c: In function 'err_handler':
- dblib_stubs.c:239:13: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 239 | handler = caml_named_value("Freetds.Dblib.err_handler");
- | ^
- dblib_stubs.c: In function 'ocaml_freetds_dbopen':
- dblib_stubs.c:396:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 396 | vdbproc = DBPROCESS_ALLOC();
- | ^~~~~~~~~~~~~~~~~~
- In file included from dblib_stubs.c:28:
- dblib_stubs.c: In function 'ocaml_freetds_get_data':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memmove' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- dblib_stubs.c:675:11: note: in expansion of macro 'String_val'
- 675 | memmove(String_val(res), s, len_bytes);
- | ^~~~~~~~~~
- dblib_stubs.c:713:5: note: in expansion of macro 'COPY_STRING'
- 713 | COPY_STRING(vres, data, len);
- | ^~~~~~~~~~~
- In file included from dblib_stubs.c:25:
- /usr/include/string.h:47:29: note: expected 'void *' but argument is of type 'const char *'
- 47 | extern void *memmove (void *__dest, const void *__src, size_t __n)
- | ~~~~~~^~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memmove' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- dblib_stubs.c:675:11: note: in expansion of macro 'String_val'
- 675 | memmove(String_val(res), s, len_bytes);
- | ^~~~~~~~~~
- dblib_stubs.c:719:5: note: in expansion of macro 'COPY_STRING'
- 719 | COPY_STRING(vres, data, len);
- | ^~~~~~~~~~~
- /usr/include/string.h:47:29: note: expected 'void *' but argument is of type 'const char *'
- 47 | extern void *memmove (void *__dest, const void *__src, size_t __n)
- | ~~~~~~^~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memmove' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- dblib_stubs.c:675:11: note: in expansion of macro 'String_val'
- 675 | memmove(String_val(res), s, len_bytes);
- | ^~~~~~~~~~
- dblib_stubs.c:682:5: note: in expansion of macro 'COPY_STRING'
- 682 | COPY_STRING(vres, (char *) data_byte, converted_len); \
- | ^~~~~~~~~~~
- dblib_stubs.c:763:5: note: in expansion of macro 'CONVERT_STRING'
- 763 | CONVERT_STRING(ceil(2.5 * len)); /* FIXME: max size ? */
- | ^~~~~~~~~~~~~~
- /usr/include/string.h:47:29: note: expected 'void *' but argument is of type 'const char *'
- 47 | extern void *memmove (void *__dest, const void *__src, size_t __n)
- | ~~~~~~^~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memmove' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- dblib_stubs.c:675:11: note: in expansion of macro 'String_val'
- 675 | memmove(String_val(res), s, len_bytes);
- | ^~~~~~~~~~
- dblib_stubs.c:682:5: note: in expansion of macro 'COPY_STRING'
- 682 | COPY_STRING(vres, (char *) data_byte, converted_len); \
- | ^~~~~~~~~~~
- dblib_stubs.c:767:5: note: in expansion of macro 'CONVERT_STRING'
- 767 | CONVERT_STRING(ceil(2.5 * len)); /* FIXME: max size ? */
- | ^~~~~~~~~~~~~~
- /usr/include/string.h:47:29: note: expected 'void *' but argument is of type 'const char *'
- 47 | extern void *memmove (void *__dest, const void *__src, size_t __n)
- | ~~~~~~^~~~~~
Processing 2/4: [freetds: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "freetds" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/freetds.0.7)
- (cd _build/default/test && ./test_ct.exe)
- Skipping Ct tests since MSSQL_TEST_* environment variables aren't set
- (cd _build/default/test && ./test_dblib.exe)
- Skipping tests since MSSQL_TEST_* environment variables aren't set
-> compiled freetds.0.7
-> removed freetds.0.7
-> installed freetds.0.7
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:41.34 ---> saved as "9b820a0eced22d44cb16126912e0fd91c6d1ba542e75b29b0b9baf247720ce39"
Job succeeded
2026-04-11 03:41.47: Job succeeded