(not at the head of any monitored branch or PR)
2025-02-10 15:07.02: New job: test ppx_heml.0.1.0, using opam 2.0
                              from https://github.com/ocaml/opam-repository.git#refs/pull/26297/head (7fa32b5dcf9663e846999341824f276a36349421)
                              on debian-12-ocaml-5.3/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/26297/head" && git reset --hard 7fa32b5d
git fetch origin master
git merge --no-edit 36f4d2d5ceb882a79fd7d7f956b490201da67226
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-5.3@sha256:2ebf84c1b80d45bd693320d055f608b32529285fcbeeb35803f2ce50d3048683
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam
RUN opam init --reinit -ni
RUN 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 depext -u || true
RUN opam pin add -k version -yn ppx_heml.0.1.0 0.1.0
RUN opam depext ppx_heml.0.1.0 && opam reinstall ppx_heml.0.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 "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ppx_heml.0.1.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam depext --with-test ppx_heml.0.1.0 && opam reinstall --with-test ppx_heml.0.1.0) || true
RUN opam depext --with-test ppx_heml.0.1.0 && opam reinstall --with-test --verbose ppx_heml.0.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 "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ppx_heml.0.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-02-10 15:07.02: Using cache hint "ocaml/opam:debian-12-ocaml-5.3@sha256:2ebf84c1b80d45bd693320d055f608b32529285fcbeeb35803f2ce50d3048683-ppx_heml.0.1.0-7fa32b5dcf9663e846999341824f276a36349421"
2025-02-10 15:07.02: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-5.3@sha256:2ebf84c1b80d45bd693320d055f608b32529285fcbeeb35803f2ce50d3048683)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "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 depext -u || true"))
 (run (shell "opam pin add -k version -yn ppx_heml.0.1.0 0.1.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam depext ppx_heml.0.1.0 && opam reinstall ppx_heml.0.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 \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ppx_heml.0.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 depext --with-test ppx_heml.0.1.0 && opam reinstall --with-test ppx_heml.0.1.0) || true"))
 (run (shell  "opam depext --with-test ppx_heml.0.1.0 && opam reinstall --with-test --verbose ppx_heml.0.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 \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ppx_heml.0.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-02-10 15:07.02: Waiting for resource in pool OCluster
2025-02-10 17:08.59: Waiting for worker…
2025-02-10 17:11.25: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
Updating files:  84% (19797/23304)
Updating files:  85% (19809/23304)
Updating files:  86% (20042/23304)
Updating files:  87% (20275/23304)
Updating files:  88% (20508/23304)
Updating files:  89% (20741/23304)
Updating files:  90% (20974/23304)
Updating files:  91% (21207/23304)
Updating files:  92% (21440/23304)
Updating files:  93% (21673/23304)
Updating files:  94% (21906/23304)
Updating files:  95% (22139/23304)
Updating files:  96% (22372/23304)
Updating files:  97% (22605/23304)
Updating files:  98% (22838/23304)
Updating files:  99% (23071/23304)
Updating files: 100% (23304/23304)
Updating files: 100% (23304/23304), done.
HEAD is now at 36f4d2d5ce Merge pull request #27169 from Frigory33/release-allegro5-0.1
Merge made by the 'ort' strategy.
 packages/ppx_heml/ppx_heml.0.1.0/opam | 43 +++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)
 create mode 100644 packages/ppx_heml/ppx_heml.0.1.0/opam

(from ocaml/opam:debian-12-ocaml-5.3@sha256:2ebf84c1b80d45bd693320d055f608b32529285fcbeeb35803f2ce50d3048683)
Unable to find image 'ocaml/opam:debian-12-ocaml-5.3@sha256:2ebf84c1b80d45bd693320d055f608b32529285fcbeeb35803f2ce50d3048683' locally
docker.io/ocaml/opam@sha256:2ebf84c1b80d45bd693320d055f608b32529285fcbeeb35803f2ce50d3048683: Pulling from ocaml/opam
a7d4498d29fd: Pulling fs layer
a7d4498d29fd: Verifying Checksum
a7d4498d29fd: Download complete
a7d4498d29fd: Pull complete
Digest: sha256:2ebf84c1b80d45bd693320d055f608b32529285fcbeeb35803f2ce50d3048683
Status: Downloaded newer image for ocaml/opam@sha256:2ebf84c1b80d45bd693320d055f608b32529285fcbeeb35803f2ce50d3048683
2025-02-10 17:11.38 ---> using "2eea5bde28725c99a87e1f2a5b147a024a046c2a06cd3ab003a93e0be5a0f139" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
2025-02-10 17:11.38 ---> using "ff42299dd71c9cb3087a78856bcde3cbc85514135e98a5b28240833452a96df5" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
[NOTE] Will configure 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.

[WARNING] Recommended dependencies -- most packages rely on these:
  - m4

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] no changes from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from file:///home/opam/opam-repository
default (at file:///home/opam/opam-repository): 
    [INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)

2025-02-10 17:11.38 ---> using "5b204f302084be9fdd8f76970b288c8d2f79f2a0966ec9d7f4eff4ecce1ef288" from cache

/home/opam: (run (shell "opam config report"))
# opam config report
# opam-version      2.0.10 (adc1e1829a2bef5b240746df80341b508290fe3b) 
# self-upgrade      no
# system            arch=x86_64 os=linux os-distribution=debian os-version=12
# solver            builtin-mccs+glpk
# install-criteria  -removed,-count[version-lag,request],-count[version-lag,changed],-changed
# upgrade-criteria  -removed,-count[version-lag,solution],-new
# jobs              39
# repositories      1 (local), 1 (version-controlled)
# pinned            1 (version)
# current-switch    5.3
2025-02-10 17:11.38 ---> using "a54d9253c3b2cf608ddec9717d4c59f92788ac6bc062ecd45079328791ec37e7" 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-02-10 17:11.38 ---> using "4c42197ed3b6f60bb20d42621e691016114bb03cecdcc199f22a577d7ab7b660" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-02-10 17:12.01 ---> saved as "d537f757084acd1cf8a4b5e958f6983dab3dd9f7249d7a708774834bae178b15"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
default (at file:///home/opam/opam-repository): 
    [INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)

2025-02-10 17:12.24 ---> saved as "c1e13810c8143babda0103e0f64915827b5f3839d0b9824f8cdc49a82a8d3811"

/home/opam: (run (network host)
                 (shell "opam depext -u || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
The following command needs to be run through "sudo":
    apt-get update
Hit:1 http://deb.debian.org/debian bookworm InRelease
Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [244 kB]
Fetched 348 kB in 0s (872 kB/s)
Reading package lists...
# OS package update successful
2025-02-10 17:12.28 ---> saved as "3c2dbfcd42aa6d6398f12e70eeeda7ea951d8144632d84c75c34a4dce7140e86"

/home/opam: (run (shell "opam pin add -k version -yn ppx_heml.0.1.0 0.1.0"))
ppx_heml is now pinned to version 0.1.0
2025-02-10 17:12.29 ---> saved as "28f0d133ddd71cc7cc58fe9ed163a1251a4fc2acc6b24863f8e3c6049c9cde7e"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam depext ppx_heml.0.1.0 && opam reinstall ppx_heml.0.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 \"\\\"debian-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ppx_heml.0.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"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
ppx_heml.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
  - install dune                3.17.2   [required by ppx_heml]
  - install stdlib-shims        0.3.0    [required by ppxlib]
  - install sexplib0            v0.15.1  [required by base]
  - install ppx_derivers        1.2.1    [required by ppxlib]
  - install ocaml-compiler-libs v0.17.0  [required by ppxlib]
  - install menhirSdk           20230608 [required by menhir]
  - install menhirLib           20230608 [required by menhir]
  - install dune-configurator   2.7.0    [required by base]
  - install ppxlib              0.35.0   [required by ppx_heml]
  - install menhir              20230608 [required by ppx_heml]
  - install base                v0.15.1  [required by ppx_heml]
  - install ppx_sexp_conv       v0.15.1  [required by ppx_base]
  - install ppx_enumerate       v0.15.0  [required by ppx_base]
  - install ppx_compare         v0.15.0  [required by ppx_base]
  - install ppx_cold            v0.15.0  [required by ppx_base]
  - install ppx_hash            v0.15.0  [required by ppx_base]
  - install ppx_base            v0.15.0  [required by ppx_string]
  - install ppx_string          v0.15.0  [required by ppx_heml]
  - install ppx_heml            0.1.0*
===== 19 to install =====

<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[base.v0.15.1] found in cache
[dune.3.17.2] found in cache
[dune-configurator.2.7.0] found in cache
[menhir.20230608] found in cache
[menhirLib.20230608] found in cache
[menhirSdk.20230608] found in cache
[ocaml-compiler-libs.v0.17.0] found in cache
[ppx_base.v0.15.0] found in cache
[ppx_cold.v0.15.0] found in cache
[ppx_compare.v0.15.0] found in cache
[ppx_derivers.1.2.1] found in cache
[ppx_enumerate.v0.15.0] found in cache
[ppx_hash.v0.15.0] found in cache
[ppx_heml.0.1.0] downloaded from https://github.com/pjlast/heml/releases/download/v0.1.0/ppx_heml-0.1.0.tbz
[ppx_sexp_conv.v0.15.1] found in cache
[ppx_string.v0.15.0] found in cache
[ppxlib.0.35.0] found in cache
[sexplib0.v0.15.1] found in cache
[stdlib-shims.0.3.0] found in cache

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed dune.3.17.2
-> installed ppx_derivers.1.2.1
-> installed menhirSdk.20230608
-> installed sexplib0.v0.15.1
-> installed menhirLib.20230608
-> installed stdlib-shims.0.3.0
-> installed dune-configurator.2.7.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed base.v0.15.1
-> installed menhir.20230608
-> installed ppxlib.0.35.0
-> installed ppx_cold.v0.15.0
-> installed ppx_enumerate.v0.15.0
-> installed ppx_compare.v0.15.0
-> installed ppx_sexp_conv.v0.15.1
-> installed ppx_hash.v0.15.0
-> installed ppx_base.v0.15.0
-> installed ppx_string.v0.15.0
-> installed ppx_heml.0.1.0
Done.
# Run eval $(opam env) to update the current shell environment
2025-02-10 17:14.05 ---> saved as "8fe9bc139c0bc75c2b1c26d951149735cea37643539751412ffc22547595fff5"

/home/opam: (run (network host)
                 (shell "(opam depext --with-test ppx_heml.0.1.0 && opam reinstall --with-test ppx_heml.0.1.0) || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
The following actions will be performed:
  - install   jane-street-headers v0.15.0 [required by time_now]
  - install   ppx_here            v0.15.0 [required by ppx_assert]
  - install   stdio               v0.15.0 [required by ppx_optcomp]
  - install   ppx_assert          v0.15.0 [required by jst-config]
  - install   ppx_optcomp         v0.15.0 [required by time_now]
  - install   jst-config          v0.15.1 [required by time_now]
  - install   time_now            v0.15.0 [required by ppx_inline_test]
  - install   ppx_inline_test     v0.15.1 [required by ppx_heml]
  - recompile ppx_heml            0.1.0*
===== 8 to install | 1 to recompile =====

<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[jane-street-headers.v0.15.0] downloaded from https://ocaml.janestreet.com/ocaml-core/v0.15/files/jane-street-headers-v0.15.0.tar.gz
[jst-config.v0.15.1] downloaded from https://github.com/janestreet/jst-config/archive/refs/tags/v0.15.1.tar.gz
[ppx_assert.v0.15.0] downloaded from https://ocaml.janestreet.com/ocaml-core/v0.15/files/ppx_assert-v0.15.0.tar.gz
[ppx_here.v0.15.0] downloaded from https://ocaml.janestreet.com/ocaml-core/v0.15/files/ppx_here-v0.15.0.tar.gz
[ppx_inline_test.v0.15.1] downloaded from https://github.com/janestreet/ppx_inline_test/archive/refs/tags/v0.15.1.tar.gz
[ppx_optcomp.v0.15.0] downloaded from https://ocaml.janestreet.com/ocaml-core/v0.15/files/ppx_optcomp-v0.15.0.tar.gz
[stdio.v0.15.0] downloaded from https://ocaml.janestreet.com/ocaml-core/v0.15/files/stdio-v0.15.0.tar.gz
[time_now.v0.15.0] downloaded from https://ocaml.janestreet.com/ocaml-core/v0.15/files/time_now-v0.15.0.tar.gz

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed jane-street-headers.v0.15.0
-> installed ppx_here.v0.15.0
-> removed   ppx_heml.0.1.0
-> installed stdio.v0.15.0
-> installed ppx_optcomp.v0.15.0
-> installed ppx_assert.v0.15.0
-> installed jst-config.v0.15.1
-> installed time_now.v0.15.0
-> installed ppx_inline_test.v0.15.1
-> installed ppx_heml.0.1.0
Done.
# Run eval $(opam env) to update the current shell environment
2025-02-10 17:14.47 ---> saved as "401fb6089fb44550d9a78627d5961485d6204fcd27ee85989ab2a4c0cac48b83"

/home/opam: (run (shell  "opam depext --with-test ppx_heml.0.1.0 && opam reinstall --with-test --verbose ppx_heml.0.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 \"\\\"debian-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ppx_heml.0.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"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
The following actions will be performed:
  - recompile ppx_heml 0.1.0*

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/3: [ppx_heml: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ppx_heml" "-j" "39" "@install" "@runtest" (CWD=/home/opam/.opam/5.3/.opam-switch/build/ppx_heml.0.1.0)
- (cd _build/.sandbox/ab6a4d48b80aa295b8d205c8b659bbef/default && /home/opam/.opam/5.3/bin/menhir --explain lib/ppx_heml/parser.mly --base lib/ppx_heml/parser --infer-read-reply lib/ppx_heml/parser__mock.mli.inferred)
- Warning: one state has shift/reduce conflicts.
- Warning: one shift/reduce conflict was arbitrarily resolved.
-> compiled  ppx_heml.0.1.0
-> removed   ppx_heml.0.1.0
-> installed ppx_heml.0.1.0
Done.
# Run eval $(opam env) to update the current shell environment
2025-02-10 17:15.13 ---> saved as "8143e27e41e0ba1d360c5115a00fdcab5396bfec5e63ddd7f7421a553e516a40"
Job succeeded
2025-02-10 17:15.19: Job succeeded