- github
- ocaml
- opam-repository
- 4650d3
- compilers,4.14,conf-m4.1,revdeps,dns-server.9.0.0
(not at the head of any monitored branch or PR)
2024-10-31 07:12.26: New job: test dns-server.9.0.0 with conf-m4.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/26814/head (4650d39b5f7558220fc3c5468aed419e1b79a9c8)
on debian-12-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/26814/head" && git reset --hard 4650d39b
git fetch origin master
git merge --no-edit d872638bdf37acf7cefd81b20dfcad3e584c3153
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:00c64ea058328b87bbbbf4bc70fea2e26b49c2da353b1fc7fc175f484089df5b
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMSOLVERTIMEOUT="1000"
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 conf-m4.1 1
RUN opam reinstall conf-m4.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'conf-m4.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam option solver=builtin-0install
RUN opam reinstall dns-server.9.0.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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dns-server.9.0.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam option solver=builtin-0install
RUN (opam reinstall --with-test dns-server.9.0.0) || true
RUN opam reinstall --with-test --verbose dns-server.9.0.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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dns-server.9.0.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 .
2024-10-31 07:12.26: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:00c64ea058328b87bbbbf4bc70fea2e26b49c2da353b1fc7fc175f484089df5b-conf-m4.1-dns-server.9.0.0-4650d39b5f7558220fc3c5468aed419e1b79a9c8"
2024-10-31 07:12.26: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:00c64ea058328b87bbbbf4bc70fea2e26b49c2da353b1fc7fc175f484089df5b)
(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 "uname -rs && opam exec -- ocaml -version && opam --version"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMSOLVERTIMEOUT 1000)
(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 conf-m4.1 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall conf-m4.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'conf-m4.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (shell "opam option solver=builtin-0install"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dns-server.9.0.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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dns-server.9.0.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 (shell "opam option solver=builtin-0install"))
(run (network host)
(shell "(opam reinstall --with-test dns-server.9.0.0) || true"))
(run (shell "opam reinstall --with-test --verbose dns-server.9.0.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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dns-server.9.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2024-10-31 07:12.26: Waiting for resource in pool OCluster
2024-11-01 03:11.04: Waiting for worker…
2024-11-01 03:13.33: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
Updating files: 67% (22018/32563)
Updating files: 68% (22143/32563)
Updating files: 69% (22469/32563)
Updating files: 70% (22795/32563)
Updating files: 71% (23120/32563)
Updating files: 72% (23446/32563)
Updating files: 73% (23771/32563)
Updating files: 74% (24097/32563)
Updating files: 75% (24423/32563)
Updating files: 76% (24748/32563)
Updating files: 77% (25074/32563)
Updating files: 78% (25400/32563)
Updating files: 79% (25725/32563)
Updating files: 80% (26051/32563)
Updating files: 81% (26377/32563)
Updating files: 82% (26702/32563)
Updating files: 83% (27028/32563)
Updating files: 84% (27353/32563)
Updating files: 85% (27679/32563)
Updating files: 86% (28005/32563)
Updating files: 87% (28330/32563)
Updating files: 88% (28656/32563)
Updating files: 89% (28982/32563)
Updating files: 90% (29307/32563)
Updating files: 91% (29633/32563)
Updating files: 92% (29958/32563)
Updating files: 93% (30284/32563)
Updating files: 94% (30610/32563)
Updating files: 95% (30935/32563)
Updating files: 96% (31261/32563)
Updating files: 97% (31587/32563)
Updating files: 98% (31912/32563)
Updating files: 99% (32238/32563)
Updating files: 100% (32563/32563)
Updating files: 100% (32563/32563), done.
HEAD is now at d872638bdf Merge pull request #26806 from toots/opam-publish-ffmpeg.1.2.1
Merge made by the 'ort' strategy.
packages/conf-m4/conf-m4.1/opam | 1 +
1 file changed, 1 insertion(+)
(from ocaml/opam:debian-12-ocaml-4.14@sha256:00c64ea058328b87bbbbf4bc70fea2e26b49c2da353b1fc7fc175f484089df5b)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:00c64ea058328b87bbbbf4bc70fea2e26b49c2da353b1fc7fc175f484089df5b' locally
docker.io/ocaml/opam@sha256:00c64ea058328b87bbbbf4bc70fea2e26b49c2da353b1fc7fc175f484089df5b: Pulling from ocaml/opam
798e7bbc2604: Pulling fs layer
798e7bbc2604: Verifying Checksum
798e7bbc2604: Download complete
798e7bbc2604: Pull complete
Digest: sha256:00c64ea058328b87bbbbf4bc70fea2e26b49c2da353b1fc7fc175f484089df5b
Status: Downloaded newer image for ocaml/opam@sha256:00c64ea058328b87bbbbf4bc70fea2e26b49c2da353b1fc7fc175f484089df5b
2024-11-01 03:16.08 ---> using "619835238a94b19eeeff939f81e164f057fa8094fa703ba39ed5c0f42e707999" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2024-11-01 03:16.08 ---> using "608822e92511ec37ae1705ed6232474df085eabf3fc10543b0de6c920ffcb351" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [y/n] y
[NOTE] The 'jobs' option was reset, its value was 39 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=39 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2024-11-01 03:16.08 ---> using "acad702e9aed59e09109a5ff466d766d37b0231fa0915a47fdb4804af5e3d786" from cache
/home/opam: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-122-generic
The OCaml toplevel, version 4.14.2
2.4.0~alpha1~dev
2024-11-01 03:16.08 ---> using "c52e418cbd79acba474d87b691bd314432f8b52e9802e23465ac8ffd419c5496" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMSOLVERTIMEOUT 1000)
/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/"))
2024-11-01 03:16.08 ---> using "5dd21b950a0537f9b9f2251a0f6dde415c0ae0abb4780469484e44ff62cbc9c0" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2024-11-01 03:16.09 ---> using "5dc2286da6589c5fa18a4ea499de8e7c8c0f8f1f4d322e605dbcd31931965be6" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2024-11-01 03:16.09 ---> using "e0620535a5ec47ef1caa001f795ce3e1c88baf475f150d8389447e89e27118a3" 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 bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [190 kB]
- Fetched 293 kB in 0s (829 kB/s)
- Reading package lists...
2024-11-01 03:16.09 ---> using "e3410447d92f7012bbfab50448af0cd3a19ea2f16cc656275e7093212efa9d4b" from cache
/home/opam: (run (shell "opam pin add -k version -yn conf-m4.1 1"))
conf-m4 is now pinned to version 1
2024-11-01 03:16.09 ---> using "92d687806d61ed4de395cc24245c6c3dbd16d68b2861254fbe1d4cb10a44b588" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall conf-m4.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'conf-m4.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
conf-m4.1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 1 package
- install conf-m4 1 (pinned)
The following system packages will first need to be installed:
m4
<><> 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" "m4"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package m4.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 18745 files and directories currently installed.)
- Preparing to unpack .../archives/m4_1.4.19-3_amd64.deb ...
- Unpacking m4 (1.4.19-3) ...
- Setting up m4 (1.4.19-3) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-m4.1
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-01 03:16.09 ---> using "1a80fb863c5953ac527dedade0edbcb8c5ccb03164e39b25f8bdfad7b2d18d96" from cache
/home/opam: (run (shell "opam option solver=builtin-0install"))
Set to 'builtin-0install' the field solver in global configuration
2024-11-01 03:16.09 ---> using "92615534af196909ac5c53c7f25bd65b2fce49f96d73621a93f04e63310ac916" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dns-server.9.0.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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dns-server.9.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dns-server.9.0.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 47 packages
- install arp 3.1.1 [required by tcpip]
- install base-bytes base [required by ocplib-endian]
- install base64 3.5.1 [required by dns]
- install cmdliner 1.3.0 [required by logs, fmt, tcpip]
- install cppo 1.7.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.2.0 [required by dns-server]
- install cstruct-lwt 6.2.0 [required by tcpip]
- install digestif 1.2.0 [required by mirage-crypto-rng]
- install dns 9.0.0 [required by dns-server]
- install dns-mirage 9.0.0 [required by dns-server]
- install dns-server 9.0.0
- install domain-name 0.4.0 [required by dns]
- install dune 3.16.0 [required by dns-server]
- install dune-configurator 3.16.0 [required by lwt]
- install duration 0.2.1 [required by dns-server]
- install eqaf 0.10 [required by digestif, mirage-crypto]
- install ethernet 3.2.0 [required by tcpip]
- install fmt 0.9.0 [required by cstruct, dns]
- install gmap 0.3.0 [required by dns]
- install ipaddr 5.6.0 [required by dns, dns-mirage]
- install ipaddr-cstruct 5.6.0 [required by tcpip]
- install logs 0.7.0 [required by dns-server]
- install lru 0.3.1 [required by dns]
- install lwt 5.8.0 [required by dns-server]
- install lwt-dllist 1.0.1 [required by tcpip]
- install macaddr 5.6.0 [required by ipaddr, tcpip]
- install macaddr-cstruct 5.6.0 [required by tcpip]
- install metrics 0.4.1 [required by dns-server]
- install mirage-clock 4.2.0 [required by dns-server]
- install mirage-crypto 1.1.0 [required by mirage-crypto-rng]
- install mirage-crypto-rng 1.1.0 [required by mirage-crypto-rng-mirage]
- install mirage-crypto-rng-mirage 1.1.0 [required by tcpip]
- install mirage-flow 4.0.2 [required by tcpip]
- install mirage-net 4.0.0 [required by tcpip]
- install mirage-runtime 4.8.1 [required by mirage-crypto-rng-mirage]
- install mirage-time 3.0.0 [required by dns-server]
- install ocamlbuild 0.15.0 [required by logs, fmt, ptime]
- install ocamlfind 1.9.6 [required by logs, fmt, ptime]
- install ocplib-endian 1.2 [required by lwt]
- install ohex 0.2.0 [required by dns]
- install psq 0.2.1 [required by lru]
- install ptime 1.2.0 [required by dns]
- install randomconv 0.2.0 [required by dns-server]
- install seq base [required by psq]
- install tcpip 8.2.0 [required by dns-server]
- install topkg 1.0.7 [required by logs, fmt, ptime]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved arp.3.1.1 (cached)
-> retrieved base64.3.5.1 (cached)
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved cppo.1.7.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved cstruct.6.2.0, cstruct-lwt.6.2.0 (cached)
-> retrieved digestif.1.2.0 (cached)
-> retrieved dns.9.0.0, dns-mirage.9.0.0, dns-server.9.0.0 (cached)
-> retrieved domain-name.0.4.0 (cached)
-> retrieved dune.3.16.0, dune-configurator.3.16.0 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved ethernet.3.2.0 (cached)
-> retrieved fmt.0.9.0 (cached)
-> retrieved gmap.0.3.0 (cached)
-> retrieved ipaddr.5.6.0, ipaddr-cstruct.5.6.0, macaddr.5.6.0, macaddr-cstruct.5.6.0 (cached)
-> retrieved logs.0.7.0 (cached)
-> retrieved lru.0.3.1 (cached)
-> retrieved lwt.5.8.0 (cached)
-> retrieved lwt-dllist.1.0.1 (cached)
-> retrieved metrics.0.4.1 (cached)
-> retrieved mirage-clock.4.2.0 (cached)
-> installed cmdliner.1.3.0
-> retrieved mirage-crypto.1.1.0, mirage-crypto-rng.1.1.0, mirage-crypto-rng-mirage.1.1.0 (cached)
-> retrieved mirage-flow.4.0.2 (cached)
-> retrieved mirage-net.4.0.0 (cached)
-> retrieved mirage-runtime.4.8.1 (cached)
-> retrieved mirage-time.3.0.0 (cached)
-> retrieved ocamlbuild.0.15.0 (cached)
-> retrieved ocamlfind.1.9.6 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved ohex.0.2.0 (cached)
-> retrieved psq.0.2.1 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved randomconv.0.2.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved tcpip.8.2.0 (cached)
-> retrieved topkg.1.0.7 (cached)
-> installed ocamlfind.1.9.6
-> installed base-bytes.base
-> installed ocamlbuild.0.15.0
-> installed topkg.1.0.7
-> installed fmt.0.9.0
-> installed ptime.1.2.0
-> installed dune.3.16.0
-> installed csexp.1.5.2
-> installed base64.3.5.1
-> installed cppo.1.7.0
-> installed cstruct.6.2.0
-> installed domain-name.0.4.0
-> installed duration.0.2.1
-> installed eqaf.0.10
-> installed gmap.0.3.0
-> installed lwt-dllist.1.0.1
-> installed macaddr.5.6.0
-> installed metrics.0.4.1
-> installed mirage-clock.4.2.0
-> installed ohex.0.2.0
-> installed psq.0.2.1
-> installed randomconv.0.2.0
-> installed macaddr-cstruct.5.6.0
-> installed ocplib-endian.1.2
-> installed lru.0.3.1
-> installed ipaddr.5.6.0
-> installed digestif.1.2.0
-> installed ipaddr-cstruct.5.6.0
-> installed dune-configurator.3.16.0
-> installed mirage-crypto.1.1.0
-> installed lwt.5.8.0
-> installed mirage-time.3.0.0
-> installed cstruct-lwt.6.2.0
-> installed mirage-flow.4.0.2
-> installed mirage-net.4.0.0
-> installed logs.0.7.0
-> installed ethernet.3.2.0
-> installed mirage-runtime.4.8.1
-> installed mirage-crypto-rng.1.1.0
-> installed arp.3.1.1
-> installed mirage-crypto-rng-mirage.1.1.0
-> installed dns.9.0.0
-> installed tcpip.8.2.0
-> installed dns-mirage.9.0.0
-> installed dns-server.9.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-01 03:16.52 ---> saved as "5e56cde59a2c0d6b11c8c32e45c4122ca3d233507e73dae04adaa021714824ec"
/home/opam: (run (shell "opam option solver=builtin-0install"))
No modification in global configuration
2024-11-01 03:16.52 ---> saved as "00be130051d7b9ea1135f285eed6eb09b4f44cceca2aadab56e7c9b674e37260"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test dns-server.9.0.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile dns-server 9.0.0
=== install 7 packages
- install alcotest 1.8.0 [required by dns-server]
- install astring 0.8.5 [required by alcotest]
- install dns-tsig 9.0.0 [required by dns-server]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install re 1.12.0 [required by alcotest]
- install stdlib-shims 0.3.0 [required by alcotest]
- install uutf 1.0.3 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.8.0 (https://github.com/mirage/alcotest/releases/download/1.8.0/alcotest-1.8.0.tbz)
-> retrieved astring.0.8.5 (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
-> retrieved dns-server.9.0.0, dns-tsig.9.0.0 (https://github.com/mirage/ocaml-dns/releases/download/v9.0.0/dns-9.0.0.tbz)
-> installed dns-tsig.9.0.0
-> retrieved ocaml-syntax-shims.1.0.0 (https://github.com/ocaml-ppx/ocaml-syntax-shims/releases/download/1.0.0/ocaml-syntax-shims-1.0.0.tbz)
-> installed astring.0.8.5
-> retrieved re.1.12.0 (https://github.com/ocaml/ocaml-re/releases/download/1.12.0/re-1.12.0.tbz)
-> retrieved stdlib-shims.0.3.0 (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved uutf.1.0.3 (https://erratique.ch/software/uutf/releases/uutf-1.0.3.tbz)
-> installed stdlib-shims.0.3.0
-> installed re.1.12.0
-> removed dns-server.9.0.0
-> installed uutf.1.0.3
-> installed alcotest.1.8.0
-> installed dns-server.9.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-01 03:17.06 ---> saved as "56887103abfcf6c504fd1f40b1226292bb61f8e545f0e43e2a4f39ac3566a7b2"
/home/opam: (run (shell "opam reinstall --with-test --verbose dns-server.9.0.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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dns-server.9.0.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 dns-server 9.0.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [dns-server.9.0.0: extract]
-> retrieved dns-server.9.0.0 (cached)
Processing 2/4: [dns-server: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "dns-server" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dns-server.9.0.0)
Processing 2/4: [dns-server: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "dns-server" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dns-server.9.0.0)
- (cd _build/default/test && ./server.exe)
- Testing `DNS server tests'.
- This run has ID `NLWCIO4K'.
-
- [OK] Trie 0 simple.
- [OK] Trie 1 basic.
- [OK] Trie 2 alias.
- [OK] Trie 3 delegation.
- [OK] Trie 4 rmzone.
- [OK] Trie 5 zone.
- [OK] Trie 6 no soa.
- [OK] Trie 7 subdomain and entries.
- [OK] Server 0 simple.
- [OK] Server 1 secondary.
- [OK] Server 2 secondary in non-authoritative zone.
- [OK] Server 3 multiple IPs of secondary.
- [OK] Server 4 multiple secondaries.
- [OK] Server 5 multiple secondaries with duplica...
- [OK] Server 6 secondaries in other zone.
- [OK] Server 7 secondary via key.
- [OK] Server 8 secondary via root key.
- [OK] Server 9 secondaries and keys.
- [OK] Server 10 secondaries and keys dups.
- [OK] Server 11 multiple zones.
- [OK] Server 12 secondary create.
- [OK] Authentication 0 access granted.
- [OK] Authentication 1 zone and operation.
- [OK] Authentication 2 simple deny auth.
- [OK] Authentication 3 simple allow auth.
- [OK] Authentication 4 question.
- [OK] Authentication 5 AXFR.
- [OK] Authentication 6 no AXFR.
- [OK] Authentication 7 unauthenticated AXFR.
- [OK] Authentication 8 ixfr.
- [OK] Authentication 9 basic update.
- [OK] Authentication 10 actual update.
- [OK] Authentication 11 actual update with hostname key.
- [OK] Authentication 12 update zone regression.
- [OK] AXFR 0 encoding.
- [OK] AXFR 1 encoding big zone (no split).
- [OK] AXFR 2 encoding big zone (one split).
- [OK] AXFR 3 encoding big zone (multiple splits).
- [OK] AXFR 4 encoding big zone with tsig (no s...
- [OK] AXFR 5 encoding big zone with tsig (one ...
- [OK] Zone 0 parsing simple zone.
- [OK] Zone 1 parsing simple zone 2.
- [OK] Zone 2 parsing simple zone 3.
- [OK] Zone 3 parsing simple zone without final...
- [OK] Zone 4 parsing wildcard zone.
- [OK] Zone 5 parsing RFC 4592 zone.
- [OK] Zone 6 RFC 4592 questions.
- [OK] Zone 7 parse zone with additional glue.
- [OK] Zone 8 parse zone with additional glue a...
- [OK] Zone 9 parsing numerical subdomain zone.
- [OK] Zone 10 parse locs.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/dns-server.9.0.0/_build/default/test/_build/_tests/DNS server tests'.
- Test Successful in 0.048s. 51 tests run.
-> compiled dns-server.9.0.0
-> removed dns-server.9.0.0
-> installed dns-server.9.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-01 03:17.14 ---> saved as "6bf73cd56687e71c128a9ab0753057b1c8d75b2240f09f8ce385c66dd742b300"
Job succeeded
2024-11-01 03:17.29: Job succeeded