(for PR #27694)

2025-11-10 16:55.07: New job: test pds.6.55, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27694/head (95c70e7638f27c185540b2efc1bb6fe8f64dcdfa)
                              on centos-9-ocaml-5.4/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/27694/head" && git reset --hard 95c70e76
git fetch origin master
git merge --no-edit b6a264c784afa1e19f7a926fc10d49010ad12be4
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-9-ocaml-5.4@sha256:4ff6eaf91a3dc04a84bbe30f720632fd35a391fd7e1ad02090894c030fcdcbdf
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn 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 "\"centos-9\""; 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 "\"centos-9\""; 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-11-10 16:55.07: Using cache hint "ocaml/opam:centos-9-ocaml-5.4@sha256:4ff6eaf91a3dc04a84bbe30f720632fd35a391fd7e1ad02090894c030fcdcbdf-pds.6.55-95c70e7638f27c185540b2efc1bb6fe8f64dcdfa"
2025-11-10 16:55.07: Using OBuilder spec:
((from ocaml/opam:centos-9-ocaml-5.4@sha256:4ff6eaf91a3dc04a84bbe30f720632fd35a391fd7e1ad02090894c030fcdcbdf)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn 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 \"\\\"centos-9\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != '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 \"\\\"centos-9\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != '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-11-10 16:55.07: Waiting for resource in pool OCluster
2025-11-10 21:00.51: Waiting for worker…
2025-11-10 21:04.39: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files:  97% (18280/18706)
Updating files:  98% (18332/18706)
Updating files:  99% (18519/18706)
Updating files: 100% (18706/18706)
Updating files: 100% (18706/18706), done.
HEAD is now at b6a264c784 Merge pull request #28853 from AltGr/catala100
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:centos-9-ocaml-5.4@sha256:4ff6eaf91a3dc04a84bbe30f720632fd35a391fd7e1ad02090894c030fcdcbdf)
2025-11-10 21:04.41 ---> using "eece0ee759113f9447becf3b30dd4249f4d7687d01c11c4512fbc8c86419779f" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-11-10 21:04.41 ---> using "392c691f5646d6ef70bb47fd2905a73a7700f7ad2037d8c614d97b45549b91b1" from cache

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

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

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

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-11-10 21:04.41 ---> using "371a15af04227da9a433565ef0ac02d0896bf811450f0047612e4f9e1dff7bdc" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0~alpha1
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=centos os-version=9
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2025-11-10 21:04.41 ---> using "cd4807205ddc4da8666819a85a26b0634d63572d3d7b871e275755e9a2e267c9" 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-11-10 21:04.41 ---> using "bf9fa0dc961aebd1fdbdfb7186ef667308f4c39d03be264f475e3aec2364ad1a" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-11-10 21:04.45 ---> saved as "30a5e10cf603ac9dc949fd55a95787bdd8b6380b9c7a5da6b38a61739732f6af"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 21:05.10 ---> saved as "843d398c0d15bba76bfb9788b28e981d2cfe603a19d179c7caf71e95eea92dac"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 9 - BaseOS                         93 kB/s |  15 kB     00:00    
- CentOS Stream 9 - AppStream                     128 kB/s |  15 kB     00:00    
- CentOS Stream 9 - CRB                           128 kB/s |  14 kB     00:00    
- CentOS Stream 9 - Extras packages               129 kB/s |  16 kB     00:00    
- Metadata cache created.
2025-11-10 21:05.13 ---> saved as "eee93d265f45874aaf0ec5ca6a505f4f77a5ecf65a74f651a8c7931c6cdf1fb7"

/home/opam: (run (shell "opam pin add -k version -yn pds.6.55 6.55"))
pds is now pinned to version 6.55
2025-11-10 21:05.14 ---> saved as "66118c043423893d08bcc229da4e4e180d5dcabb7cc77330a2076231eb90f046"

/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 \"\\\"centos-9\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != '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            2.0.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.2        [required by sqlite3, ppx_deriving, containers, etc.]
  - install dune-configurator   3.20.2        [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.10.0        [required by pds]
  - install menhir              20250912      [required by toml]
  - install menhirCST           20250912      [required by menhir]
  - install menhirLib           20250912      [required by menhir]
  - install menhirSdk           20250912      [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.37.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.7           [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.1         [required by fmt, logs]

The following system packages will first need to be installed:
    sqlite-devel

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
  2. Display the recommended yum command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "yum" "install" "-y" "sqlite-devel"
- Last metadata expiration check: 0:00:07 ago on Mon Nov 10 21:05:11 2025.
- Dependencies resolved.
- ================================================================================
-  Package             Architecture  Version               Repository        Size
- ================================================================================
- Installing:
-  sqlite-devel        x86_64        3.34.1-8.el9          appstream        134 k
- Installing dependencies:
-  sqlite              x86_64        3.34.1-8.el9          appstream        759 k
- 
- Transaction Summary
- ================================================================================
- Install  2 Packages
- 
- Total download size: 893 k
- Installed size: 2.1 M
- Downloading Packages:
- (1/2): sqlite-devel-3.34.1-8.el9.x86_64.rpm     210 kB/s | 134 kB     00:00    
- (2/2): sqlite-3.34.1-8.el9.x86_64.rpm           947 kB/s | 759 kB     00:00    
- --------------------------------------------------------------------------------
- Total                                           956 kB/s | 893 kB     00:00     
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
-   Preparing        :                                                        1/1
-  
-   Installing       : sqlite-3.34.1-8.el9.x86_64                             1/2 
-   Installing       : sqlite-devel-3.34.1-8.el9.x86_64                       2/2 
-   Running scriptlet: sqlite-devel-3.34.1-8.el9.x86_64                       2/2 
-   Verifying        : sqlite-3.34.1-8.el9.x86_64                             1/2 
-   Verifying        : sqlite-devel-3.34.1-8.el9.x86_64                       2/2 
- 
- Installed:
-   sqlite-3.34.1-8.el9.x86_64          sqlite-devel-3.34.1-8.el9.x86_64         
- 
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "sqlite-devel"
- sqlite-devel-3.34.1-8.el9.x86_64

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.2.0.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.2, dune-configurator.3.20.2  (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.10.0  (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> installed cmdliner.2.0.0
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved pds.6.55  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved process.0.2.1  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved sedlex.3.7  (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.1  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed process.0.2.1
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed logs.0.10.0
-> installed dune.3.20.2
-> 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.20250912
-> installed menhirLib.20250912
-> installed menhirSdk.20250912
-> 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.2
-> installed sqlite3.5.3.1
-> installed containers.3.16
-> installed menhir.20250912
-> installed toml.7.1.0
-> installed ppxlib.0.37.0
-> installed ppx_deriving.6.1.1
-> installed sedlex.3.7
-> installed pds.6.55
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 21:06.40 ---> saved as "112ee71f5efef7c8a376c13369758f69399ef301edcb431a36ec336da8870750"

/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 -j71 test".

#=== ERROR while compiling pds.6.55 ===========================================#
# context              2.5.0~alpha1 | linux/x86_64 | ocaml-base-compiler.5.4.0 | pinned(http://acsl-pkgs.s3.amazonaws.com/pds-6.55.tar.gz)
# path                 ~/.opam/5.4/.opam-switch/build/pds.6.55
# command              ~/.opam/opam-init/hooks/sandbox.sh build make -j71 test
# exit-code            2
# env-file             ~/.opam/log/pds-7-fa46e0.env
# output-file          ~/.opam/log/pds-7-fa46e0.out
### output ###
# make \
# OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
# BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template \
# -C build/release/pds_template release
# make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template'
# make \
# OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
# BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/snabela \
# -C build/release/snabela release
# make[1]: Entering directory '/home/opam/.opam/5.4/.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.4/.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.4/.opam-switch/build/pds.6.55/build/release/snabela'
# make \
# OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
# BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds \
# -C build/release/pds release
# make[1]: Entering directory '/home/opam/.opam/5.4/.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.4/.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
# pds: internal error, uncaught exception:
#      Sqlite3.Error("Sqlite3.prepare: no such function: unixepoch")
#      
# Passed simple-output
# Testing simple-selector-both-formatted
# Passed simple-selector-both-formatted
# Testing simple-selector-build-formatted
# Passed simple-selector-build-formatted
# Testing simple-selector-default-compile-formatted
# pds: internal error, uncaught exception:
#      Sqlite3.Error("Sqlite3.prepare: no such function: unixepoch")
#      
# 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
# pds: internal error, uncaught exception:
#      Sqlite3.Error("Sqlite3.prepare: no such function: unixepoch")
#      
# 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.4/.opam-switch/backup/state-20251110210640.export"
Or you can retry to install your package selection with:
    /usr/bin/opam install --restore
2025-11-10 21:06.49 ---> saved as "9ff18db759fd525f29167713d0a249f5a58f943ce8bcfaa674a47f48c4d42ad3"

/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 \"\\\"centos-9\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != '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" "-j71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55)
- make \
- OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
- BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template \
- -C build/release/pds_template release
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template'
- make \
- OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
- BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/snabela \
- -C build/release/snabela release
- make[1]: Entering directory '/home/opam/.opam/5.4/.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.4/.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.4/.opam-switch/build/pds.6.55/build/release/pds_template/.d
- 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 -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  -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.4/.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.4/.opam-switch/build/pds.6.55/build/release/snabela'
- make \
- OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
- BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds \
- -C build/release/pds release
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds'
- cd ../../../src/pds && \
- ocamlfind ocamldep   \
-  pds.ml   > /home/opam/.opam/5.4/.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.4/.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" "-j71" "test" (CWD=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55)
- make \
- OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
- BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template \
- -C build/release/pds_template release
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template'
- make \
- OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
- BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/snabela \
- -C build/release/snabela release
- make[1]: Entering directory '/home/opam/.opam/5.4/.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.4/.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.4/.opam-switch/build/pds.6.55/build/release/snabela'
- make \
- OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
- BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds \
- -C build/release/pds release
- make[1]: Entering directory '/home/opam/.opam/5.4/.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.4/.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
- pds: internal error, uncaught exception:
-      Sqlite3.Error("Sqlite3.prepare: no such function: unixepoch")
-      
- Passed simple-output
- Testing simple-selector-both-formatted
- Passed simple-selector-both-formatted
- Testing simple-selector-build-formatted
- Passed simple-selector-build-formatted
- Testing simple-selector-default-compile-formatted
- pds: internal error, uncaught exception:
-      Sqlite3.Error("Sqlite3.prepare: no such function: unixepoch")
-      
- 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
- pds: internal error, uncaught exception:
-      Sqlite3.Error("Sqlite3.prepare: no such function: unixepoch")
-      
- 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 -j71 test".

#=== ERROR while compiling pds.6.55 ===========================================#
# context              2.5.0~alpha1 | linux/x86_64 | ocaml-base-compiler.5.4.0 | pinned(http://acsl-pkgs.s3.amazonaws.com/pds-6.55.tar.gz)
# path                 ~/.opam/5.4/.opam-switch/build/pds.6.55
# command              ~/.opam/opam-init/hooks/sandbox.sh build make -j71 test
# exit-code            2
# env-file             ~/.opam/log/pds-7-b556c5.env
# output-file          ~/.opam/log/pds-7-b556c5.out
### output ###
# make \
# OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
# BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template \
# -C build/release/pds_template release
# make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template'
# make \
# OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
# BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/snabela \
# -C build/release/snabela release
# make[1]: Entering directory '/home/opam/.opam/5.4/.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.4/.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.4/.opam-switch/build/pds.6.55/build/release/snabela'
# make \
# OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
# BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds \
# -C build/release/pds release
# make[1]: Entering directory '/home/opam/.opam/5.4/.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.4/.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
# pds: internal error, uncaught exception:
#      Sqlite3.Error("Sqlite3.prepare: no such function: unixepoch")
#      
# Passed simple-output
# Testing simple-selector-both-formatted
# Passed simple-selector-both-formatted
# Testing simple-selector-build-formatted
# Passed simple-selector-build-formatted
# Testing simple-selector-default-compile-formatted
# pds: internal error, uncaught exception:
#      Sqlite3.Error("Sqlite3.prepare: no such function: unixepoch")
#      
# 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
# pds: internal error, uncaught exception:
#      Sqlite3.Error("Sqlite3.prepare: no such function: unixepoch")
#      
# 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 "\"centos-9\""; 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-11-10 21:07.21: Job failed: Failed: Build failed
2025-11-10 21:07.21: Log analysis:
2025-11-10 21:07.21: >>> 
[ERROR] The compilation of pds.6.55 failed at "make -j71 test".
 (score = 20)
2025-11-10 21:07.21: >>> 
[ERROR] The compilation of pds.6.55 failed at "make -j71 test".
 (score = 20)
2025-11-10 21:07.21: The compilation of pds.6.55 failed at "make -j71 test".