Build:
- 0
2026-01-23 02:35.52: New job: test ezcurl-lwt.0.3, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29257/head (95c7d10c303cc2a3b3559e7acf463232ea3f06af)
on centos-9-ocaml-5.4/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/29257/head" && git reset --hard 95c7d10c
git fetch origin master
git merge --no-edit 69f4d66596cd0a420dffdd43036a9eeb0b410d84
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-9-ocaml-5.4@sha256:e203d084b077edf8d3cc8700718ac30d0e981480279804cb60a05b8b205c71be
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 ezcurl-lwt.0.3 0.3
RUN opam reinstall ezcurl-lwt.0.3; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"centos-9\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ezcurl-lwt.0.3' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test ezcurl-lwt.0.3) || true
RUN opam reinstall --with-test --verbose ezcurl-lwt.0.3; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"centos-9\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ezcurl-lwt.0.3' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-01-23 02:35.52: Using cache hint "ocaml/opam:centos-9-ocaml-5.4@sha256:e203d084b077edf8d3cc8700718ac30d0e981480279804cb60a05b8b205c71be-ezcurl-lwt.0.3-95c7d10c303cc2a3b3559e7acf463232ea3f06af"
2026-01-23 02:35.52: Using OBuilder spec:
((from ocaml/opam:centos-9-ocaml-5.4@sha256:e203d084b077edf8d3cc8700718ac30d0e981480279804cb60a05b8b205c71be)
(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 ezcurl-lwt.0.3 0.3"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ezcurl-lwt.0.3;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"centos-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ezcurl-lwt.0.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test ezcurl-lwt.0.3) || true"))
(run (shell "opam reinstall --with-test --verbose ezcurl-lwt.0.3;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"centos-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ezcurl-lwt.0.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-01-23 02:35.52: Waiting for resource in pool OCluster
2026-01-23 07:42.16: Waiting for worker…
2026-01-23 07:46.07: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
HEAD is now at 69f4d66596 Merge pull request #29159 from tbrk/release-ortools-9.14.0
Updating 69f4d66596..95c7d10c30
Fast-forward
packages/ezcurl-lwt/ezcurl-lwt.0.3/opam | 41 +++++++++++++++++++++++++++++++++
packages/ezcurl/ezcurl.0.3/opam | 40 ++++++++++++++++++++++++++++++++
2 files changed, 81 insertions(+)
create mode 100644 packages/ezcurl-lwt/ezcurl-lwt.0.3/opam
create mode 100644 packages/ezcurl/ezcurl.0.3/opam
(from ocaml/opam:centos-9-ocaml-5.4@sha256:e203d084b077edf8d3cc8700718ac30d0e981480279804cb60a05b8b205c71be)
2026-01-23 07:46.25 ---> using "0ccbbadcc53dda68324b3ca9abe4dc68694a58dbe4bfd7dbd9103f71cb0b6749" 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-01-23 07:46.25 ---> using "a96a4f43c1a3c92655c15217c3b99e5ee1fa508bb7a5d10f8afcf3bef8b427be" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-23 07:46.25 ---> using "a93a0a9916d67cf9f537d277fcbc22c20717e4ca122bb6a5347848c04e092dfb" 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=centos os-version=9
# 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 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-01-23 07:46.25 ---> using "8249da851c574dcafaf9f034f7c2d3532ff68b95190b8152e61cd04ea7f1140a" 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-01-23 07:46.25 ---> using "327bf482793f9003db9322e6b6a455d83f81f65908a17b6cceb5c3b5775e7da9" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-23 07:46.55 ---> saved as "00b8dca9beb088bacbd59648606ceb5ce07bbee5491aed8be8e2b3edb38f4cb1"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-23 07:47.22 ---> saved as "b25130e8c81af01bfdb053abc23d657741f16a45adfc649da192fea019818020"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 9 - BaseOS 32 kB/s | 14 kB 00:00
- CentOS Stream 9 - BaseOS 11 MB/s | 8.9 MB 00:00
- CentOS Stream 9 - AppStream 93 kB/s | 14 kB 00:00
- CentOS Stream 9 - AppStream 12 MB/s | 26 MB 00:02
- CentOS Stream 9 - CRB 77 kB/s | 14 kB 00:00
- CentOS Stream 9 - CRB 9.7 MB/s | 7.6 MB 00:00
- CentOS Stream 9 - Extras packages 111 kB/s | 16 kB 00:00
- Metadata cache created.
2026-01-23 07:47.45 ---> saved as "00b8d6d53568b03b162d716c2232ed717971ff211b04d90341cf2de2307424c8"
/home/opam: (run (shell "opam pin add -k version -yn ezcurl-lwt.0.3 0.3"))
ezcurl-lwt is now pinned to version 0.3
2026-01-23 07:47.46 ---> saved as "561c651f686f1a15de95d0c999dbfa8a6283a259824696f68dfc1da7e163a1af"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ezcurl-lwt.0.3;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"centos-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ezcurl-lwt.0.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ezcurl-lwt.0.3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 12 packages
- install base-bytes base [required by ocplib-endian]
- install conf-libcurl 2 [required by ocurl]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.21.0 [required by ezcurl-lwt]
- install dune-configurator 3.21.0 [required by lwt]
- install ezcurl 0.3 [required by ezcurl-lwt]
- install ezcurl-lwt 0.3 (pinned)
- install lwt 5.9.2 [required by ezcurl-lwt]
- install ocamlfind 1.9.8 [required by ocurl]
- install ocplib-endian 1.2 [required by lwt]
- install ocurl 0.9.2 [required by ezcurl]
The following system packages will first need to be installed:
libcurl-devel openssl-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
2. Display the recommended yum 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 "yum" "install" "-y" "libcurl-devel" "openssl-devel"
- Last metadata expiration check: 0:00:08 ago on Fri Jan 23 07:47:43 2026.
- Dependencies resolved.
- ================================================================================
- Package Architecture Version Repository Size
- ================================================================================
- Installing:
- libcurl-devel x86_64 7.76.1-38.el9 appstream 974 k
- openssl-devel x86_64 1:3.5.1-6.el9 appstream 4.8 M
-
- Transaction Summary
- ================================================================================
- Install 2 Packages
-
- Total download size: 5.7 M
- Installed size: 6.7 M
- Downloading Packages:
- (1/2): libcurl-devel-7.76.1-38.el9.x86_64.rpm 3.6 MB/s | 974 kB 00:00
- (2/2): openssl-devel-3.5.1-6.el9.x86_64.rpm 9.2 MB/s | 4.8 MB 00:00
- --------------------------------------------------------------------------------
- Total 7.3 MB/s | 5.7 MB 00:00
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
- Preparing : 1/1
-
- Installing : openssl-devel-1:3.5.1-6.el9.x86_64 1/2
- Installing : libcurl-devel-7.76.1-38.el9.x86_64 2/2
- Running scriptlet: libcurl-devel-7.76.1-38.el9.x86_64 2/2
- Verifying : libcurl-devel-7.76.1-38.el9.x86_64 1/2
- Verifying : openssl-devel-1:3.5.1-6.el9.x86_64 2/2
-
- Installed:
- libcurl-devel-7.76.1-38.el9.x86_64 openssl-devel-1:3.5.1-6.el9.x86_64
-
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "libcurl-devel" "openssl-devel"
- libcurl-devel-7.76.1-38.el9.x86_64
- openssl-devel-3.5.1-6.el9.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0 (cached)
-> installed conf-libcurl.2
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.21.0, dune-configurator.3.21.0 (cached)
-> retrieved ezcurl.0.3, ezcurl-lwt.0.3 (cached)
-> retrieved lwt.5.9.2 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved ocurl.0.9.2 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.21.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.21.0
-> installed lwt.5.9.2
-> installed ocurl.0.9.2
-> installed ezcurl.0.3
-> installed ezcurl-lwt.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-23 07:49.17 ---> saved as "84e05b2570b6079f896579b0cd0e1b1f32ff4f2c1cdf5b0673884bb78f5132bb"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test ezcurl-lwt.0.3) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile ezcurl-lwt 0.3 (pinned)
=== install 11 packages
- install astring 0.8.5 [required by mdx]
- install camlp-streams 5.0.1 [required by mdx]
- install cmdliner 2.1.0 [required by mdx]
- install fmt 0.11.0 [required by mdx]
- install logs 0.10.0 [required by mdx]
- install mdx 2.5.1 [required by ezcurl-lwt]
- install ocaml-version 4.0.3 [required by mdx]
- install ocamlbuild 0.16.1 [required by fmt, astring, logs]
- install re 1.14.0 [required by mdx]
- install result 1.5 [required by mdx]
- install topkg 1.1.1 [required by fmt, astring, logs]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved camlp-streams.5.0.1 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0 (https://opam.ocaml.org/cache)
-> retrieved mdx.2.5.1 (https://opam.ocaml.org/cache)
-> retrieved ocaml-version.4.0.3 (https://opam.ocaml.org/cache)
-> installed camlp-streams.5.0.1
-> retrieved ocamlbuild.0.16.1 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved result.1.5 (https://opam.ocaml.org/cache)
-> installed ocaml-version.4.0.3
-> retrieved topkg.1.1.1 (https://opam.ocaml.org/cache)
-> installed result.1.5
-> installed re.1.14.0
-> installed cmdliner.2.1.0
-> removed ezcurl-lwt.0.3
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed logs.0.10.0
-> installed mdx.2.5.1
[ERROR] The compilation of ezcurl-lwt.0.3 failed at "dune build -p ezcurl-lwt -j 71 @install @runtest".
#=== ERROR while compiling ezcurl-lwt.0.3 =====================================#
# context 2.5.0 | linux/x86_64 | ocaml-base-compiler.5.4.0 | pinned(https://github.com/c-cube/ezcurl/releases/download/v0.3/ezcurl-0.3.tbz)
# path ~/.opam/5.4/.opam-switch/build/ezcurl-lwt.0.3
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p ezcurl-lwt -j 71 @install @runtest
# exit-code 1
# env-file ~/.opam/log/ezcurl-lwt-7-6e29b9.env
# output-file ~/.opam/log/ezcurl-lwt-7-6e29b9.out
### output ###
# File "README.md", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/README.md _build/default/README.md.corrected
# diff --git a/_build/default/README.md b/_build/default/README.md.corrected
# index f2788b7..e689293 100644
# --- a/_build/default/README.md
# +++ b/_build/default/README.md.corrected
# @@ -33,11 +33,11 @@ val url : string = "https://curl.haxx.se/"
# # let res = Ezcurl.get ~url ();;
# ...
# # let content = match res with Ok c -> c | Error (_,s) -> failwith s;;
# -val content : string Ezcurl_core.response =
# -...
# +Exception: Failure "Couldn't resolve host name".
#
# # content.Ezcurl.code;;
# -- : int = 200
# +Line 1, characters 1-8:
# +Error: Unbound value content
# ```
#
# It is also possible to create a client with `Ezcurl.make()` and re-use
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build ezcurl-lwt 0.3
+-
+- The following changes have been performed
| - remove ezcurl-lwt 0.3
| - install astring 0.8.5
| - install camlp-streams 5.0.1
| - install cmdliner 2.1.0
| - install fmt 0.11.0
| - install logs 0.10.0
| - install mdx 2.5.1
| - install ocaml-version 4.0.3
| - install ocamlbuild 0.16.1
| - install re 1.14.0
| - install result 1.5
| - install topkg 1.1.1
+-
# To update the current shell environment, run: eval $(opam env)
The former state can be restored with:
/usr/bin/opam switch import "/home/opam/.opam/5.4/.opam-switch/backup/state-20260123074917.export"
Or you can retry to install your package selection with:
/usr/bin/opam install --restore
2026-01-23 07:49.48 ---> saved as "47204df403bb7cc2f55deb7b3fcdb3d48c7759a6558a25189e038531b91add45"
/home/opam: (run (shell "opam reinstall --with-test --verbose ezcurl-lwt.0.3;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"centos-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ezcurl-lwt.0.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ezcurl-lwt.0.3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install ezcurl-lwt 0.3 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/3: [ezcurl-lwt: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ezcurl-lwt" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/ezcurl-lwt.0.3)
- File "README.md", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/README.md _build/default/README.md.corrected
- diff --git a/_build/default/README.md b/_build/default/README.md.corrected
- index f2788b7..e689293 100644
- --- a/_build/default/README.md
- +++ b/_build/default/README.md.corrected
- @@ -33,11 +33,11 @@ val url : string = "https://curl.haxx.se/"
- # let res = Ezcurl.get ~url ();;
- ...
- # let content = match res with Ok c -> c | Error (_,s) -> failwith s;;
- -val content : string Ezcurl_core.response =
- -...
- +Exception: Failure "Couldn't resolve host name".
-
- # content.Ezcurl.code;;
- -- : int = 200
- +Line 1, characters 1-8:
- +Error: Unbound value content
- ```
-
- It is also possible to create a client with `Ezcurl.make()` and re-use
[ERROR] The compilation of ezcurl-lwt.0.3 failed at "dune build -p ezcurl-lwt -j 71 @install @runtest".
#=== ERROR while compiling ezcurl-lwt.0.3 =====================================#
# context 2.5.0 | linux/x86_64 | ocaml-base-compiler.5.4.0 | pinned(https://github.com/c-cube/ezcurl/releases/download/v0.3/ezcurl-0.3.tbz)
# path ~/.opam/5.4/.opam-switch/build/ezcurl-lwt.0.3
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p ezcurl-lwt -j 71 @install @runtest
# exit-code 1
# env-file ~/.opam/log/ezcurl-lwt-7-ba851f.env
# output-file ~/.opam/log/ezcurl-lwt-7-ba851f.out
### output ###
# File "README.md", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/README.md _build/default/README.md.corrected
# diff --git a/_build/default/README.md b/_build/default/README.md.corrected
# index f2788b7..e689293 100644
# --- a/_build/default/README.md
# +++ b/_build/default/README.md.corrected
# @@ -33,11 +33,11 @@ val url : string = "https://curl.haxx.se/"
# # let res = Ezcurl.get ~url ();;
# ...
# # let content = match res with Ok c -> c | Error (_,s) -> failwith s;;
# -val content : string Ezcurl_core.response =
# -...
# +Exception: Failure "Couldn't resolve host name".
#
# # content.Ezcurl.code;;
# -- : int = 200
# +Line 1, characters 1-8:
# +Error: Unbound value content
# ```
#
# It is also possible to create a client with `Ezcurl.make()` and re-use
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build ezcurl-lwt 0.3
+-
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose ezcurl-lwt.0.3' failed.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose ezcurl-lwt.0.3;
res=$?;
test "$res" != 31 && exit "$res";
export OPAMCLI=2.0;
build_dir=$(opam var prefix)/.opam-switch/build;
failed=$(ls "$build_dir");
partial_fails="";
for pkg in $failed; do
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"centos-9\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'ezcurl-lwt.0.3' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 1
2026-01-23 07:50.18: Job failed: Failed: Build failed
2026-01-23 07:50.18: Log analysis:
2026-01-23 07:50.18: >>>
[ERROR] The compilation of ezcurl-lwt.0.3 failed at "dune build -p ezcurl-lwt -j 71 @install @runtest".
(score = 20)
2026-01-23 07:50.18: >>>
[ERROR] The compilation of ezcurl-lwt.0.3 failed at "dune build -p ezcurl-lwt -j 71 @install @runtest".
(score = 20)
2026-01-23 07:50.18: The compilation of ezcurl-lwt.0.3 failed at "dune build -p ezcurl-lwt -j 71 @install @runtest".