Build:
  1. 0
2025-12-31 05:43.28: New job: test simple_httpd.1.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29154/head (fbff12a1646941121b45586818128e5b6a7c5ee0)
                              on ubuntu-24.04-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/29154/head" && git reset --hard fbff12a1
git fetch origin master
git merge --no-edit f2d102f951a5dc2af6db218c6aef53c80186295a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:278b672f186b327a194b8db4022fce7f93db7f1a993e9769fc596196fd52185d
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 simple_httpd.1.0 1.0
RUN opam reinstall simple_httpd.1.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"ubuntu-24.04\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'simple_httpd.1.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test simple_httpd.1.0) || true
RUN opam reinstall --with-test --verbose simple_httpd.1.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"ubuntu-24.04\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'simple_httpd.1.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2025-12-31 05:43.28: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:278b672f186b327a194b8db4022fce7f93db7f1a993e9769fc596196fd52185d-simple_httpd.1.0-fbff12a1646941121b45586818128e5b6a7c5ee0"
2025-12-31 05:43.28: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:278b672f186b327a194b8db4022fce7f93db7f1a993e9769fc596196fd52185d)
 (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 simple_httpd.1.0 1.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall simple_httpd.1.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-24.04\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'simple_httpd.1.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test simple_httpd.1.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose simple_httpd.1.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-24.04\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'simple_httpd.1.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-12-31 05:43.28: Waiting for resource in pool OCluster
2025-12-31 05:43.29: Waiting for worker…
2025-12-31 05:43.30: Got resource from pool OCluster
Building on clete
All commits already cached
HEAD is now at f2d102f951 Merge pull request #29150 from raphael-proust/llvm-20-21-only-cosmetics
Updating f2d102f951..fbff12a164
Fast-forward
 packages/simple_httpd/simple_httpd.1.0/opam        | 50 ++++++++++++++++++++++
 .../simple_httpd_caqti/simple_httpd_caqti.1.0/opam | 41 ++++++++++++++++++
 2 files changed, 91 insertions(+)
 create mode 100644 packages/simple_httpd/simple_httpd.1.0/opam
 create mode 100644 packages/simple_httpd_caqti/simple_httpd_caqti.1.0/opam

(from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:278b672f186b327a194b8db4022fce7f93db7f1a993e9769fc596196fd52185d)
Unable to find image 'ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:278b672f186b327a194b8db4022fce7f93db7f1a993e9769fc596196fd52185d' locally
docker.io/ocaml/opam@sha256:278b672f186b327a194b8db4022fce7f93db7f1a993e9769fc596196fd52185d: Pulling from ocaml/opam
20043066d3d5: Already exists
74a201e1c126: Already exists
d63bb9fbbf86: Already exists
9467c6371b02: Already exists
404716bfcac3: Already exists
fed733e23844: Already exists
707d11c2eefa: Already exists
399e5b85a0fc: Already exists
d0bd8a3f061c: Already exists
a49e067103b6: Already exists
564fcb11fd5c: Already exists
b54d000bca39: Already exists
1022f2c60c0e: Already exists
d0473c037ed5: Already exists
b4b0a2839de5: Already exists
f95ab9582825: Already exists
20d40f2e0f67: Already exists
20d40f2e0f67: Already exists
7e5f024df647: Already exists
d39cb8682827: Already exists
72072a576a9f: Already exists
7b230cb3ef48: Already exists
4f4fb700ef54: Already exists
23c320078945: Already exists
8f7a7c3573c5: Already exists
1564848c4b7b: Already exists
cc7ba7d9e277: Already exists
14120930af46: Already exists
baa80d4afe8f: Already exists
68007a21c1c4: Already exists
d2df30cde401: Already exists
f21ee1a89225: Already exists
fde2d5a241cf: Already exists
6d474fa3c976: Already exists
a45b9e268599: Already exists
fb9fa892ed79: Already exists
ba013a08453d: Already exists
9be3559c7d84: Already exists
57e25f9db71c: Already exists
ade4c34ce8e6: Already exists
7ad8fb0274dc: Already exists
c74f9b209c4f: Pulling fs layer
e098ae76c0ea: Pulling fs layer
2327dd30fc54: Pulling fs layer
96a81c73cf2c: Pulling fs layer
eba97716d92c: Pulling fs layer
365e48d53be4: Pulling fs layer
14eb80601afb: Pulling fs layer
96a81c73cf2c: Waiting
eba97716d92c: Waiting
365e48d53be4: Waiting
14eb80601afb: Waiting
e098ae76c0ea: Download complete
2327dd30fc54: Verifying Checksum
2327dd30fc54: Download complete
c74f9b209c4f: Verifying Checksum
c74f9b209c4f: Download complete
c74f9b209c4f: Pull complete
e098ae76c0ea: Pull complete
2327dd30fc54: Pull complete
365e48d53be4: Verifying Checksum
365e48d53be4: Download complete
eba97716d92c: Download complete
14eb80601afb: Verifying Checksum
14eb80601afb: Download complete
96a81c73cf2c: Verifying Checksum
96a81c73cf2c: Download complete
96a81c73cf2c: Pull complete
eba97716d92c: Pull complete
365e48d53be4: Pull complete
14eb80601afb: Pull complete
Digest: sha256:278b672f186b327a194b8db4022fce7f93db7f1a993e9769fc596196fd52185d
Status: Downloaded newer image for ocaml/opam@sha256:278b672f186b327a194b8db4022fce7f93db7f1a993e9769fc596196fd52185d
2025-12-31 05:44.36 ---> using "e294527c63d4c5c0949d120214afafa9f861c8b85ace728166118af3cbb037a8" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-31 05:44.36 ---> using "2562e9aea6186d48e9da3c25e27b4934262b5e5bc778a47b40cf35b7125c42ce" 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.

Continue? [Y/n] y
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.

[NOTE] The 'jobs' option was reset, its value was 255 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=255 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-31 05:44.36 ---> using "12c5218e8dff258b24dcadf1205d49414293a97c5e885fbcf6c57a99c0a49e37" 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=ubuntu os-version=24.04
# 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
2025-12-31 05:44.36 ---> using "57d1809a1cb8e216b135b1285e5ef613922d93b7e0c91c5b7b0627b68c85f141" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2025-12-31 05:44.36 ---> using "ef82785cd62abdf788c006dfa61936e1ff07f097f0961bd0149939b10aa6dfb4" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-12-31 05:44.41 ---> saved as "4826f18ae0f06ef7d13dbff76f471175346da9ddfea4c91b244838d8e5869b56"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-31 05:45.01 ---> saved as "6e5415798ae50c41778128858fec17298330ba7adb11f64db3deb02ef22300f1"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://security.ubuntu.com/ubuntu noble-security InRelease [126 kB]
- Hit:2 http://archive.ubuntu.com/ubuntu noble InRelease
- Get:3 http://archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB]
- Get:4 http://archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB]
- Fetched 378 kB in 1s (534 kB/s)
- Reading package lists...
- 
2025-12-31 05:45.04 ---> saved as "92350dd44374e87d7944afba20703c917f20f7b4fa9b90a9308a18ad60031ddb"

/home/opam: (run (shell "opam pin add -k version -yn simple_httpd.1.0 1.0"))
simple_httpd is now pinned to version 1.0
2025-12-31 05:45.05 ---> saved as "9e95131f1cca89a8b31672e36aeb9111cab310588c83339f38e6118f0b66468a"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall simple_httpd.1.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-24.04\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'simple_httpd.1.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
simple_httpd.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 25 packages
  - install base64              3.5.2        [required by simple_httpd]
  - install camlzip             1.13         [required by simple_httpd]
  - install cmdliner            2.1.0        [required by polly]
  - install conf-libssl         4            [required by ssl]
  - install conf-linux-libc-dev 0            [required by polly]
  - install conf-pkg-config     4            [required by conf-zlib, conf-libssl]
  - install conf-zlib           1            [required by camlzip]
  - install cppo                1.8.0        [required by simple_httpd]
  - install csexp               1.5.2        [required by dune-configurator]
  - install digestif            1.3.0        [required by simple_httpd]
  - install dune                3.20.2       [required by simple_httpd]
  - install dune-configurator   3.20.2       [required by ssl]
  - install eqaf                0.10         [required by digestif]
  - install magic-mime          1.3.0        [required by simple_httpd]
  - install ocaml-compiler-libs v0.17.0      [required by ppxlib]
  - install ocamlfind           1.9.8        [required by camlzip]
  - install pacomb              1.4.3        [required by simple_httpd]
  - install polly               0.4.1        [required by simple_httpd]
  - install ppx_derivers        1.2.1        [required by ppxlib]
  - install ppxlib              0.37.0       [required by pacomb]
  - install sexplib0            v0.17.0      [required by ppxlib]
  - install simple_httpd        1.0 (pinned)
  - install ssl                 0.7.0        [required by simple_httpd]
  - install stdlib-shims        0.3.0        [required by pacomb]
  - install yojson              3.0.0        [required by simple_httpd]

The following system packages will first need to be installed:
    libssl-dev pkg-config zlib1g-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" "libssl-dev" "pkg-config" "zlib1g-dev"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libpkgconf3:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 16365 files and directories currently installed.)
- Preparing to unpack .../0-libpkgconf3_1.8.1-2build1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-2build1) ...
- Selecting previously unselected package libssl-dev:amd64.
- Preparing to unpack .../1-libssl-dev_3.0.13-0ubuntu3.6_amd64.deb ...
- Unpacking libssl-dev:amd64 (3.0.13-0ubuntu3.6) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../2-pkgconf-bin_1.8.1-2build1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-2build1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../3-pkgconf_1.8.1-2build1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-2build1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../4-pkg-config_1.8.1-2build1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-2build1) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../5-zlib1g-dev_1%3a1.3.dfsg-3.1ubuntu2.1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg-3.1ubuntu2.1) ...
- Setting up libpkgconf3:amd64 (1.8.1-2build1) ...
- Setting up libssl-dev:amd64 (3.0.13-0ubuntu3.6) ...
- Setting up pkgconf-bin (1.8.1-2build1) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg-3.1ubuntu2.1) ...
- Setting up pkgconf:amd64 (1.8.1-2build1) ...
- Setting up pkg-config:amd64 (1.8.1-2build1) ...
- Processing triggers for libc-bin (2.39-0ubuntu8.6) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base64.3.5.2  (cached)
-> retrieved camlzip.1.13  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved conf-libssl.4  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-pkg-config.4
-> installed conf-zlib.1
-> installed conf-linux-libc-dev.0
-> installed conf-libssl.4
-> retrieved digestif.1.3.0  (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2  (cached)
-> retrieved eqaf.0.10  (cached)
-> retrieved magic-mime.1.3.0  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved pacomb.1.4.3  (cached)
-> retrieved polly.0.4.1  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> installed cmdliner.2.1.0
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved simple_httpd.1.0  (https://github.com/craff/simple_httpd/archive/refs/tags/1.0.tar.gz)
-> retrieved ssl.0.7.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed ocamlfind.1.9.8
-> installed camlzip.1.13
-> installed dune.3.20.2
-> installed ppx_derivers.1.2.1
-> installed base64.3.5.2
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed eqaf.0.10
-> installed magic-mime.1.3.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed polly.0.4.1
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed yojson.3.0.0
-> installed digestif.1.3.0
-> installed dune-configurator.3.20.2
-> installed ssl.0.7.0
-> installed ppxlib.0.37.0
-> installed pacomb.1.4.3
-> installed simple_httpd.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-31 05:46.32 ---> saved as "29f580d462c47048418cefe8fa68dce7e666a9bb1d95d5c38ae54dd4c1750eb6"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test simple_httpd.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile simple_httpd 1.0 (pinned)
=== install 9 packages
  - install   base-bytes   base         [required by csv, qtest]
  - install   conf-libcurl 2            [required by simple_httpd]
  - install   csv          2.4          [required by simple_httpd]
  - install   ounit2       2.2.7        [required by qtest]
  - install   qcheck       0.91         [required by simple_httpd]
  - install   qcheck-core  0.91         [required by qcheck]
  - install   qcheck-ounit 0.91         [required by qcheck]
  - install   qtest        2.11.2       [required by simple_httpd]
  - install   seq          base         [required by ounit2]

The following system packages will first need to be installed:
    libcurl4-gnutls-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" "libcurl4-gnutls-dev"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libcurl4-gnutls-dev:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 16577 files and directories currently installed.)
- Preparing to unpack .../libcurl4-gnutls-dev_8.5.0-2ubuntu10.6_amd64.deb ...
- Unpacking libcurl4-gnutls-dev:amd64 (8.5.0-2ubuntu10.6) ...
- Setting up libcurl4-gnutls-dev:amd64 (8.5.0-2ubuntu10.6) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed base-bytes.base
-> installed conf-libcurl.2
-> retrieved csv.2.4  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved qcheck.0.91, qcheck-core.0.91, qcheck-ounit.0.91  (https://opam.ocaml.org/cache)
-> retrieved qtest.2.11.2  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> installed csv.2.4
-> retrieved simple_httpd.1.0  (https://github.com/craff/simple_httpd/archive/refs/tags/1.0.tar.gz)
-> installed ounit2.2.2.7
-> removed   simple_httpd.1.0
-> installed qcheck-core.0.91
-> installed qcheck-ounit.0.91
-> installed qcheck.0.91
-> installed qtest.2.11.2
-> installed simple_httpd.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-31 05:47.25 ---> saved as "5c6028eb2c6339d46ffd86fe5aea531e3cf6192ea28c86fa8a9ac2f33f2c5870"

/home/opam: (run (shell  "opam reinstall --with-test --verbose simple_httpd.1.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-24.04\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'simple_httpd.1.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile simple_httpd 1.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [simple_httpd.1.0: extract]
-> retrieved simple_httpd.1.0  (cached)
Processing  2/4: [simple_httpd: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "simple_httpd" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/simple_httpd.1.0)
- (cd _build/default/tests/files && /usr/bin/bash -e -u -o pipefail -c 'dd if=/dev/random of=foo_50k bs=1k count=50')
- 50+0 records in
- 50+0 records out
- 51200 bytes (51 kB, 50 KiB) copied, 0.000378625 s, 135 MB/s
- (cd _build/default/tests/files && /usr/bin/bash -e -u -o pipefail -c 'dd if=/dev/random of=foo_1k bs=1k count=1')
- 1+0 records in
- 1+0 records out
- 1024 bytes (1.0 kB, 1.0 KiB) copied, 4.0655e-05 s, 25.2 MB/s
- (cd _build/default/tests/files && /usr/bin/bash -e -u -o pipefail -c 'dd if=/dev/random of=foo_5k bs=1k count=1')
- 1+0 records in
- 1+0 records out
- 1024 bytes (1.0 kB, 1.0 KiB) copied, 3.5615e-05 s, 28.8 MB/s
- (cd _build/default/tests/files && /usr/bin/bash -e -u -o pipefail -c 'dd if=/dev/random of=foo_10k bs=1k count=10')
- 10+0 records in
- 10+0 records out
- 10240 bytes (10 kB, 10 KiB) copied, 0.000106358 s, 96.3 MB/s
- (cd _build/default/tests/files && /usr/bin/bash -e -u -o pipefail -c 'dd if=/dev/random of=foo_100k bs=1k count=100')
- 100+0 records in
- 100+0 records out
- 102400 bytes (102 kB, 100 KiB) copied, 0.000651321 s, 157 MB/s
- (cd _build/default/tests/files && /usr/bin/bash -e -u -o pipefail -c 'dd if=/dev/random of=foo_500k bs=1k count=500')
- 500+0 records in
- 500+0 records out
- 512000 bytes (512 kB, 500 KiB) copied, 0.00383823 s, 133 MB/s
- (cd _build/default/tests/files && /usr/bin/bash -e -u -o pipefail -c 'dd if=/dev/random of=foo_1M bs=1M count=1')
- 1+0 records in
- 1+0 records out
- 1048576 bytes (1.0 MB, 1.0 MiB) copied, 0.00521365 s, 201 MB/s
- (cd _build/default/tests/files && /usr/bin/bash -e -u -o pipefail -c 'dd if=/dev/random of=foo_5M bs=1M count=5')
- 5+0 records in
- 5+0 records out
- 5242880 bytes (5.2 MB, 5.0 MiB) copied, 0.0352371 s, 149 MB/s
- (cd _build/default/tests/files && /usr/bin/bash -e -u -o pipefail -c 'dd if=/dev/random of=foo_10M bs=1M count=10')
- 10+0 records in
- 10+0 records out
- 10485760 bytes (10 MB, 10 MiB) copied, 0.046597 s, 225 MB/s
- (cd _build/default/tests/files && /usr/bin/bash -e -u -o pipefail -c 'dd if=/dev/random of=foo_50M bs=1M count=50')
- 50+0 records in
- 50+0 records out
- 52428800 bytes (52 MB, 50 MiB) copied, 0.231598 s, 226 MB/s
- (cd _build/default/tests/files && /usr/bin/bash -e -u -o pipefail -c 'dd if=/dev/random of=foo_100M bs=1M count=100')
- 100+0 records in
- 100+0 records out
- 104857600 bytes (105 MB, 100 MiB) copied, 0.442543 s, 237 MB/s
- (cd _build/default/src/qtest && ./qtest.exe)
- 
random seed: 370730003
- Running tests...
 [0 / 28] >>../Input.ml:305                                                    
 [1 / 28] >>../Input.ml:305 *                                                  
 [1 / 28] >>../Input.ml:373                                                    
 [2 / 28] >>../Input.ml:373 *                                                  
 [2 / 28] >>../Input.ml:377                                                    
 [3 / 28] >>../Input.ml:377 *                                                  
 [3 / 28] >>../Input.ml:452                                                    
 [4 / 28] >>../Input.ml:452 *                                                  
 [4 / 28] >>../Input.ml:456                                                    
 [5 / 28] >>../Input.ml:456 *                                                  
 [5 / 28] >>../Input.ml:699                                                    
 [6 / 28] >>../Input.ml:699 *                                                  
 [6 / 28] >>../Request.ml:282                                                  
 [7 / 28] >>../Request.ml:282 *                                                
 [7 / 28] >>../Util.ml:144                                                     
 [8 / 28] >>../Util.ml:144 *                                                   
 [8 / 28] >>../Util.ml:145                                                     
 [9 / 28] >>../Util.ml:145 *                                                   
 [9 / 28] >>../Util.ml:146                                                     
 [10 / 28] >>../Util.ml:146 *                                                  
 [10 / 28] >>../Util.ml:147                                                    
 [11 / 28] >>../Util.ml:147 *                                                  
 [11 / 28] >>../Util.ml:173                                                    
 [12 / 28] >>../Util.ml:173 *                                                  
 [12 / 28] >>../Util.ml:174                                                    
 [13 / 28] >>../Util.ml:174 *                                                  
 [13 / 28] >>../Util.ml:175                                                    
 [14 / 28] >>../Util.ml:175 *                                                  
 [14 / 28] >>../Util.ml:176                                                    
 [15 / 28] >>../Util.ml:176 *                                                  
 [15 / 28] >>../Util.ml:177                                                    
 [16 / 28] >>../Util.ml:177 *                                                  
 [16 / 28] >>../Util.ml:182                                                    
 [17 / 28] >>../Util.ml:182 *                                                  
 [17 / 28] >>../Util.ml:222                                                    
 [18 / 28] >>../Util.ml:222 *                                                  
 [18 / 28] >>../Util.ml:223                                                    
 [19 / 28] >>../Util.ml:223 *                                                  
 [19 / 28] >>../Util.ml:224                                                    
 [20 / 28] >>../Util.ml:224 *                                                  
 [20 / 28] >>../Util.ml:225                                                    
 [21 / 28] >>../Util.ml:225 *                                                  
 [21 / 28] >>../Util.ml:226                                                    
 [22 / 28] >>../Util.ml:226 *                                                  
 [22 / 28] >>../Util.ml:227                                                    
 [23 / 28] >>../Util.ml:227 *                                                  
 [23 / 28] >>../Util.ml:228                                                    
 [24 / 28] >>../Util.ml:228 *                                                  
 [24 / 28] >>../Util.ml:229                                                    
 [25 / 28] >>../Util.ml:229 *                                                  
 [25 / 28] >>../Util.ml:230                                                    
 [26 / 28] >>../Util.ml:230 *                                                  
 [26 / 28] >>../Util.ml:266                                                    
 [27 / 28] >>../Util.ml:266 *                                                  
 [27 / 28] >>../Util.ml:270                                                    
 [28 / 28] >>../Util.ml:270 *                                                  
Ran: 28 tests in: 0.36 seconds.                                        
- SUCCESS
- (cd _build/default/tests && ./sse_count.sh ../examples/sse_server.exe) > _build/default/tests/sse_count.out
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100    90    0    90    0     0     99      0 --:--:-- --:--:-- --:--:--    99
100   100    0   100    0     0     90      0 --:--:--  0:00:01 --:--:--    90
- (cd _build/default/tests && ./echo1.sh ../examples/echo.exe) > _build/default/tests/echo1.out
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100   234  100   234    0     0   256k      0 --:--:-- --:--:-- --:--:--  228k
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100   508    0   508    0     0   169k      0 --:--:-- --:--:-- --:--:--  248k
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100    12  100    12    0     0   4523      0 --:--:-- --:--:-- --:--:--  6000
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100   123  100   123    0     0   145k      0 --:--:-- --:--:-- --:--:--  120k
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100   481    0   481    0     0   242k      0 --:--:-- --:--:-- --:--:--  469k
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100    12  100    12    0     0  12631      0 --:--:-- --:--:-- --:--:-- 12000
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100   205  100   205    0     0   175k      0 --:--:-- --:--:-- --:--:--  200k
- (cd _build/default/tests && ../../install/default/bin/vfs_pack -o vfs.ml -v --destination=store/ --mirror=files/)
- mirror directory "files/" as ""
- add path "foo_100M" = "files/foo_100M" in "store/foo_100M"
- add path "foo_50M" = "files/foo_50M" in "store/foo_50M"
- add path "foo_10M" = "files/foo_10M" in "store/foo_10M"
- add path "foo_5M" = "files/foo_5M" in "store/foo_5M"
- add path "foo_1M" = "files/foo_1M" in "store/foo_1M"
- add path "foo_500k" = "files/foo_500k" in "store/foo_500k"
- add file "foo_10k" = "files/foo_10k"
- add path "foo_100k" = "files/foo_100k" in "store/foo_100k"
- add file "foo_5k" = "files/foo_5k"
- add file "foo_1k" = "files/foo_1k"
- add path "foo_50k" = "files/foo_50k" in "store/foo_50k"
- (cd _build/default/tests && ./chunked.sh ../src/bin/http_of_dir.exe HTTP) > _build/default/tests/chunked-out
- download1
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 50.0M  100 50.0M    0     0   853M      0 --:--:-- --:--:-- --:--:--  862M
- download2
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 50.0M  100 50.0M    0     0   894M      0 --:--:-- --:--:-- --:--:--  909M
- download3
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 50.0M  100 50.0M    0     0   909M      0 --:--:-- --:--:-- --:--:--  925M
- upload1
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
 97 50.0M    0     0   97 48.8M      0  1099M --:--:-- --:--:-- --:--:-- 1086M
100 50.0M  100    17  100 50.0M    331   974M --:--:-- --:--:-- --:--:--  961M
- upload2
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 50.0M  100    17  100 50.0M    350  1030M --:--:-- --:--:-- --:--:-- 1041M
- upload3
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 50.0M  100    17  100 50.0M    329   968M --:--:-- --:--:-- --:--:--  980M
- (cd _build/default/tests && ./chunked.sh ../src/bin/http_of_dir.exe SSL) > _build/default/tests/chunked-ssl-out
- download1
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 50.0M  100 50.0M    0     0   791M      0 --:--:-- --:--:-- --:--:--  793M
- download2
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 50.0M  100 50.0M    0     0   550M      0 --:--:-- --:--:-- --:--:--  555M
- download3
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 50.0M  100 50.0M    0     0   610M      0 --:--:-- --:--:-- --:--:--  617M
- upload1
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 50.0M  100    17  100 50.0M    222   654M --:--:-- --:--:-- --:--:--  657M
- upload2
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 50.0M  100    17  100 50.0M    225   663M --:--:-- --:--:-- --:--:--  657M
- upload3
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 50.0M  100    17  100 50.0M    246   726M --:--:-- --:--:-- --:--:--  735M
- (cd _build/default/tests && ./chunked.sh ../src/bin/http_of_dir.exe KTLS) > _build/default/tests/chunked-ktls-out
- download1
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 50.0M  100 50.0M    0     0   920M      0 --:--:-- --:--:-- --:--:--  925M
- download2
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 50.0M  100 50.0M    0     0   863M      0 --:--:-- --:--:-- --:--:--  877M
- download3
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 50.0M  100 50.0M    0     0   801M      0 --:--:-- --:--:-- --:--:--  806M
- upload1
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 50.0M  100    17  100 50.0M    247   729M --:--:-- --:--:-- --:--:--  735M
- upload2
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 50.0M  100    17  100 50.0M    299   881M --:--:-- --:--:-- --:--:--  892M
- upload3
-   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
-                                  Dload  Upload   Total   Spent    Left  Speed
- 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
 50 50.0M    0     0   50 25.0M      0  1088M --:--:-- --:--:-- --:--:-- 1044M
100 50.0M  100    17  100 50.0M    293   861M --:--:-- --:--:-- --:--:--  862M
-> compiled  simple_httpd.1.0
-> removed   simple_httpd.1.0
-> installed simple_httpd.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-31 05:47.58 ---> saved as "b5f002175a68a140b507ed050f106f708169969ae07cb9fe2125dd0bb0794e44"
Job succeeded
2025-12-31 05:48.02: Job succeeded