(not at the head of any monitored branch or PR)
2026-03-19 09:38.24: New job: test ppxlib.0.38.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29563/head (387e2f5b0d8ca5a51f4ba81536f829fd909dafd1)
                              on macos-homebrew-ocaml-4.14/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/29563/head" && git reset --hard 387e2f5b
git fetch origin master
git merge --no-edit 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-4.14
USER 1000:1000
RUN ln -f ~/local/bin/opam-dev ~/local/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 -k local --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ppxlib.0.38.0 0.38.0
RUN opam reinstall ppxlib.0.38.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 "\"macos-homebrew\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ppxlib.0.38.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test ppxlib.0.38.0) || true
RUN opam reinstall --with-test --verbose ppxlib.0.38.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 "\"macos-homebrew\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ppxlib.0.38.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 .

2026-03-19 09:38.24: Using cache hint "macos-homebrew-ocaml-4.14-ppxlib.0.38.0-387e2f5b0d8ca5a51f4ba81536f829fd909dafd1"
2026-03-19 09:38.24: Using OBuilder spec:
((from macos-homebrew-ocaml-4.14)
 (user (uid 1000) (gid 1000))
 (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
 (run (network host)
      (shell "opam init --reinit -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 -k local --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn ppxlib.0.38.0 0.38.0"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell  "opam reinstall ppxlib.0.38.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 \"\\\"macos-homebrew\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ppxlib.0.38.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test ppxlib.0.38.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose ppxlib.0.38.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 \"\\\"macos-homebrew\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ppxlib.0.38.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-19 09:38.24: Waiting for resource in pool OCluster
2026-03-19 09:38.25: Waiting for worker…
2026-03-19 09:45.43: Got resource from pool OCluster
Building on i7-worker-02
All commits already cached
Updating files:  34% (6421/18507)
Updating files:  35% (6478/18507)
Updating files:  36% (6663/18507)
Updating files:  37% (6848/18507)
Updating files:  38% (7033/18507)
Updating files:  39% (7218/18507)
Updating files:  40% (7403/18507)
Updating files:  41% (7588/18507)
Updating files:  42% (7773/18507)
Updating files:  43% (7959/18507)
Updating files:  44% (8144/18507)
Updating files:  45% (8329/18507)
Updating files:  46% (8514/18507)
Updating files:  47% (8699/18507)
Updating files:  48% (8884/18507)
Updating files:  49% (9069/18507)
Updating files:  50% (9254/18507)
Updating files:  51% (9439/18507)
Updating files:  52% (9624/18507)
Updating files:  53% (9809/18507)
Updating files:  54% (9994/18507)
Updating files:  55% (10179/18507)
Updating files:  56% (10364/18507)
Updating files:  57% (10549/18507)
Updating files:  58% (10735/18507)
Updating files:  59% (10920/18507)
Updating files:  60% (11105/18507)
Updating files:  61% (11290/18507)
Updating files:  62% (11475/18507)
Updating files:  63% (11660/18507)
Updating files:  63% (11696/18507)
Updating files:  64% (11845/18507)
Updating files:  65% (12030/18507)
Updating files:  66% (12215/18507)
Updating files:  67% (12400/18507)
Updating files:  68% (12585/18507)
Updating files:  69% (12770/18507)
Updating files:  70% (12955/18507)
Updating files:  71% (13140/18507)
Updating files:  72% (13326/18507)
Updating files:  73% (13511/18507)
Updating files:  74% (13696/18507)
Updating files:  75% (13881/18507)
Updating files:  76% (14066/18507)
Updating files:  77% (14251/18507)
Updating files:  78% (14436/18507)
Updating files:  79% (14621/18507)
Updating files:  80% (14806/18507)
Updating files:  81% (14991/18507)
Updating files:  82% (15176/18507)
Updating files:  83% (15361/18507)
Updating files:  84% (15546/18507)
Updating files:  85% (15731/18507)
Updating files:  86% (15917/18507)
Updating files:  87% (16102/18507)
Updating files:  88% (16287/18507)
Updating files:  89% (16472/18507)
Updating files:  90% (16657/18507)
Updating files:  91% (16842/18507)
Updating files:  92% (17027/18507)
Updating files:  93% (17212/18507)
Updating files:  94% (17397/18507)
Updating files:  95% (17582/18507)
Updating files:  95% (17629/18507)
Updating files:  96% (17767/18507)
Updating files:  97% (17952/18507)
Updating files:  98% (18137/18507)
Updating files:  99% (18322/18507)
Updating files: 100% (18507/18507)
Updating files: 100% (18507/18507), done.
HEAD is now at 9f189ca4f9 Merge pull request #29562 from shonfeder/release-dune-3.22.0
Updating 9f189ca4f9..387e2f5b0d
Fast-forward
 packages/ppxlib-tools/ppxlib-tools.0.38.0/opam | 46 +++++++++++++++++++
 packages/ppxlib/ppxlib.0.38.0/opam             | 63 ++++++++++++++++++++++++++
 2 files changed, 109 insertions(+)
 create mode 100644 packages/ppxlib-tools/ppxlib-tools.0.38.0/opam
 create mode 100644 packages/ppxlib/ppxlib.0.38.0/opam

(from macos-homebrew-ocaml-4.14)
2026-03-19 09:45.49 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-03-19 09:45.49 ---> using "f20a31eccb94af52fa2a3ef86b723bc6460bac3d8a92b8861915540c2498d20a" from cache

/: (run (network host)
        (shell "opam init --reinit -ni"))
No configuration file found, using 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 /Users/mac1000/.opam from version 2.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.

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

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///Users/mac1000/opam-repository
2026-03-19 09:45.49 ---> using "7818e224f85c11d1d318abe9ba4e297be345388b7ed476f912b6900c6bae56aa" from cache

/: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=macos os-distribution=homebrew os-version=15.5
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 11
# repositories         1 (version-controlled)
# pinned               0
# current-switch       4.14.2
# invariant            ["ocaml-base-compiler" {= "4.14.2"} | "ocaml-system" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs:/Users/mac1000/.opam/4.14.2/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-03-19 09:45.49 ---> using "625776f8b2f728a128171e2ba4372c97abd18632a07574a8412026e8be39dac5" from cache

/: (env OPAMDOWNLOADJOBS 1)

/: (env OPAMERRLOGLEN 0)

/: (env OPAMPRECISETRACKING 1)

/: (env CI true)

/: (env OPAM_REPO_CI true)

/: (run (shell "rm -rf opam-repository/"))
2026-03-19 09:45.50 ---> using "15fbb76bf7dee5d6e8ae583230339015a61d8d2d8397de2cfe6459f8ba421f1e" from cache

/: (copy (src .) (dst opam-repository/))
2026-03-19 09:45.52 ---> using "65d699f48897cbf563654aea71701346604d49f9ddc60d24ab92135ff581e443" from cache

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-03-19 09:45.52 ---> using "0eb1e5849d449e59a37dc1aa7152131912cb2d9cd76a837f200cb0a280b42fc7" from cache

/: (run (network host)
        (shell "opam update --depexts || true"))
+ /usr/local/bin/brew "update"
- ==> Updating Homebrew...
- ==> Downloading https://ghcr.io/v2/homebrew/core/portable-ruby/blobs/sha256:e4f27cef5f72bf7a99c748c0650fe3718fe661a56960dedaeec9c2c98de1d3bc
- #=#=#                                                                          

                                                                           0.7%
- 
#                                                                          1.5%
#                                                                          2.4%
##                                                                         3.2%
##                                                                         4.0%
###                                                                        4.8%
####                                                                       5.7%
####                                                                       6.6%
#####                                                                      7.3%
#####                                                                      8.3%
######                                                                     9.1%
#######                                                                    9.9%
- 
#######                                                                   10.7%
########                                                                  11.5%
########                                                                  12.4%
#########                                                                 13.2%
##########                                                                14.0%
##########                                                                15.0%
###########                                                               15.8%
############                                                              16.7%
############                                                              17.5%
#############                                                             18.3%
#############                                                             19.1%
- 
##############                                                            20.1%
###############                                                           20.9%
###############                                                           21.7%
################                                                          22.5%
################                                                          23.4%
#################                                                         24.4%
##################                                                        25.2%
##################                                                        26.0%
###################                                                       26.9%
###################                                                       27.7%
####################                                                      28.5%
- 
#####################                                                     29.4%
#####################                                                     30.2%
######################                                                    31.1%
######################                                                    31.9%
#######################                                                   32.8%
########################                                                  33.6%
########################                                                  34.5%
#########################                                                 35.4%
#########################                                                 35.9%
##########################                                                36.6%
##########################                                                37.4%
- 
###########################         
-                                       38.2%
- 
############################                                              39.1%
############################                                              39.9%
#############################                                             40.7%
#############################                                             41.7%
##############################                                            42.5%
###############################                                           43.3%
###############################                                           44.2%
################################                                          45.0%
#################################                                         45.9%
#################################                                         46.7%
##################################                                        47.6%
- 
##################################                                        48.4%
###################################                                       49.3%
####################################                                      50.1%
####################################                                      50.9%
#####################################                                     51.8%
#####################################                                     52.6%
######################################                                    53.4%
#######################################                                   54.3%
#######################################                                   55.2%
########################################                                  56.0%
########################################                                  56.4%
- 
########################################                                  56.6%
########################################                                  56.9%
#########################################                                 57.2%
#########################################                                 57.5%
#########################################                                 57.7%
#########################################                                 58.0%
##########################################                                58.4%
##########################################                                58.7%
##########################################                                58.9%
##########################################                                59.2%
- 
##########################################                                59.5%
###########################################                               59.9%
###########################################                               60.1%
###########################################                               60.4%
###########################################                               60.6%
###########################################                               60.9%
############################################                              61.2%
############################################                              61.6%
############################################                              61.9%
############################################                              62.1%
############################################                              62.4%
- 
#############################################                             62.7%
#############################################                             62.9%
#############################################                             63.3%
#############################################                             63.6%
#############################################                             63.9%
##############################################                            64.2%
##############################################                            64.4%
##############################################                            64.7%
##############################################                            65.1%
###############################################                           65.3%
###############################################                           65.6%
- 
###############################################                           66.0%
###############################################                           66.3%
###############################################                           66.5%
################################################                          66.8%
################################################                          67.1%
################################################                          67.5%
################################################                          67.8%
################################################                          68.0%
#################################################                         68.3%
#################################################                         68.6%
- 
#################################################                         68.8%
#################################################                         69.0%
#################################################                         69.2%
##################################################                        69.5%
##################################################                        69.8%
##################################################                        70.0%
##################################################                        70.2%
##################################################                        70.4%
###################################################                       70.9%
###################################################                       71.3%
- 
###################################################                       71.5%
###################################################                       71.8%
###################################################                       72.0%
####################################################                      72.4%
####################################################                      72.7%
####################################################                      73.0%
####################################################                      73.2%
####################################################                      73.5%
#####################################################                     73.8%
#####################################################                     74.0%
#####################################################                     74.5%
- 
#####################################################                     74.7%
#####################################################                     75.0%
######################################################                    75.3%
######################################################                    75.5%
######################################################                    75.9%
######################################################                    76.2%
#######################################################                   76.5%
#######################################################                   76.7%
#######################################################                   77.1%
#######################################################                   77.5%
########################################################                  78.1%
- 
########################################################                  78.3%
########################################################                  78.7%
########################################################                  79.1%
#########################################################                 79.4%
#########################################################                 79.7%
#########################################################                 80.1%
#########################################################                 80.5%
##########################################################                80.9%
##########################################################                81.4%
##########################################################                81.8%
###########################################################               82.2%
- 
###########################################################               82.6%
###########################################################               83.0%
############################################################              83.4%
############################################################              83.9%
############################################################              84.3%
#############################################################             84.8%
#############################################################             85.2%
#############################################################             85.7%
#############################################################             86.1%
##############################################################            86.5%
##############################################################            87.0%
- 
##############################################################            87.4%
###############################################################           87.8%
###############################################################           88.3%
###############################################################           88.7%
################################################################          89.1%
################################################################          89.6%
################################################################          90.0%
#################################################################         90.4%
#################################################################         90.8%
#################################################################         91.2%
#################################################################         91.6%
- 
##################################################################        92.2%
##################################################################        92.6%
##################################################################        92.9%
###################################################################       93.3%
###################################################################       93.9%
###################################################################       94.3%
####################################################################      94.7%
####################################################################      95.1%
####################################################################      95.6%
#####################################################################     96.4%
- 
######################################################################    97.4%
######################################################################    98.1%
#######################################################################   99.1%
#######################################################################   99.9%
######################################################################## 100.0%
- ==> Pouring portable-ruby-4.0.1.catalina.bottle.tar.gz
- ==> Homebrew collects anonymous analytics.
- Read the analytics documentation (and how to opt-out) here:
-   https://docs.brew.sh/Analytics
- No analytics have been recorded yet (nor will be during this `brew` run).
- 
- ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
-   https://github.com/Homebrew/brew#donations
- 
- Already up-to-date.
2026-03-19 09:45.52 ---> using "b40c8c544c3ac549fccdc4e02030ec5f38655c816ca7a1c500a899b38b869d44" from cache

/: (run (shell "opam pin add -k version -yn ppxlib.0.38.0 0.38.0"))
ppxlib is now pinned to version 0.38.0
2026-03-19 09:45.53 ---> using "a2085a04566437bc6e4d68e2df086cd4430e6635936ceb0e5bd6a36b727cc80c" from cache

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell  "opam reinstall ppxlib.0.38.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 \"\\\"macos-homebrew\\\"\"; then\
               \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
               \n          fi;\
               \n          test \"$pkg\" != 'ppxlib.0.38.0' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
ppxlib.0.38.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
  - install dune                3.22.0          [required by ppxlib]
  - install ocaml-compiler-libs v0.12.4         [required by ppxlib]
  - install ppx_derivers        1.2.1           [required by ppxlib]
  - install ppxlib              0.38.0 (pinned)
  - install sexplib0            v0.17.0         [required by ppxlib]
  - install stdlib-shims        0.3.0           [required by ppxlib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppxlib.0.38.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed dune.3.22.0
-> installed stdlib-shims.0.3.0
-> installed ppx_derivers.1.2.1
-> installed ocaml-compiler-libs.v0.12.4
-> installed sexplib0.v0.17.0
-> installed ppxlib.0.38.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-19 09:45.53 ---> using "7eab8ef7817387c1994dde465c6d3f6ae65fd231b4782920675162ebf8c4881e" from cache

/: (run (network host)
        (shell "(opam reinstall --with-test ppxlib.0.38.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile ppxlib    0.38.0 (pinned)
=== install 3 packages
  - install   cinaps    v0.15.1         [required by ppxlib]
  - install   ocamlfind 1.9.8           [required by ppxlib]
  - install   re        1.14.0          [required by ppxlib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cinaps.v0.15.1  (https://github.com/ocaml-ppx/cinaps/archive/v0.15.1.tar.gz)
-> retrieved ocamlfind.1.9.8  (https://github.com/ocaml/ocamlfind/archive/refs/tags/findlib-1.9.8.tar.gz)
-> retrieved ppxlib.0.38.0  (https://github.com/ocaml-ppx/ppxlib/archive/f7ffcd60a04f22ba85caefbde7f1eb4af6dba4ea.tar.gz)
-> retrieved re.1.14.0  (https://github.com/ocaml/ocaml-re/archive/refs/tags/1.14.0.tar.gz)
-> installed re.1.14.0
-> removed   ppxlib.0.38.0
-> installed ocamlfind.1.9.8
-> installed cinaps.v0.15.1
-> installed ppxlib.0.38.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-19 09:46.37 ---> saved as "fedde6a9a699ce8c1275756d4fbf86f6f53050b629824ef2a9ff76c522399a22"

/: (run (shell  "opam reinstall --with-test --verbose ppxlib.0.38.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 \"\\\"macos-homebrew\\\"\"; then\
               \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
               \n          fi;\
               \n          test \"$pkg\" != 'ppxlib.0.38.0' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile ppxlib 0.38.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [ppxlib.0.38.0: extract]
-> retrieved ppxlib.0.38.0  (cached)
Processing  2/4: [ppxlib: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ppxlib" "-j" "11" "@install" "@runtest" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/ppxlib.0.38.0)
- File "dune-project", line 23, characters 2-42:
- 23 |   (sexplib0 (and :with-test (>= "v0.15"))) ; Printexc.register_printer in sexplib0 changed
-        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning: Duplicate dependency on package (sexplib0 (and :with-test (>=
- v0.15))) in 'depends' field. If you want to specify multiple constraints,
- combine them using (and ...).
- Hint: To disable this warning, add the following to your dune-project file:
- (warnings (duplicate_deps disabled))
-> compiled  ppxlib.0.38.0
-> removed   ppxlib.0.38.0
-> installed ppxlib.0.38.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-19 09:47.12 ---> saved as "0b26ad9c6013954de33403a6443aa029e26eb38d7f5ac6099c84da7559c22ada"
Job succeeded
2026-03-19 09:47.24: Job succeeded