Organisationsedwintorokangstrom63836d (master)ubuntu-25.04-5.4_opam-2.4

ubuntu-25.04-5.4_opam-2.4

Link Copied
Code Copied

Logs

2025-12-15 14:41.51: New job: test edwintorok/angstrom https://github.com/edwintorok/angstrom.git#refs/heads/master (63836d8106166ebc15f365d95a6e02828dab87a3) (linux-x86_64:ubuntu-25.04-5.4_opam-2.4)
Base: ocaml/opam:ubuntu-25.04-ocaml-5.4@sha256:317ab3a2251a14fd41554ae61c0a9130d4d6b4a163f1b44dee089c0c3e18779a
Opam project build


To reproduce locally:


git clone --recursive "https://github.com/edwintorok/angstrom.git" -b "master" && cd "angstrom" && git reset --hard 63836d81
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-25.04-ocaml-5.4@sha256:317ab3a2251a14fd41554ae61c0a9130d4d6b4a163f1b44dee089c0c3e18779a
# ubuntu-25.04-5.4_opam-2.4
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
WORKDIR /src
RUN sudo chown opam /src
RUN cd ~/opam-repository && (git cat-file -e c65fcb116531ae66ad3316b265e233443ef25044 || git fetch origin master) && git reset -q --hard c65fcb116531ae66ad3316b265e233443ef25044 && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 angstrom.opam angstrom-unix.opam angstrom-lwt-unix.opam angstrom-async.opam ./
RUN opam pin add -yn angstrom.dev './' && \
opam pin add -yn angstrom-unix.dev './' && \
opam pin add -yn angstrom-lwt-unix.dev './' && \
opam pin add -yn angstrom-async.dev './'
RUN echo '(lang dune 3.0)' > './dune-project'
ENV DEPS="alcotest.1.9.1 astring.0.8.5 async.v0.17.0 async_kernel.v0.17.0 async_log.v0.17.0 async_rpc_kernel.v0.17.0 async_unix.v0.17.0 base.v0.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base base_bigstring.v0.17.0 base_quickcheck.v0.17.1 bigstringaf.0.10.0 bin_prot.v0.17.0-1 capitalization.v0.17.0 cmdliner.2.1.0 core.v0.17.1 core_kernel.v0.17.0 core_unix.v0.17.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.20.2 dune-configurator.3.20.2 expect_test_helpers_core.v0.17.0 fieldslib.v0.17.0 fmt.0.11.0 gel.v0.17.0 int_repr.v0.17.0 jane-street-headers.v0.17.0 jst-config.v0.17.0 lwt.5.9.2 num.1.6 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 parsexp.v0.17.0 ppx_assert.v0.17.0 ppx_base.v0.17.0 ppx_bench.v0.17.1 ppx_bin_prot.v0.17.1 ppx_cold.v0.17.0 ppx_compare.v0.17.0 ppx_custom_printf.v0.17.0 ppx_derivers.1.2.1 ppx_diff.v0.17.1 ppx_disable_unused_warnings.v0.17.0 ppx_enumerate.v0.17.0 ppx_expect.v0.17.3 ppx_fields_conv.v0.17.0 ppx_fixed_literal.v0.17.0 ppx_globalize.v0.17.2 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_ignore_instrumentation.v0.17.0 ppx_inline_test.v0.17.1 ppx_jane.v0.17.0 ppx_let.v0.17.1 ppx_log.v0.17.0 ppx_module_timer.v0.17.0 ppx_optcomp.v0.17.1 ppx_optional.v0.17.0 ppx_pipebang.v0.17.0 ppx_sexp_conv.v0.17.1 ppx_sexp_message.v0.17.0 ppx_sexp_value.v0.17.0 ppx_stable.v0.17.1 ppx_stable_witness.v0.17.0 ppx_string.v0.17.0 ppx_string_conv.v0.17.0 ppx_tydi.v0.17.1 ppx_typerep_conv.v0.17.1 ppx_variants_conv.v0.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 protocol_version_header.v0.17.0 re.1.14.0 sexp_pretty.v0.17.0 sexplib.v0.17.0 sexplib0.v0.17.0 spawn.v0.17.0 splittable_random.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 textutils.v0.17.0 time_now.v0.17.0 timezone.v0.17.0 topkg.1.1.1 typerep.v0.17.1 uopt.v0.17.0 uutf.1.0.4 variantslib.v0.17.0"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.4 --depext-only -y angstrom.dev angstrom-unix.dev angstrom-lwt-unix.dev angstrom-async.dev $DEPS
RUN opam install $DEPS
COPY --chown=1000:1000 . /src
RUN opam exec -- dune build @install @check @runtest && rm -rf _build


END-OF-DOCKERFILE
docker build .
END-REPRO-BLOCK


