(for PR #27694)

2025-08-28 14:04.51: New job: test pds.6.55, using opam 2.3
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27694/head (95c70e7638f27c185540b2efc1bb6fe8f64dcdfa)
                              on debian-12-ocaml-5.3/ppc64le

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/27694/head" && git reset --hard 95c70e76
git fetch origin master
git merge --no-edit f2cd184cfc6f3b25d3bda0873beb3e8b254806ec
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-5.3@sha256:d3e6470316c307460daeb24948e71da5b0d4d383f56e373c36e20b0e06f5cef1
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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 pds.6.55 6.55
RUN opam reinstall pds.6.55; \
    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" != 'pds.6.55' && 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 pds.6.55) || true
RUN opam reinstall --with-test --verbose pds.6.55; \
    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" != 'pds.6.55' && 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-08-28 14:04.51: Using cache hint "ocaml/opam:debian-12-ocaml-5.3@sha256:d3e6470316c307460daeb24948e71da5b0d4d383f56e373c36e20b0e06f5cef1-pds.6.55-95c70e7638f27c185540b2efc1bb6fe8f64dcdfa"
2025-08-28 14:04.51: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-5.3@sha256:d3e6470316c307460daeb24948e71da5b0d4d383f56e373c36e20b0e06f5cef1)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.3 /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 pds.6.55 6.55"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall pds.6.55;\
             \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\" != 'pds.6.55' && 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 pds.6.55) || true"))
 (run (shell  "opam reinstall --with-test --verbose pds.6.55;\
             \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\" != 'pds.6.55' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-08-28 14:04.51: Waiting for resource in pool OCluster
2025-08-28 14:04.51: Waiting for worker…
2025-08-28 14:04.51: Got resource from pool OCluster
Building on scyleia.caelum.ci.dev
All commits already cached
HEAD is now at f2cd184cfc Merge pull request #28399 from filipeom/opam-publish-smtml.0.10.0
Merge made by the 'ort' strategy.
 packages/pds/pds.6.55/opam | 53 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 53 insertions(+)
 create mode 100644 packages/pds/pds.6.55/opam

(from ocaml/opam:debian-12-ocaml-5.3@sha256:d3e6470316c307460daeb24948e71da5b0d4d383f56e373c36e20b0e06f5cef1)
2025-08-28 14:04.58 ---> using "3d4223f38b23cd24981f5902ba7b02db1c1ecaeb30917fec46aa66aef3b85543" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-08-28 14:04.58 ---> using "d12014276e4437c6ca2876e1789e45be38f729b31793a470bc83f6978de51beb" from cache

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

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

Continue? [y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-08-28 14:04.58 ---> using "da0600a883d3c7018fc3510dd46dfcebb47362bc8cd43d6b16faec462d925138" 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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade         no
# system               arch=ppc64 os=linux os-distribution=debian os-version=12
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 175
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.3
# invariant            ["ocaml-base-compiler" {= "5.3.0"}]
# compiler-packages    ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.3.0
2025-08-28 14:04.58 ---> using "55f2b48ff49ba4061ceba629afafdd752792b33a84e42c7a196abdf4bb887525" 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-08-28 14:04.58 ---> using "471ab0eafbbafc06ebab009b9c791502a2ab2db707360c8f2f00f545dd7fcb0f" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-08-28 14:07.38 ---> saved as "b8b60009c0433f68ef6e4393447660d0eb366de3a9d09a6f234a240cb19309e7"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-08-28 14:07.56 ---> saved as "6beccb639219a05c3882f7cb1e9fcdb83e1ebc55fe15182224ce386d2959a348"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main ppc64el Packages [265 kB]
- Fetched 368 kB in 0s (934 kB/s)
- Reading package lists...
- 
2025-08-28 14:07.57 ---> saved as "5f9261da790b2866e0d5ec3f50d262e7735b9b12f11c735d5eba26df92ce9b41"

/home/opam: (run (shell "opam pin add -k version -yn pds.6.55 6.55"))
pds is now pinned to version 6.55
2025-08-28 14:07.58 ---> saved as "9e4d6ae5969f3b4e7606af43e74b08f1c65e1c2751a96503cc7bda633f1d5034"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall pds.6.55;\
                        \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\" != 'pds.6.55' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
pds.6.55 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 35 packages
  - install base-bytes          base          [required by process]
  - install cmdliner            1.3.0         [required by pds]
  - install conf-pkg-config     4             [required by conf-sqlite3]
  - install conf-sqlite3        1             [required by sqlite3]
  - install containers          3.16          [required by pds]
  - install cppo                1.8.0         [required by ppx_deriving]
  - install crunch              4.0.0         [required by pds]
  - install csexp               1.5.2         [required by dune-configurator]
  - install dune                3.20.1        [required by sqlite3, ppx_deriving, containers, etc.]
  - install dune-configurator   3.20.1        [required by containers, sqlite3]
  - install either              1.0.0         [required by containers]
  - install fmt                 0.11.0        [required by pds]
  - install gen                 1.1           [required by sedlex]
  - install ISO8601             0.2.6         [required by toml]
  - install logs                0.9.0         [required by pds]
  - install menhir              20240715      [required by toml]
  - install menhirCST           20240715      [required by menhir]
  - install menhirLib           20240715      [required by menhir]
  - install menhirSdk           20240715      [required by menhir]
  - install ocaml-compiler-libs v0.17.0       [required by ppxlib]
  - install ocamlbuild          0.16.1        [required by logs, fmt, process]
  - install ocamlfind           1.9.8         [required by pds]
  - install pds                 6.55 (pinned)
  - install ppx_derivers        1.2.1         [required by ppx_deriving]
  - install ppx_deriving        6.1.1         [required by pds]
  - install ppxlib              0.36.0        [required by ppx_deriving, sedlex]
  - install process             0.2.1         [required by pds]
  - install ptime               1.2.0         [required by crunch]
  - install sedlex              3.6           [required by pds]
  - install seq                 base          [required by gen]
  - install sexplib0            v0.17.0       [required by ppxlib]
  - install sqlite3             5.3.1         [required by pds]
  - install stdlib-shims        0.3.0         [required by ppxlib]
  - install toml                7.1.0         [required by pds]
  - install topkg               1.1.0         [required by fmt, logs]

The following system packages will first need to be installed:
    libsqlite3-dev pkg-config

<><> 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" "libsqlite3-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libpkgconf3:ppc64el.
- (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 ... 18720 files and directories currently installed.)
- Preparing to unpack .../libpkgconf3_1.8.1-1_ppc64el.deb ...
- Unpacking libpkgconf3:ppc64el (1.8.1-1) ...
- Selecting previously unselected package libsqlite3-dev:ppc64el.
- Preparing to unpack .../libsqlite3-dev_3.40.1-2+deb12u1_ppc64el.deb ...
- Unpacking libsqlite3-dev:ppc64el (3.40.1-2+deb12u1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../pkgconf-bin_1.8.1-1_ppc64el.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:ppc64el.
- Preparing to unpack .../pkgconf_1.8.1-1_ppc64el.deb ...
- Unpacking pkgconf:ppc64el (1.8.1-1) ...
- Selecting previously unselected package pkg-config:ppc64el.
- Preparing to unpack .../pkg-config_1.8.1-1_ppc64el.deb ...
- Unpacking pkg-config:ppc64el (1.8.1-1) ...
- Setting up libpkgconf3:ppc64el (1.8.1-1) ...
- Setting up libsqlite3-dev:ppc64el (3.40.1-2+deb12u1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up pkgconf:ppc64el (1.8.1-1) ...
- Setting up pkg-config:ppc64el (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u10) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.1.3.0  (cached)
-> installed conf-pkg-config.4
-> retrieved containers.3.16  (cached)
-> installed conf-sqlite3.1
-> retrieved cppo.1.8.0  (cached)
-> retrieved crunch.4.0.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.20.1, dune-configurator.3.20.1  (cached)
-> retrieved either.1.0.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved ISO8601.0.2.6  (cached)
-> retrieved logs.0.9.0  (cached)
-> installed cmdliner.1.3.0
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved pds.6.55  (http://acsl-pkgs.s3.amazonaws.com/pds-6.55.tar.gz)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> retrieved ppxlib.0.36.0  (cached)
-> retrieved process.0.2.1  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved sedlex.3.6  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved sqlite3.5.3.1  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved toml.7.1.0  (cached)
-> retrieved topkg.1.1.0  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed process.0.2.1
-> installed topkg.1.1.0
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed logs.0.9.0
-> installed dune.3.20.1
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed crunch.4.0.0
-> installed either.1.0.0
-> installed gen.1.1
-> installed ISO8601.0.2.6
-> installed menhirCST.20240715
-> installed menhirLib.20240715
-> installed menhirSdk.20240715
-> installed ocaml-compiler-libs.v0.17.0
-> installed ppx_derivers.1.2.1
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed dune-configurator.3.20.1
-> installed sqlite3.5.3.1
-> installed containers.3.16
-> installed menhir.20240715
-> installed toml.7.1.0
-> installed ppxlib.0.36.0
-> installed ppx_deriving.6.1.1
-> installed sedlex.3.6
-> installed pds.6.55
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-28 14:08.55 ---> saved as "bc4e7628e738e84832c5b4272696bfcbf38375acde705c7321e723ff0a991f75"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test pds.6.55) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile pds            6.55 (pinned)
=== install 1 package
  - install   conf-diffutils 2             [required by pds]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-diffutils.2
-> retrieved pds.6.55  (http://acsl-pkgs.s3.amazonaws.com/pds-6.55.tar.gz)
-> removed   pds.6.55
[ERROR] The compilation of pds.6.55 failed at "make -j175 test".

#=== ERROR while compiling pds.6.55 ===========================================#
# context              2.3.0 | linux/ppc64 | ocaml-base-compiler.5.3.0 | pinned(http://acsl-pkgs.s3.amazonaws.com/pds-6.55.tar.gz)
# path                 ~/.opam/5.3/.opam-switch/build/pds.6.55
# command              ~/.opam/opam-init/hooks/sandbox.sh build make -j175 test
# exit-code            2
# env-file             ~/.opam/log/pds-7-a24e37.env
# output-file          ~/.opam/log/pds-7-a24e37.out
### output ###
# make \
# OCAMLPATH=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release: \
# BUILD_DIR=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds_template \
# -C build/release/pds_template release
# make[1]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds_template'
# make \
# OCAMLPATH=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release: \
# BUILD_DIR=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/snabela \
# -C build/release/snabela release
# make[1]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/snabela'
# make[1]: Nothing to be done for 'release'.
# make[1]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds_template'
# make[1]: Nothing to be done for 'release'.
# make[1]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/snabela'
# make \
# OCAMLPATH=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release: \
# BUILD_DIR=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds \
# -C build/release/pds release
# make[1]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds'
# make[1]: Nothing to be done for 'release'.
# make[1]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds'
# cd smoke-tests && env MAKE=make ./test
# Testing globals-formatted
# Passed globals-formatted
# Testing simple-formatted
# Passed simple-formatted
# Testing simple-output
# Passed simple-output
# Testing simple-selector-both-formatted
# diff -x 'pds\.db' -r /opam-tmp/tmp.8QVVuJb8zb/simple-selector-both-formatted/output expected/output
# 1d0
# < src	foo	library	ocaml	hi
# 2a2
# > src	foo	library	ocaml	hi
# Passed simple-selector-both-formatted
# Testing simple-selector-build-formatted
# Passed simple-selector-build-formatted
# Testing simple-selector-default-compile-formatted
# Passed simple-selector-default-compile-formatted
# Testing simple-selector-default-formatted
# Passed simple-selector-default-formatted
# Testing simple-selector-do-not-build-default-formatted
# Passed simple-selector-do-not-build-default-formatted
# Testing simple-selector-do-not-build-formatted
# Passed simple-selector-do-not-build-formatted
# Testing simple-selector-found-compile-formatted
# Passed simple-selector-found-compile-formatted
# Testing simple-selector-found-formatted
# Passed simple-selector-found-formatted
# Testing simple-selector-not-found-formatted
# Passed simple-selector-not-found-formatted
# Testing simple-selector-tests-do-not-build-formatted
# Passed simple-selector-tests-do-not-build-formatted
# Testing simple-selector-tests-formatted
# Passed simple-selector-tests-formatted
# Testing tests
# Passed tests
# make: *** [Makefile:15: smoke-tests] Error 1



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build pds 6.55
+- 
+- The following changes have been performed
| - remove  pds            6.55
| - install conf-diffutils 2
+- 
# To update the current shell environment, run: eval $(opam env)

The former state can be restored with:
    /usr/bin/opam switch import "/home/opam/.opam/5.3/.opam-switch/backup/state-20250828140856.export"
Or you can retry to install your package selection with:
    /usr/bin/opam install --restore
2025-08-28 14:09.02 ---> saved as "72566d0daee8896fff13902bb3b4e1a9c5848171a130297d31fb1bbcb0f4f961"

/home/opam: (run (shell  "opam reinstall --with-test --verbose pds.6.55;\
                        \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\" != 'pds.6.55' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
pds.6.55 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 1 package
  - install pds 6.55 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/3: [pds.6.55: extract]
-> retrieved pds.6.55  (cached)
Processing  2/3: [pds: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "-j175" (CWD=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55)
- make \
- OCAMLPATH=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release: \
- BUILD_DIR=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds_template \
- -C build/release/pds_template release
- make[1]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds_template'
- make \
- OCAMLPATH=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release: \
- BUILD_DIR=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/snabela \
- -C build/release/snabela release
- make[1]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/snabela'
- ocaml-crunch -m plain ../../../files > ../../../src/pds_template/pds_template.ml
- cd ../../../src/snabela && \
- ocamlfind ocamldep -package sedlex  \
- snabela.ml  snabela_lexer.ml  snabela.mli > /home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/snabela/.d
- cd ../../../src/pds_template && \
- ocamlfind ocamldep   \
-  pds_template.ml  pds_template.ml  > /home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds_template/.d
- ocamlfind ocamlopt -thread -I +camlp4 -package sedlex -bin-annot -w '@f@p@u@s@40'  -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx  -c ../../../src/snabela/snabela_lexer.ml -o snabela_lexer.cmx
- ocamlfind ocamlc -thread -I +camlp4 -package sedlex -bin-annot -w '@f@p@u@s@40'  -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx  -c ../../../src/snabela/snabela_lexer.ml -o snabela_lexer.cmo
- ocamlfind ocamlopt -thread -I +camlp4  -bin-annot -w '@f@p@u@s@40'   -c ../../../src/pds_template/pds_template.ml -o pds_template.cmx
- ocamlfind ocamlopt  -bin-annot -w '@f@p@u@s@40'  -thread -a -I +camlp4 -o pds_template.cmxa \
- 	pds_template.cmx
- ocamlfind ocamlc -thread -I +camlp4  -bin-annot -w '@f@p@u@s@40'   -c ../../../src/pds_template/pds_template.ml -o pds_template.cmo
- ocamlfind ocamlc  -bin-annot -w '@f@p@u@s@40'  -custom -thread -a -I +camlp4 -o pds_template.cma \
- 	pds_template.cmo
- make[1]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds_template'
- ocamlfind ocamlc -thread -I +camlp4 -package sedlex -bin-annot -w '@f@p@u@s@40'  -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx -c ../../../src/snabela/snabela.mli -o snabela.cmi
- ocamlfind ocamlopt -thread -I +camlp4 -package sedlex -bin-annot -w '@f@p@u@s@40'  -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx  -c ../../../src/snabela/snabela.ml -o snabela.cmx
- ocamlfind ocamlc -thread -I +camlp4 -package sedlex -bin-annot -w '@f@p@u@s@40'  -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx  -c ../../../src/snabela/snabela.ml -o snabela.cmo
- ocamlfind ocamlopt -package sedlex -bin-annot -w '@f@p@u@s@40'  -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx -thread -a -I +camlp4 -o snabela.cmxa \
- 	snabela_lexer.cmx snabela.cmx
- ocamlfind ocamlc -package sedlex -bin-annot -w '@f@p@u@s@40'  -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx -custom -thread -a -I +camlp4 -o snabela.cma \
- 	snabela_lexer.cmo snabela.cmo
- make[1]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/snabela'
- make \
- OCAMLPATH=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release: \
- BUILD_DIR=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds \
- -C build/release/pds release
- make[1]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds'
- cd ../../../src/pds && \
- ocamlfind ocamldep   \
-  pds.ml   > /home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds/.d
- ocamlfind ocamlopt -thread -I +camlp4  -bin-annot -w '@f@p@u@s@40' -g -package cmdliner,containers,logs,logs.fmt,pds_template,process,snabela,sqlite3,toml  -c ../../../src/pds/pds.ml -o pds.cmx
- ocamlfind ocamlc -thread -I +camlp4  -bin-annot -w '@f@p@u@s@40' -g -package cmdliner,containers,logs,logs.fmt,pds_template,process,snabela,sqlite3,toml  -c ../../../src/pds/pds.ml -o pds.cmo
- ocamlfind ocamlopt  -bin-annot -w '@f@p@u@s@40' -g -package cmdliner,containers,logs,logs.fmt,pds_template,process,snabela,sqlite3,toml -thread -linkpkg -I +camlp4 -o pds.native \
- 	pds.cmx
- ocamlfind ocamlc  -bin-annot -w '@f@p@u@s@40' -g -package cmdliner,containers,logs,logs.fmt,pds_template,process,snabela,sqlite3,toml -custom -thread -linkpkg -I +camlp4 -o pds.byte \
- 	pds.cmo
- make[1]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds'
Processing  2/3: [pds: make test]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "-j175" "test" (CWD=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55)
- make \
- OCAMLPATH=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release: \
- BUILD_DIR=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds_template \
- -C build/release/pds_template release
- make[1]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds_template'
- make \
- OCAMLPATH=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release: \
- BUILD_DIR=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/snabela \
- -C build/release/snabela release
- make[1]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/snabela'
- make[1]: Nothing to be done for 'release'.
- make[1]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds_template'
- make[1]: Nothing to be done for 'release'.
- make[1]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/snabela'
- make \
- OCAMLPATH=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release: \
- BUILD_DIR=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds \
- -C build/release/pds release
- make[1]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds'
- make[1]: Nothing to be done for 'release'.
- make[1]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds'
- cd smoke-tests && env MAKE=make ./test
- Testing globals-formatted
- Passed globals-formatted
- Testing simple-formatted
- Passed simple-formatted
- Testing simple-output
- Passed simple-output
- Testing simple-selector-both-formatted
- diff -x 'pds\.db' -r /opam-tmp/tmp.PA05uG6pli/simple-selector-both-formatted/output expected/output
- 1d0
- < src	foo	library	ocaml	hi
- 2a2
- > src	foo	library	ocaml	hi
- Passed simple-selector-both-formatted
- Testing simple-selector-build-formatted
- Passed simple-selector-build-formatted
- Testing simple-selector-default-compile-formatted
- Passed simple-selector-default-compile-formatted
- Testing simple-selector-default-formatted
- Passed simple-selector-default-formatted
- Testing simple-selector-do-not-build-default-formatted
- Passed simple-selector-do-not-build-default-formatted
- Testing simple-selector-do-not-build-formatted
- Passed simple-selector-do-not-build-formatted
- Testing simple-selector-found-compile-formatted
- Passed simple-selector-found-compile-formatted
- Testing simple-selector-found-formatted
- Passed simple-selector-found-formatted
- Testing simple-selector-not-found-formatted
- Passed simple-selector-not-found-formatted
- Testing simple-selector-tests-do-not-build-formatted
- Passed simple-selector-tests-do-not-build-formatted
- Testing simple-selector-tests-formatted
- Passed simple-selector-tests-formatted
- Testing tests
- Passed tests
- make: *** [Makefile:15: smoke-tests] Error 1
[ERROR] The compilation of pds.6.55 failed at "make -j175 test".

#=== ERROR while compiling pds.6.55 ===========================================#
# context              2.3.0 | linux/ppc64 | ocaml-base-compiler.5.3.0 | pinned(http://acsl-pkgs.s3.amazonaws.com/pds-6.55.tar.gz)
# path                 ~/.opam/5.3/.opam-switch/build/pds.6.55
# command              ~/.opam/opam-init/hooks/sandbox.sh build make -j175 test
# exit-code            2
# env-file             ~/.opam/log/pds-7-264082.env
# output-file          ~/.opam/log/pds-7-264082.out
### output ###
# make \
# OCAMLPATH=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release: \
# BUILD_DIR=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds_template \
# -C build/release/pds_template release
# make[1]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds_template'
# make \
# OCAMLPATH=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release: \
# BUILD_DIR=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/snabela \
# -C build/release/snabela release
# make[1]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/snabela'
# make[1]: Nothing to be done for 'release'.
# make[1]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds_template'
# make[1]: Nothing to be done for 'release'.
# make[1]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/snabela'
# make \
# OCAMLPATH=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release: \
# BUILD_DIR=/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds \
# -C build/release/pds release
# make[1]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds'
# make[1]: Nothing to be done for 'release'.
# make[1]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/pds.6.55/build/release/pds'
# cd smoke-tests && env MAKE=make ./test
# Testing globals-formatted
# Passed globals-formatted
# Testing simple-formatted
# Passed simple-formatted
# Testing simple-output
# Passed simple-output
# Testing simple-selector-both-formatted
# diff -x 'pds\.db' -r /opam-tmp/tmp.PA05uG6pli/simple-selector-both-formatted/output expected/output
# 1d0
# < src	foo	library	ocaml	hi
# 2a2
# > src	foo	library	ocaml	hi
# Passed simple-selector-both-formatted
# Testing simple-selector-build-formatted
# Passed simple-selector-build-formatted
# Testing simple-selector-default-compile-formatted
# Passed simple-selector-default-compile-formatted
# Testing simple-selector-default-formatted
# Passed simple-selector-default-formatted
# Testing simple-selector-do-not-build-default-formatted
# Passed simple-selector-do-not-build-default-formatted
# Testing simple-selector-do-not-build-formatted
# Passed simple-selector-do-not-build-formatted
# Testing simple-selector-found-compile-formatted
# Passed simple-selector-found-compile-formatted
# Testing simple-selector-found-formatted
# Passed simple-selector-found-formatted
# Testing simple-selector-not-found-formatted
# Passed simple-selector-not-found-formatted
# Testing simple-selector-tests-do-not-build-formatted
# Passed simple-selector-tests-do-not-build-formatted
# Testing simple-selector-tests-formatted
# Passed simple-selector-tests-formatted
# Testing tests
# Passed tests
# make: *** [Makefile:15: smoke-tests] Error 1



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build pds 6.55
+- 
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose pds.6.55' failed.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose pds.6.55;
        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" != 'pds.6.55' && partial_fails="$partial_fails $pkg";
        done;
        test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
        exit 1" failed with exit status 1
2025-08-28 14:09.31: Job failed: Failed: Build failed
2025-08-28 14:09.31: Log analysis:
2025-08-28 14:09.31: >>> 
[ERROR] The compilation of pds.6.55 failed at "make -j175 test".
 (score = 20)
2025-08-28 14:09.31: >>> 
[ERROR] The compilation of pds.6.55 failed at "make -j175 test".
 (score = 20)
2025-08-28 14:09.31: The compilation of pds.6.55 failed at "make -j175 test".