2025-12-15 14:41.51: Using cache hint "edwintorok/angstrom-ocaml/opam:ubuntu-25.04-ocaml-5.4@sha256:317ab3a2251a14fd41554ae61c0a9130d4d6b4a163f1b44dee089c0c3e18779a-ubuntu-25.04-5.4_opam-2.4-4b9f2a424e7ccdf3314765aefb344060"
2025-12-15 14:41.51: Using OBuilder spec:
((from ocaml/opam:ubuntu-25.04-ocaml-5.4@sha256:317ab3a2251a14fd41554ae61c0a9130d4d6b4a163f1b44dee089c0c3e18779a)
(comment ubuntu-25.04-5.4_opam-2.4)
(user (uid 1000) (gid 1000))
(env CLICOLOR_FORCE 1)
(env OPAMCOLOR always)
(workdir /src)
(run (shell "sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam"))
(run (shell "opam init --reinit -ni"))
(run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
(workdir /src)
(run (shell "sudo chown opam /src"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e c65fcb116531ae66ad3316b265e233443ef25044 || git fetch origin master) && git reset -q --hard c65fcb116531ae66ad3316b265e233443ef25044 && git log --no-decorate -n1 --oneline && opam update -u"))
(copy (src angstrom.opam angstrom-unix.opam angstrom-lwt-unix.opam angstrom-async.opam)
(dst ./))
(run (network host)
(shell  "opam pin add -yn angstrom.dev './' && \
\nopam pin add -yn angstrom-unix.dev './' && \
\nopam pin add -yn angstrom-lwt-unix.dev './' && \
\nopam pin add -yn angstrom-async.dev './'"))
(run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
(env DEPS "alcotest.1.9.1 astring.0.8.5 async.v0.17.0 async_kernel.v0.17.0 async_log.v0.17.0 async_rpc_kernel.v0.17.0 async_unix.v0.17.0 base.v0.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base base_bigstring.v0.17.0 base_quickcheck.v0.17.1 bigstringaf.0.10.0 bin_prot.v0.17.0-1 capitalization.v0.17.0 cmdliner.2.1.0 core.v0.17.1 core_kernel.v0.17.0 core_unix.v0.17.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.20.2 dune-configurator.3.20.2 expect_test_helpers_core.v0.17.0 fieldslib.v0.17.0 fmt.0.11.0 gel.v0.17.0 int_repr.v0.17.0 jane-street-headers.v0.17.0 jst-config.v0.17.0 lwt.5.9.2 num.1.6 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 parsexp.v0.17.0 ppx_assert.v0.17.0 ppx_base.v0.17.0 ppx_bench.v0.17.1 ppx_bin_prot.v0.17.1 ppx_cold.v0.17.0 ppx_compare.v0.17.0 ppx_custom_printf.v0.17.0 ppx_derivers.1.2.1 ppx_diff.v0.17.1 ppx_disable_unused_warnings.v0.17.0 ppx_enumerate.v0.17.0 ppx_expect.v0.17.3 ppx_fields_conv.v0.17.0 ppx_fixed_literal.v0.17.0 ppx_globalize.v0.17.2 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_ignore_instrumentation.v0.17.0 ppx_inline_test.v0.17.1 ppx_jane.v0.17.0 ppx_let.v0.17.1 ppx_log.v0.17.0 ppx_module_timer.v0.17.0 ppx_optcomp.v0.17.1 ppx_optional.v0.17.0 ppx_pipebang.v0.17.0 ppx_sexp_conv.v0.17.1 ppx_sexp_message.v0.17.0 ppx_sexp_value.v0.17.0 ppx_stable.v0.17.1 ppx_stable_witness.v0.17.0 ppx_string.v0.17.0 ppx_string_conv.v0.17.0 ppx_tydi.v0.17.1 ppx_typerep_conv.v0.17.1 ppx_variants_conv.v0.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 protocol_version_header.v0.17.0 re.1.14.0 sexp_pretty.v0.17.0 sexplib.v0.17.0 sexplib0.v0.17.0 spawn.v0.17.0 splittable_random.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 textutils.v0.17.0 time_now.v0.17.0 timezone.v0.17.0 topkg.1.1.1 typerep.v0.17.1 uopt.v0.17.0 uutf.1.0.4 variantslib.v0.17.0")
(env CI true)
(env OCAMLCI true)
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam update --depexts && opam install --cli=2.4 --depext-only -y angstrom.dev angstrom-unix.dev angstrom-lwt-unix.dev angstrom-async.dev $DEPS"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
(copy (src .) (dst /src))
(run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
)


2025-12-15 14:41.51: Waiting for resource in pool OCluster
2025-12-15 19:40.00: Waiting for worker…
2025-12-15 19:42.25: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 63836d8 Remove Lazy from native and bytecode modes: not thread safe


(from ocaml/opam:ubuntu-25.04-ocaml-5.4@sha256:317ab3a2251a14fd41554ae61c0a9130d4d6b4a163f1b44dee089c0c3e18779a)
Unable to find image 'ocaml/opam:ubuntu-25.04-ocaml-5.4@sha256:317ab3a2251a14fd41554ae61c0a9130d4d6b4a163f1b44dee089c0c3e18779a' locally
docker.io/ocaml/opam@sha256:317ab3a2251a14fd41554ae61c0a9130d4d6b4a163f1b44dee089c0c3e18779a: Pulling from ocaml/opam
c62190a9ab61: Already exists
6c31bc6d66d3: Pulling fs layer
e957bf866d84: Pulling fs layer
944f4ce05081: Pulling fs layer
272207377111: Pulling fs layer
e1888eb2b850: Pulling fs layer
14e1aadcfe75: Pulling fs layer
8d63905a7205: Pulling fs layer
6c31bc6d66d3: Waiting
944f4ce05081: Waiting
a5229e60d028: Pulling fs layer
272207377111: Waiting
14e1aadcfe75: Waiting
01409d387ec4: Pulling fs layer
e957bf866d84: Waiting
8d63905a7205: Waiting
ff42524a9723: Pulling fs layer
8735a25efa84: Pulling fs layer
ff42524a9723: Waiting
2768de046e30: Pulling fs layer
ef35f13a0aaa: Pulling fs layer
2768de046e30: Waiting
e2a7b92281c8: Pulling fs layer
ef35f13a0aaa: Waiting
0d2855cbfe26: Pulling fs layer
b7d651e8fc49: Pulling fs layer
0d2855cbfe26: Waiting
0e634005fa7a: Pulling fs layer
0acc86136fa4: Pulling fs layer
648242c238ec: Pulling fs layer
0e634005fa7a: Waiting
4f4fb700ef54: Pulling fs layer
648242c238ec: Waiting
bdc1aecb8a1e: Pulling fs layer
4f4fb700ef54: Waiting
3903fac4969c: Pulling fs layer
bdc1aecb8a1e: Waiting
83da0b79d314: Pulling fs layer
3903fac4969c: Waiting
e2a7b92281c8: Waiting
0203fbde99e8: Pulling fs layer
83da0b79d314: Waiting
f0293603267c: Pulling fs layer
0203fbde99e8: Waiting
3a8981f851cc: Pulling fs layer
b7d651e8fc49: Waiting
f0293603267c: Waiting
68669fc1d256: Pulling fs layer
3a8981f851cc: Waiting
812b7dbefef2: Pulling fs layer
c4e3b4bb3f3b: Pulling fs layer
812b7dbefef2: Waiting
1f963a083838: Pulling fs layer
4411e6a72c35: Pulling fs layer
1f963a083838: Waiting
0acc86136fa4: Waiting
c4e3b4bb3f3b: Waiting
fb7b35cb0a60: Pulling fs layer
4411e6a72c35: Waiting
d5b6f4d4b030: Pulling fs layer
e04eb6841420: Pulling fs layer
d5b6f4d4b030: Waiting
6d58e82fe5e5: Pulling fs layer
169c115f46d8: Pulling fs layer
cb57911ea052: Pulling fs layer
d985218ccb94: Pulling fs layer
cb57911ea052: Waiting
b65bb4a88ae8: Pulling fs layer
d985218ccb94: Waiting
fb7b35cb0a60: Waiting
1c4947d93cfe: Pulling fs layer
b65bb4a88ae8: Waiting
24e6b2f26af5: Pulling fs layer
1c4947d93cfe: Waiting
b9bf47108fe4: Pulling fs layer
cbcae5ff7069: Pulling fs layer
d893b852ecd3: Pulling fs layer
24e6b2f26af5: Waiting
305389c17d81: Pulling fs layer
cbcae5ff7069: Waiting
d893b852ecd3: Waiting
305389c17d81: Waiting
68669fc1d256: Waiting
169c115f46d8: Waiting
6d58e82fe5e5: Waiting
e04eb6841420: Waiting
b9bf47108fe4: Waiting
6c31bc6d66d3: Verifying Checksum
6c31bc6d66d3: Download complete
6c31bc6d66d3: Pull complete
e957bf866d84: Download complete
e957bf866d84: Pull complete
944f4ce05081: Verifying Checksum
944f4ce05081: Download complete
272207377111: Download complete
944f4ce05081: Pull complete
272207377111: Pull complete
e1888eb2b850: Verifying Checksum
e1888eb2b850: Download complete
14e1aadcfe75: Verifying Checksum
14e1aadcfe75: Download complete
8d63905a7205: Verifying Checksum
8d63905a7205: Download complete
a5229e60d028: Verifying Checksum
a5229e60d028: Download complete
01409d387ec4: Verifying Checksum
01409d387ec4: Download complete
ff42524a9723: Verifying Checksum
ff42524a9723: Download complete
8735a25efa84: Verifying Checksum
8735a25efa84: Download complete
2768de046e30: Verifying Checksum
2768de046e30: Download complete
e1888eb2b850: Pull complete
14e1aadcfe75: Pull complete
ef35f13a0aaa: Verifying Checksum
ef35f13a0aaa: Download complete
8d63905a7205: Pull complete
a5229e60d028: Pull complete
01409d387ec4: Pull complete
e2a7b92281c8: Download complete
ff42524a9723: Pull complete
8735a25efa84: Pull complete
0d2855cbfe26: Verifying Checksum
0d2855cbfe26: Download complete
2768de046e30: Pull complete
ef35f13a0aaa: Pull complete
e2a7b92281c8: Pull complete
0d2855cbfe26: Pull complete
b7d651e8fc49: Verifying Checksum
b7d651e8fc49: Download complete
0e634005fa7a: Download complete
0acc86136fa4: Verifying Checksum
0acc86136fa4: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
648242c238ec: Verifying Checksum
648242c238ec: Download complete
bdc1aecb8a1e: Verifying Checksum
bdc1aecb8a1e: Download complete
3903fac4969c: Download complete
0203fbde99e8: Download complete
83da0b79d314: Verifying Checksum
83da0b79d314: Download complete
3a8981f851cc: Verifying Checksum
3a8981f851cc: Download complete
812b7dbefef2: Verifying Checksum
812b7dbefef2: Download complete
68669fc1d256: Verifying Checksum
68669fc1d256: Download complete
c4e3b4bb3f3b: Verifying Checksum
c4e3b4bb3f3b: Download complete
1f963a083838: Verifying Checksum
1f963a083838: Download complete
4411e6a72c35: Download complete
fb7b35cb0a60: Verifying Checksum
fb7b35cb0a60: Download complete
e04eb6841420: Verifying Checksum
e04eb6841420: Download complete
169c115f46d8: Verifying Checksum
169c115f46d8: Download complete
b7d651e8fc49: Pull complete
0e634005fa7a: Pull complete
0acc86136fa4: Pull complete
648242c238ec: Pull complete
4f4fb700ef54: Pull complete
bdc1aecb8a1e: Pull complete
3903fac4969c: Pull complete
83da0b79d314: Pull complete
0203fbde99e8: Pull complete
f0293603267c: Pull complete
3a8981f851cc: Pull complete
68669fc1d256: Pull complete
cb57911ea052: Verifying Checksum
cb57911ea052: Download complete
812b7dbefef2: Pull complete
c4e3b4bb3f3b: Pull complete
1f963a083838: Pull complete
4411e6a72c35: Pull complete
fb7b35cb0a60: Pull complete
d985218ccb94: Verifying Checksum
d985218ccb94: Download complete
b65bb4a88ae8: Verifying Checksum
b65bb4a88ae8: Download complete
1c4947d93cfe: Download complete
24e6b2f26af5: Verifying Checksum
24e6b2f26af5: Download complete
d5b6f4d4b030: Verifying Checksum
d5b6f4d4b030: Download complete
cbcae5ff7069: Download complete
d893b852ecd3: Verifying Checksum
d893b852ecd3: Download complete
305389c17d81: Verifying Checksum
305389c17d81: Download complete
6d58e82fe5e5: Verifying Checksum
6d58e82fe5e5: Download complete
b9bf47108fe4: Verifying Checksum
b9bf47108fe4: Download complete
d5b6f4d4b030: Pull complete
e04eb6841420: Pull complete
6d58e82fe5e5: Pull complete
169c115f46d8: Pull complete
cb57911ea052: Pull complete
d985218ccb94: Pull complete
b65bb4a88ae8: Pull complete
1c4947d93cfe: Pull complete
24e6b2f26af5: Pull complete
b9bf47108fe4: Pull complete
cbcae5ff7069: Pull complete
d893b852ecd3: Pull complete
305389c17d81: Pull complete
Digest: sha256:317ab3a2251a14fd41554ae61c0a9130d4d6b4a163f1b44dee089c0c3e18779a
Status: Downloaded newer image for ocaml/opam@sha256:317ab3a2251a14fd41554ae61c0a9130d4d6b4a163f1b44dee089c0c3e18779a
2025-12-15 19:42.25 ---> using "50e8d351fd85100bcaa09c1a16c9caaf0dd6ebf586c5923343764d4b3caaa07b" from cache


/: (comment ubuntu-25.04-5.4_opam-2.4)


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


/: (env CLICOLOR_FORCE 1)


/: (env OPAMCOLOR always)


/: (workdir /src)


/src: (run (shell "sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam"))
2025-12-15 19:42.25 ---> using "71eba14205a840ca7ffb685dcd48a7ca4563327d75b28716e665884e192611d1" from cache


/src: (run (shell "opam init --reinit -ni"))
Configuring from /home/opam/.opamrc and then from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.


This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.


Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.


<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-15 19:42.25 ---> using "d158064ffb6b3a8fec01ede3f94bcf345c1da48a7ae68f21f680e9c676d3f076" from cache


/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 6.8.0-87-generic
The OCaml toplevel, version 5.4.0
2.4.1
2025-12-15 19:42.25 ---> using "2c7766b5e71fb89a56f210a84c7eb97fd806a0f5c008feb22a76a3cca7c9f637" from cache


/src: (workdir /src)


/src: (run (shell "sudo chown opam /src"))
2025-12-15 19:42.25 ---> using "602e07c899f6d650abc1b32c79d8dd07c19b7959bfbda0fb4e2c4950b65c768a" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e c65fcb116531ae66ad3316b265e233443ef25044 || git fetch origin master) && git reset -q --hard c65fcb116531ae66ad3316b265e233443ef25044 && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
* branch                  master     -> FETCH_HEAD
2ec6d6cc92..c65fcb1165  master     -> origin/master
c65fcb1165 Merge pull request #29080 from dra27/ocaml-config-urls


<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from git+file:///home/opam/opam-repository


Already up-to-date.
Nothing to do.
# To update the current shell environment, run: eval $(opam env)
2025-12-15 19:42.25 ---> using "2725dbeb6a93d6090da505836fbf3ee3aae0046c87593c14e6d33604b2820aac" from cache


/src: (copy (src angstrom.opam angstrom-unix.opam angstrom-lwt-unix.opam angstrom-async.opam)
(dst ./))
2025-12-15 19:42.25 ---> saved as "d7332fc2192a5d3324daac8fa53687ea29bfa9df771edbbb2f32585b93b639cf"


/src: (run (network host)
(shell  "opam pin add -yn angstrom.dev './' && \
\nopam pin add -yn angstrom-unix.dev './' && \
\nopam pin add -yn angstrom-lwt-unix.dev './' && \
\nopam pin add -yn angstrom-async.dev './'"))
[angstrom.dev] synchronised (file:///src)
angstrom is now pinned to file:///src (version dev)
[angstrom-unix.dev] synchronised (file:///src)
angstrom-unix is now pinned to file:///src (version dev)
[angstrom-lwt-unix.dev] synchronised (file:///src)
angstrom-lwt-unix is now pinned to file:///src (version dev)
[angstrom-async.dev] synchronised (file:///src)
angstrom-async is now pinned to file:///src (version dev)
2025-12-15 19:42.32 ---> saved as "d08f9b70282c1715e7c801f6826df73964fbd4b8c4cf965ae08c219acba63879"


/src: (run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
2025-12-15 19:42.32 ---> saved as "c85c6c7d54e5f72f26d5ff8590313801c8502f55c0b9433a53a06c6681290ecf"


/src: (env DEPS "alcotest.1.9.1 astring.0.8.5 async.v0.17.0 async_kernel.v0.17.0 async_log.v0.17.0 async_rpc_kernel.v0.17.0 async_unix.v0.17.0 base.v0.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base base_bigstring.v0.17.0 base_quickcheck.v0.17.1 bigstringaf.0.10.0 bin_prot.v0.17.0-1 capitalization.v0.17.0 cmdliner.2.1.0 core.v0.17.1 core_kernel.v0.17.0 core_unix.v0.17.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.20.2 dune-configurator.3.20.2 expect_test_helpers_core.v0.17.0 fieldslib.v0.17.0 fmt.0.11.0 gel.v0.17.0 int_repr.v0.17.0 jane-street-headers.v0.17.0 jst-config.v0.17.0 lwt.5.9.2 num.1.6 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 parsexp.v0.17.0 ppx_assert.v0.17.0 ppx_base.v0.17.0 ppx_bench.v0.17.1 ppx_bin_prot.v0.17.1 ppx_cold.v0.17.0 ppx_compare.v0.17.0 ppx_custom_printf.v0.17.0 ppx_derivers.1.2.1 ppx_diff.v0.17.1 ppx_disable_unused_warnings.v0.17.0 ppx_enumerate.v0.17.0 ppx_expect.v0.17.3 ppx_fields_conv.v0.17.0 ppx_fixed_literal.v0.17.0 ppx_globalize.v0.17.2 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_ignore_instrumentation.v0.17.0 ppx_inline_test.v0.17.1 ppx_jane.v0.17.0 ppx_let.v0.17.1 ppx_log.v0.17.0 ppx_module_timer.v0.17.0 ppx_optcomp.v0.17.1 ppx_optional.v0.17.0 ppx_pipebang.v0.17.0 ppx_sexp_conv.v0.17.1 ppx_sexp_message.v0.17.0 ppx_sexp_value.v0.17.0 ppx_stable.v0.17.1 ppx_stable_witness.v0.17.0 ppx_string.v0.17.0 ppx_string_conv.v0.17.0 ppx_tydi.v0.17.1 ppx_typerep_conv.v0.17.1 ppx_variants_conv.v0.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 protocol_version_header.v0.17.0 re.1.14.0 sexp_pretty.v0.17.0 sexplib.v0.17.0 sexplib0.v0.17.0 spawn.v0.17.0 splittable_random.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 textutils.v0.17.0 time_now.v0.17.0 timezone.v0.17.0 topkg.1.1.1 typerep.v0.17.1 uopt.v0.17.0 uutf.1.0.4 variantslib.v0.17.0")


/src: (env CI true)


/src: (env OCAMLCI true)


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam update --depexts && opam install --cli=2.4 --depext-only -y angstrom.dev angstrom-unix.dev angstrom-lwt-unix.dev angstrom-async.dev $DEPS"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://archive.ubuntu.com/ubuntu plucky InRelease
- Get:2 http://archive.ubuntu.com/ubuntu plucky-updates InRelease [126 kB]
- Get:3 http://security.ubuntu.com/ubuntu plucky-security InRelease [126 kB]
- Get:4 http://archive.ubuntu.com/ubuntu plucky-backports InRelease [126 kB]
- Get:5 http://archive.ubuntu.com/ubuntu plucky-updates/restricted amd64 Packages [441 kB]
- Get:6 http://security.ubuntu.com/ubuntu plucky-security/main amd64 Packages [390 kB]
- Get:7 http://archive.ubuntu.com/ubuntu plucky-updates/universe amd64 Packages [338 kB]
- Get:8 http://archive.ubuntu.com/ubuntu plucky-updates/main amd64 Packages [565 kB]
- Get:9 http://security.ubuntu.com/ubuntu plucky-security/universe amd64 Packages [251 kB]
- Get:10 http://security.ubuntu.com/ubuntu plucky-security/restricted amd64 Packages [402 kB]
- Fetched 2765 kB in 1s (2538 kB/s)
- Reading package lists...
- 


<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[angstrom.dev] synchronised (file:///src)
[angstrom-async.dev] synchronised (file:///src)
[angstrom-lwt-unix.dev] synchronised (file:///src)
[angstrom-unix.dev] synchronised (file:///src)


[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 3).
[NOTE] Package ocaml-compiler is already installed (current version is 5.4.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.4.0).
[NOTE] Package ocaml is already installed (current version is 5.4.0).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-nnp is already installed (current version is base).
[NOTE] Package base-effects is already installed (current version is base).
[NOTE] Package base-domains is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
2025-12-15 19:42.43 ---> saved as "d365fc2511fbcb3a07f5d73caddd3ffab89f52dbacecacfb42f3e69c81bc3365"


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 3).
[NOTE] Package ocaml-compiler is already installed (current version is 5.4.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.4.0).
[NOTE] Package ocaml is already installed (current version is 5.4.0).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-nnp is already installed (current version is base).
[NOTE] Package base-effects is already installed (current version is base).
[NOTE] Package base-domains is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 94 packages
- install alcotest                    1.9.1
- install astring                     0.8.5
- install async                       v0.17.0
- install async_kernel                v0.17.0
- install async_log                   v0.17.0
- install async_rpc_kernel            v0.17.0
- install async_unix                  v0.17.0
- install base                        v0.17.3
- install base-bytes                  base
- install base_bigstring              v0.17.0
- install base_quickcheck             v0.17.1
- install bigstringaf                 0.10.0
- install bin_prot                    v0.17.0-1
- install capitalization              v0.17.0
- install cmdliner                    2.1.0
- install core                        v0.17.1
- install core_kernel                 v0.17.0
- install core_unix                   v0.17.1
- install cppo                        1.8.0
- install csexp                       1.5.2
- install cstruct                     6.2.0
- install dune                        3.20.2
- install dune-configurator           3.20.2
- install expect_test_helpers_core    v0.17.0
- install fieldslib                   v0.17.0
- install fmt                         0.11.0
- install gel                         v0.17.0
- install int_repr                    v0.17.0
- install jane-street-headers         v0.17.0
- install jst-config                  v0.17.0
- install lwt                         5.9.2
- install num                         1.6
- install ocaml-compiler-libs         v0.17.0
- install ocaml-syntax-shims          1.0.0
- install ocaml_intrinsics_kernel     v0.17.1
- install ocamlbuild                  0.16.1
- install ocamlfind                   1.9.8
- install ocplib-endian               1.2
- install parsexp                     v0.17.0
- install ppx_assert                  v0.17.0
- install ppx_base                    v0.17.0
- install ppx_bench                   v0.17.1
- install ppx_bin_prot                v0.17.1
- install ppx_cold                    v0.17.0
- install ppx_compare                 v0.17.0
- install ppx_custom_printf           v0.17.0
- install ppx_derivers                1.2.1
- install ppx_diff                    v0.17.1
- install ppx_disable_unused_warnings v0.17.0
- install ppx_enumerate               v0.17.0
- install ppx_expect                  v0.17.3
- install ppx_fields_conv             v0.17.0
- install ppx_fixed_literal           v0.17.0
- install ppx_globalize               v0.17.2
- install ppx_hash                    v0.17.0
- install ppx_here                    v0.17.0
- install ppx_ignore_instrumentation  v0.17.0
- install ppx_inline_test             v0.17.1
- install ppx_jane                    v0.17.0
- install ppx_let                     v0.17.1
- install ppx_log                     v0.17.0
- install ppx_module_timer            v0.17.0
- install ppx_optcomp                 v0.17.1
- install ppx_optional                v0.17.0
- install ppx_pipebang                v0.17.0
- install ppx_sexp_conv               v0.17.1
- install ppx_sexp_message            v0.17.0
- install ppx_sexp_value              v0.17.0
- install ppx_stable                  v0.17.1
- install ppx_stable_witness          v0.17.0
- install ppx_string                  v0.17.0
- install ppx_string_conv             v0.17.0
- install ppx_tydi                    v0.17.1
- install ppx_typerep_conv            v0.17.1
- install ppx_variants_conv           v0.17.1
- install ppxlib                      0.37.0
- install ppxlib_jane                 v0.17.4
- install protocol_version_header     v0.17.0
- install re                          1.14.0
- install sexp_pretty                 v0.17.0
- install sexplib                     v0.17.0
- install sexplib0                    v0.17.0
- install spawn                       v0.17.0
- install splittable_random           v0.17.0
- install stdio                       v0.17.0
- install stdlib-shims                0.3.0
- install textutils                   v0.17.0
- install time_now                    v0.17.0
- install timezone                    v0.17.0
- install topkg                       1.1.1
- install typerep                     v0.17.1
- install uopt                        v0.17.0
- install uutf                        1.0.4
- install variantslib                 v0.17.0


<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved async.v0.17.0  (cached)
-> retrieved async_kernel.v0.17.0  (cached)
-> retrieved async_log.v0.17.0  (cached)
-> retrieved async_rpc_kernel.v0.17.0  (cached)
-> retrieved async_unix.v0.17.0  (cached)
-> retrieved base.v0.17.3  (cached)
-> retrieved base_bigstring.v0.17.0  (cached)
-> retrieved base_quickcheck.v0.17.1  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved bin_prot.v0.17.0-1  (cached)
-> retrieved capitalization.v0.17.0  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved core_kernel.v0.17.0  (cached)
-> retrieved core.v0.17.1  (cached)
-> retrieved core_unix.v0.17.1  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved cstruct.6.2.0  (cached)
-> retrieved expect_test_helpers_core.v0.17.0  (cached)
-> retrieved fieldslib.v0.17.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved gel.v0.17.0  (cached)
-> retrieved int_repr.v0.17.0  (cached)
-> retrieved jane-street-headers.v0.17.0  (cached)
-> retrieved jst-config.v0.17.0  (cached)
-> retrieved num.1.6  (cached)
-> retrieved lwt.5.9.2  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved parsexp.v0.17.0  (cached)
-> retrieved ppx_assert.v0.17.0  (cached)
-> retrieved ppx_base.v0.17.0  (cached)
-> retrieved ppx_bench.v0.17.1  (cached)
-> retrieved ppx_bin_prot.v0.17.1  (cached)
-> retrieved ppx_cold.v0.17.0  (cached)
-> retrieved ppx_compare.v0.17.0  (cached)
-> retrieved ppx_custom_printf.v0.17.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_diff.v0.17.1  (cached)
-> retrieved ppx_disable_unused_warnings.v0.17.0  (cached)
-> retrieved ppx_enumerate.v0.17.0  (cached)
-> retrieved ppx_fields_conv.v0.17.0  (cached)
-> retrieved ppx_expect.v0.17.3  (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2  (cached)
-> retrieved ppx_fixed_literal.v0.17.0  (cached)
-> retrieved ppx_globalize.v0.17.2  (cached)
-> retrieved ppx_hash.v0.17.0  (cached)
-> retrieved ppx_here.v0.17.0  (cached)
-> retrieved ppx_ignore_instrumentation.v0.17.0  (cached)
-> retrieved ppx_inline_test.v0.17.1  (cached)
-> retrieved ppx_jane.v0.17.0  (cached)
-> retrieved ppx_let.v0.17.1  (cached)
-> retrieved ppx_log.v0.17.0  (cached)
-> retrieved ppx_module_timer.v0.17.0  (cached)
-> retrieved ppx_optcomp.v0.17.1  (cached)
-> retrieved ppx_optional.v0.17.0  (cached)
-> installed cmdliner.2.1.0
-> installed num.1.6
-> retrieved ppx_pipebang.v0.17.0  (cached)
-> retrieved ppx_sexp_conv.v0.17.1  (cached)
-> retrieved ppx_sexp_message.v0.17.0  (cached)
-> retrieved ppx_sexp_value.v0.17.0  (cached)
-> retrieved ppx_stable.v0.17.1  (cached)
-> retrieved ppx_stable_witness.v0.17.0  (cached)
-> retrieved ppx_string.v0.17.0  (cached)
-> retrieved ppx_string_conv.v0.17.0  (cached)
-> retrieved ppx_tydi.v0.17.1  (cached)
-> retrieved ppx_typerep_conv.v0.17.1  (cached)
-> retrieved ppx_variants_conv.v0.17.1  (cached)
-> retrieved ppxlib_jane.v0.17.4  (cached)
-> retrieved protocol_version_header.v0.17.0  (cached)
-> retrieved sexp_pretty.v0.17.0  (cached)
-> installed ocamlbuild.0.16.1
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved sexplib.v0.17.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved spawn.v0.17.0  (cached)
-> retrieved splittable_random.v0.17.0  (cached)
-> retrieved stdio.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved textutils.v0.17.0  (cached)
-> retrieved time_now.v0.17.0  (cached)
-> retrieved timezone.v0.17.0  (cached)
-> retrieved typerep.v0.17.1  (cached)
-> retrieved uopt.v0.17.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved variantslib.v0.17.0  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed dune.3.20.2
-> installed jane-street-headers.v0.17.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed cstruct.6.2.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed sexplib0.v0.17.0
-> installed spawn.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed ocplib-endian.1.2
-> installed alcotest.1.9.1
-> installed parsexp.v0.17.0
-> installed dune-configurator.3.20.2
-> installed bigstringaf.0.10.0
-> installed sexplib.v0.17.0
-> installed lwt.5.9.2
-> installed base.v0.17.3
-> installed variantslib.v0.17.0
-> installed fieldslib.v0.17.0
-> installed stdio.v0.17.0
-> installed typerep.v0.17.1
-> installed ppxlib.0.37.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_optcomp.v0.17.1
-> installed ppx_tydi.v0.17.1
-> installed ppx_cold.v0.17.0
-> installed ppx_disable_unused_warnings.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_stable_witness.v0.17.0
-> installed ppx_variants_conv.v0.17.1
-> installed ppx_typerep_conv.v0.17.1
-> installed ppx_fields_conv.v0.17.0
-> installed ppx_stable.v0.17.1
-> installed ppx_ignore_instrumentation.v0.17.0
-> installed ppx_pipebang.v0.17.0
-> installed ppx_fixed_literal.v0.17.0
-> installed ppx_enumerate.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_compare.v0.17.0
-> installed ppx_optional.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_let.v0.17.1
-> installed ppx_hash.v0.17.0
-> installed ppx_sexp_value.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_sexp_message.v0.17.0
-> installed ppx_custom_printf.v0.17.0
-> installed ppx_base.v0.17.0
-> installed capitalization.v0.17.0
-> installed jst-config.v0.17.0
-> installed sexp_pretty.v0.17.0
-> installed bin_prot.v0.17.0-1
-> installed ppx_string.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_bin_prot.v0.17.1
-> installed ppx_string_conv.v0.17.0
-> installed ppx_module_timer.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed ppx_bench.v0.17.1
-> installed ppx_expect.v0.17.3
-> installed splittable_random.v0.17.0
-> installed base_quickcheck.v0.17.1
-> installed ppx_log.v0.17.0
-> installed ppx_jane.v0.17.0
-> installed uopt.v0.17.0
-> installed gel.v0.17.0
-> installed int_repr.v0.17.0
-> installed base_bigstring.v0.17.0
-> installed ppx_diff.v0.17.1
-> installed core.v0.17.1
-> installed protocol_version_header.v0.17.0
-> installed timezone.v0.17.0
-> installed expect_test_helpers_core.v0.17.0
-> installed core_kernel.v0.17.0
-> installed async_kernel.v0.17.0
-> installed core_unix.v0.17.1
-> installed textutils.v0.17.0
-> installed async_rpc_kernel.v0.17.0
-> installed async_unix.v0.17.0
-> installed async_log.v0.17.0
-> installed async.v0.17.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-15 19:45.55 ---> saved as "600150ac9208659cb6b190b0cd9a3cb074321eee89106d129cabb53759a9db9c"


/src: (copy (src .) (dst /src))
2025-12-15 19:45.55 ---> saved as "822836eef2dc82516f0788407efe985231d51e645a80281df190a8856791ab84"


/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
File "benchmarks/dune", line 2, characters 21-31:
2 |  (libraries angstrom core_bench threads RFC2616 RFC7159)
^^^^^^^^^^
Error: Library "core_bench" not found.
-> required by
_build/default/benchmarks/.pure_benchmark.eobjs/byte/pure_benchmark.cmi
-> required by alias benchmarks/check
(cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -bin-annot -bin-annot-occurrences -I benchmarks/.async_benchmark.eobjs/byte -I /home/opam/.opam/5.4/lib/async -I /home/opam/.opam/5.4/lib/async/async_command -I /home/opam/.opam/5.4/lib/async/async_quickcheck -I /home/opam/.opam/5.4/lib/async/async_rpc -I /home/opam/.opam/5.4/lib/async_kernel -I /home/opam/.opam/5.4/lib/async_kernel/config -I /home/opam/.opam/5.4/lib/async_kernel/eager_deferred -I /home/opam/.opam/5.4/lib/async_kernel/persistent_connection_kernel -I /home/opam/.opam/5.4/lib/async_kernel/read_write_pair -I /home/opam/.opam/5.4/lib/async_log -I /home/opam/.opam/5.4/lib/async_log/kernel -I /home/opam/.opam/5.4/lib/async_rpc_kernel -I /home/opam/.opam/5.4/lib/async_unix -I /home/opam/.opam/5.4/lib/async_unix/thread_pool -I /home/opam/.opam/5.4/lib/async_unix/thread_safe_ivar -I /home/opam/.opam/5.4/lib/base -I /home/opam/.opam/5.4/lib/base/base_internalhash_types -I /home/opam/.opam/5.4/lib/base/md5 -I /home/opam/.opam/5.4/lib/base/shadow_stdlib -I /home/opam/.opam/5.4/lib/base_bigstring -I /home/opam/.opam/5.4/lib/base_quickcheck -I /home/opam/.opam/5.4/lib/base_quickcheck/ppx_quickcheck/runtime -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bin_prot -I /home/opam/.opam/5.4/lib/bin_prot/shape -I /home/opam/.opam/5.4/lib/core -I /home/opam/.opam/5.4/lib/core/base_for_tests -I /home/opam/.opam/5.4/lib/core/command -I /home/opam/.opam/5.4/lib/core/filename_base -I /home/opam/.opam/5.4/lib/core/heap_block -I /home/opam/.opam/5.4/lib/core/univ_map -I /home/opam/.opam/5.4/lib/core/validate -I /home/opam/.opam/5.4/lib/core_kernel/bounded_int_table -I /home/opam/.opam/5.4/lib/core_kernel/bus -I /home/opam/.opam/5.4/lib/core_kernel/caml_threads -I /home/opam/.opam/5.4/lib/core_kernel/caml_unix -I /home/opam/.opam/5.4/lib/core_kernel/flags -I /home/opam/.opam/5.4/lib/core_kernel/iobuf -I /home/opam/.opam/5.4/lib/core_kernel/moption -I /home/opam/.opam/5.4/lib/core_kernel/pairing_heap -I /home/opam/.opam/5.4/lib/core_kernel/reversed_list -I /home/opam/.opam/5.4/lib/core_kernel/sexp_hidden_in_test -I /home/opam/.opam/5.4/lib/core_kernel/thread_pool_cpu_affinity -I /home/opam/.opam/5.4/lib/core_kernel/thread_safe_queue -I /home/opam/.opam/5.4/lib/core_kernel/timing_wheel -I /home/opam/.opam/5.4/lib/core_kernel/tuple_pool -I /home/opam/.opam/5.4/lib/core_kernel/univ -I /home/opam/.opam/5.4/lib/core_kernel/uuid -I /home/opam/.opam/5.4/lib/core_kernel/version_util -I /home/opam/.opam/5.4/lib/core_unix -I /home/opam/.opam/5.4/lib/core_unix/bigstring_unix -I /home/opam/.opam/5.4/lib/core_unix/command_unix -I /home/opam/.opam/5.4/lib/core_unix/core_thread -I /home/opam/.opam/5.4/lib/core_unix/error_checking_mutex -I /home/opam/.opam/5.4/lib/core_unix/filename_unix -I /home/opam/.opam/5.4/lib/core_unix/iobuf_unix -I /home/opam/.opam/5.4/lib/core_unix/linux_ext -I /home/opam/.opam/5.4/lib/core_unix/nano_mutex -I /home/opam/.opam/5.4/lib/core_unix/ocaml_c_utils -I /home/opam/.opam/5.4/lib/core_unix/signal_unix -I /home/opam/.opam/5.4/lib/core_unix/squeue -I /home/opam/.opam/5.4/lib/core_unix/sys_unix -I /home/opam/.opam/5.4/lib/core_unix/time_float_unix -I /home/opam/.opam/5.4/lib/core_unix/time_ns_unix -I /home/opam/.opam/5.4/lib/core_unix/time_stamp_counter -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/fieldslib -I /home/opam/.opam/5.4/lib/gel -I /home/opam/.opam/5.4/lib/int_repr -I /home/opam/.opam/5.4/lib/jane-street-headers -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocaml_intrinsics_kernel -I /home/opam/.opam/5.4/lib/parsexp -I /home/opam/.opam/5.4/lib/ppx_assert/runtime-lib -I /home/opam/.opam/5.4/lib/ppx_bench/runtime-lib -I /home/opam/.opam/5.4/lib/ppx_compare/runtime-lib -I /home/opam/.opam/5.4/lib/ppx_diff/diffable -I /home/opam/.opam/5.4/lib/ppx_diff/diffable_cinaps -I /home/opam/.opam/5.4/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/5.4/lib/ppx_expect/config -I /home/opam/.opam/5.4/lib/ppx_expect/config_types -I /home/opam/.opam/5.4/lib/ppx_expect/make_corrected_file -I /home/opam/.opam/5.4/lib/ppx_expect/runtime -I /home/opam/.opam/5.4/lib/ppx_hash/runtime-lib -I /home/opam/.opam/5.4/lib/ppx_here/runtime-lib -I /home/opam/.opam/5.4/lib/ppx_inline_test/config -I /home/opam/.opam/5.4/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/5.4/lib/ppx_log/syntax -I /home/opam/.opam/5.4/lib/ppx_log/types -I /home/opam/.opam/5.4/lib/ppx_module_timer/runtime -I /home/opam/.opam/5.4/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/5.4/lib/ppx_stable_witness/runtime -I /home/opam/.opam/5.4/lib/ppx_stable_witness/stable_witness -I /home/opam/.opam/5.4/lib/ppx_string/runtime -I /home/opam/.opam/5.4/lib/ppxlib/print_diff -I /home/opam/.opam/5.4/lib/protocol_version_header -I /home/opam/.opam/5.4/lib/sexplib -I /home/opam/.opam/5.4/lib/sexplib/unix -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/spawn -I /home/opam/.opam/5.4/lib/splittable_random -I /home/opam/.opam/5.4/lib/stdio -I /home/opam/.opam/5.4/lib/time_now -I /home/opam/.opam/5.4/lib/timezone -I /home/opam/.opam/5.4/lib/typerep -I /home/opam/.opam/5.4/lib/uopt -I /home/opam/.opam/5.4/lib/variantslib -I async/.angstrom_async.objs/byte -I examples/.RFC2616.objs/byte -I examples/.RFC7159.objs/byte -I lib/.angstrom.objs/byte -no-alias-deps -opaque -o benchmarks/.async_benchmark.eobjs/byte/async_benchmark.cmo -c -impl benchmarks/async_benchmark.ml)
File "benchmarks/async_benchmark.ml", line 20, characters 62-65:
20 |     Spec.(empty +> Param.(anon ("PARSER" %: parser))) main |> run)
^^^
Error (alert deprecated): Async.Command.run
[since 2021-03] Use [Command_unix]


File "benchmarks/async_benchmark.ml", line 20, characters 62-65:
20 |     Spec.(empty +> Param.(anon ("PARSER" %: parser))) main |> run)
^^^
Error: This expression has type [ `Use_Command_unix ]
This is not a function; it cannot be applied.
(cd _build/default/lib_test && ./test_angstrom.exe)
Testing `test suite'.
This run has ID `CWAWN957'.


[OK]          basic constructors              0   peek_char.
[OK]          basic constructors              1   peek_char_fail.
[OK]          basic constructors              2   char.
[OK]          basic constructors              3   int8.
[OK]          basic constructors              4   not_char.
[OK]          basic constructors              5   any_char.
[OK]          basic constructors              6   any_{,u}int8.
[OK]          basic constructors              7   string.
[OK]          basic constructors              8   string_ci.
[OK]          basic constructors              9   take_bigstring.
[OK]          basic constructors             10   take_while.
[OK]          basic constructors             11   take_while1.
[OK]          basic constructors             12   advance.
[OK]          little endian                   0   int16.
[OK]          little endian                   1   int32.
[OK]          little endian                   2   int64.
[OK]          little endian                   3   uint16.
[OK]          little endian                   4   float.
[OK]          little endian                   5   double.
[OK]          big endian                      0   int16.
[OK]          big endian                      1   int32.
[OK]          big endian                      2   int64.
[OK]          big endian                      3   uint16.
[OK]          big endian                      4   float.
[OK]          big endian                      5   double.
[OK]          monadic interface               0   fail.
[OK]          monadic interface               1   return.
[OK]          monadic interface               2   bind.
[OK]          applicative interface           0   applicative.
[OK]          alternative                     0   alternative.
[OK]          combinators                     0   many.
[OK]          combinators                     1   many_till.
[OK]          combinators                     2   sep_by1.
[OK]          combinators                     3   count.
[OK]          combinators                     4   scan_state.
[OK]          combinators                     5   consumed.
[OK]          incremental input               0   within chunk boundary.
[OK]          incremental input               1   peek_char and empty chunks.
[OK]          incremental input               2   across chunk boundary.
[OK]          incremental input               3   across chunk boundary wit...
[OK]          count_while regression          0   proper position set after...
[OK]          choice and commit               0
[OK]          input                           0   offset and length respected.
[OK]          consume                         0   consume with choice match...


Full test results in `/src/_build/default/lib_test/_build/_tests/test suite'.
Test Successful in 0.004s. 44 tests run.
"/usr/bin/env" "bash" "-c" "opam exec -- dune build @install @check @runtest && rm -rf _build" failed with exit status 1
2025-12-15 19:45.58: Job failed: Failed: Build failed