Build:
  1. 0
2025-11-08 05:58.06: New job: test alice.0.1.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28863/head (66db895fd6b1a9a176eedf3baf8fc77e4017f517)
                              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/28863/head" && git reset --hard 66db895f
git fetch origin master
git merge --no-edit 21f97b2e6d7c617fc0a79cc8e59b2e10690960e1
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 alice.0.1.0 0.1.0
RUN opam reinstall alice.0.1.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'alice.0.1.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test alice.0.1.0) || true
RUN opam reinstall --with-test --verbose alice.0.1.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'alice.0.1.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2025-11-08 05:58.06: Using cache hint "macos-homebrew-ocaml-4.14-alice.0.1.0-66db895fd6b1a9a176eedf3baf8fc77e4017f517"
2025-11-08 05:58.06: 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 alice.0.1.0 0.1.0"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell  "opam reinstall alice.0.1.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'alice.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test alice.0.1.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose alice.0.1.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'alice.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-11-08 05:58.06: Waiting for resource in pool OCluster
2025-11-08 05:58.06: Waiting for worker…
2025-11-08 06:01.29: Got resource from pool OCluster
Building on i7-worker-04
All commits already cached
Updating files:  28% (5319/18703)
Updating files:  29% (5424/18703)
Updating files:  30% (5611/18703)
Updating files:  31% (5798/18703)
Updating files:  32% (5985/18703)
Updating files:  33% (6172/18703)
Updating files:  34% (6360/18703)
Updating files:  35% (6547/18703)
Updating files:  36% (6734/18703)
Updating files:  37% (6921/18703)
Updating files:  38% (7108/18703)
Updating files:  39% (7295/18703)
Updating files:  40% (7482/18703)
Updating files:  41% (7669/18703)
Updating files:  42% (7856/18703)
Updating files:  43% (8043/18703)
Updating files:  44% (8230/18703)
Updating files:  45% (8417/18703)
Updating files:  46% (8604/18703)
Updating files:  47% (8791/18703)
Updating files:  48% (8978/18703)
Updating files:  49% (9165/18703)
Updating files:  50% (9352/18703)
Updating files:  50% (9534/18703)
Updating files:  51% (9539/18703)
Updating files:  52% (9726/18703)
Updating files:  53% (9913/18703)
Updating files:  54% (10100/18703)
Updating files:  55% (10287/18703)
Updating files:  56% (10474/18703)
Updating files:  57% (10661/18703)
Updating files:  58% (10848/18703)
Updating files:  59% (11035/18703)
Updating files:  60% (11222/18703)
Updating files:  61% (11409/18703)
Updating files:  62% (11596/18703)
Updating files:  63% (11783/18703)
Updating files:  64% (11970/18703)
Updating files:  65% (12157/18703)
Updating files:  66% (12344/18703)
Updating files:  67% (12532/18703)
Updating files:  68% (12719/18703)
Updating files:  69% (12906/18703)
Updating files:  70% (13093/18703)
Updating files:  71% (13280/18703)
Updating files:  72% (13467/18703)
Updating files:  73% (13654/18703)
Updating files:  74% (13841/18703)
Updating files:  75% (14028/18703)
Updating files:  76% (14215/18703)
Updating files:  77% (14402/18703)
Updating files:  77% (14415/18703)
Updating files:  78% (14589/18703)
Updating files:  79% (14776/18703)
Updating files:  80% (14963/18703)
Updating files:  81% (15150/18703)
Updating files:  82% (15337/18703)
Updating files:  83% (15524/18703)
Updating files:  84% (15711/18703)
Updating files:  85% (15898/18703)
Updating files:  86% (16085/18703)
Updating files:  87% (16272/18703)
Updating files:  88% (16459/18703)
Updating files:  89% (16646/18703)
Updating files:  90% (16833/18703)
Updating files:  91% (17020/18703)
Updating files:  92% (17207/18703)
Updating files:  93% (17394/18703)
Updating files:  94% (17581/18703)
Updating files:  95% (17768/18703)
Updating files:  96% (17955/18703)
Updating files:  97% (18142/18703)
Updating files:  98% (18329/18703)
Updating files:  99% (18516/18703)
Updating files: 100% (18703/18703)
Updating files: 100% (18703/18703), done.
HEAD is now at 21f97b2e6d Merge pull request #28836 from dbuenzli/b0-publish-bytesrw.0.3.0
Updating 21f97b2e6d..66db895fd6
Fast-forward
 packages/alice/alice.0.1.0/opam | 45 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)
 create mode 100644 packages/alice/alice.0.1.0/opam

(from macos-homebrew-ocaml-4.14)
2025-11-08 06:01.12 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2025-11-08 06:01.12 ---> 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
2025-11-08 06:01.13 ---> 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.4.1
# 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
2025-11-08 06:01.13 ---> 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/"))
2025-11-08 06:01.13 ---> using "15fbb76bf7dee5d6e8ae583230339015a61d8d2d8397de2cfe6459f8ba421f1e" from cache

/: (copy (src .) (dst opam-repository/))
2025-11-08 06:01.16 ---> using "3542d2100751318c24c08f00f81baa717320023cb37e2bb7455f3fb69a7393e0" from cache

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2025-11-08 06:01.16 ---> using "284a0dd917ac103a5ea43d54ecbbf641cf3d8d51414fd9ed9f8d9d34e572dc04" from cache

/: (run (network host)
        (shell "opam update --depexts || true"))
+ /usr/local/bin/brew "update"
- ==> Updating Homebrew...
- ==> 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.
2025-11-08 06:01.16 ---> using "a323d79648e82e6897f294a6feb42331bb1d966c50d99f3fb594a3f0a755ab53" from cache

/: (run (shell "opam pin add -k version -yn alice.0.1.0 0.1.0"))
alice is now pinned to version 0.1.0
2025-11-08 06:01.17 ---> using "3197967c8b92082e4629a821c4ab770c86febe431c12f8b8aa1cfe8a8325752f" from cache

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell  "opam reinstall alice.0.1.0;\
               \n        res=$?;\
               \n        test \"$res\" != 31 && exit \"$res\";\
               \n        export OPAMCLI=2.0;\
               \n        build_dir=$(opam var prefix)/.opam-switch/build;\
               \n        failed=$(ls \"$build_dir\");\
               \n        partial_fails=\"\";\
               \n        for pkg in $failed; do\
               \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'alice.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
alice.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 17 packages
  - install alice        0.1.0 (pinned)
  - install climate      0.8.6          [required by alice]
  - install dune         3.20.2         [required by alice]
  - install dyn          3.20.2         [required by alice]
  - install fileutils    0.6.6          [required by alice]
  - install ISO8601      0.2.6          [required by toml]
  - 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 ordering     3.20.2         [required by dyn]
  - install pp           2.0.0          [required by alice]
  - install re           1.14.0         [required by alice]
  - install sha          1.15.4         [required by alice]
  - install stdlib-shims 0.3.0          [required by sha]
  - install toml         7.1.0          [required by alice]
  - install xdg          3.20.2         [required by alice]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alice.0.1.0  (cached)
-> retrieved climate.0.8.6  (cached)
-> retrieved dune.3.20.2, dyn.3.20.2, ordering.3.20.2, xdg.3.20.2  (cached)
-> retrieved fileutils.0.6.6  (cached)
-> retrieved ISO8601.0.2.6  (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> retrieved pp.2.0.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved sha.1.15.4  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved toml.7.1.0  (cached)
-> installed dune.3.20.2
-> installed stdlib-shims.0.3.0
-> installed pp.2.0.0
-> installed menhirSdk.20250912
-> installed menhirLib.20250912
-> installed menhirCST.20250912
-> installed re.1.14.0
-> installed ISO8601.0.2.6
-> installed climate.0.8.6
-> installed fileutils.0.6.6
-> installed sha.1.15.4
-> installed ordering.3.20.2
-> installed xdg.3.20.2
-> installed dyn.3.20.2
-> installed menhir.20250912
-> installed toml.7.1.0
[ERROR] The compilation of alice.0.1.0 failed at "dune build -p alice -j 11 @install".

#=== ERROR while compiling alice.0.1.0 ========================================#
# context              2.4.1 | macos/x86_64 | ocaml-base-compiler.4.14.2 | pinned(https://github.com/alicecaml/alice/archive/refs/tags/0.1.0.tar.gz)
# path                 ~/.opam/4.14.2/.opam-switch/build/alice.0.1.0
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p alice -j 11 @install
# exit-code            1
# env-file             ~/.opam/log/alice-62191-792f0b.env
# output-file          ~/.opam/log/alice-62191-792f0b.out
### output ###
# (cd _build/default && /Users/mac1000/.opam/4.14.2/bin/ocamlc.opt -w -40 -g -bin-annot -I stdlib/src/.alice_stdlib.objs/byte -I /Users/mac1000/.opam/4.14.2/lib/dyn -I /Users/mac1000/.opam/4.14.2/lib/fileutils -I /Users/mac1000/.opam/4.14.2/lib/ordering -I /Users/mac1000/.opam/4.14.2/lib/pp -I /Users/mac1000/.opam/4.14.2/lib/re -I /Users/mac1000/.opam/4.14.2/lib/xdg -intf-suffix .ml -no-alias-deps -open Alice_stdlib__ -o stdlib/src/.alice_stdlib.objs/byte/alice_stdlib__Set.cmo -c -impl stdlib/src/set.ml)
# File "stdlib/src/set.ml", line 22, characters 26-33:
# 22 |   let to_dyn t = Dyn.Set (to_list t |> List.map ~f:Ord.to_dyn)
#                                ^^^^^^^
# Error: Unbound value to_list
# Hint: Did you mean of_list?
# (cd _build/default && /Users/mac1000/.opam/4.14.2/bin/ocamlc.opt -w -40 -g -bin-annot -I stdlib/src/.alice_stdlib.objs/byte -I /Users/mac1000/.opam/4.14.2/lib/dyn -I /Users/mac1000/.opam/4.14.2/lib/fileutils -I /Users/mac1000/.opam/4.14.2/lib/ordering -I /Users/mac1000/.opam/4.14.2/lib/pp -I /Users/mac1000/.opam/4.14.2/lib/re -I /Users/mac1000/.opam/4.14.2/lib/xdg -intf-suffix .ml -no-alias-deps -open Alice_stdlib__ -o stdlib/src/.alice_stdlib.objs/byte/alice_stdlib__Map.cmo -c -impl stdlib/src/map.ml)
# File "stdlib/src/map.ml", line 26, characters 28-35:
# 26 |   let to_dyn f t = Dyn.Map (to_list t |> List.map ~f:(fun (k, v) -> Key.to_dyn k, f v))
#                                  ^^^^^^^
# Error: Unbound value to_list
# (cd _build/default && /Users/mac1000/.opam/4.14.2/bin/ocamlopt.opt -w -40 -g -I stdlib/src/.alice_stdlib.objs/byte -I stdlib/src/.alice_stdlib.objs/native -I /Users/mac1000/.opam/4.14.2/lib/dyn -I /Users/mac1000/.opam/4.14.2/lib/fileutils -I /Users/mac1000/.opam/4.14.2/lib/ordering -I /Users/mac1000/.opam/4.14.2/lib/pp -I /Users/mac1000/.opam/4.14.2/lib/re -I /Users/mac1000/.opam/4.14.2/lib/xdg -intf-suffix .ml -no-alias-deps -open Alice_stdlib__ -o stdlib/src/.alice_stdlib.objs/native/alice_stdlib__Set.cmx -c -impl stdlib/src/set.ml)
# File "stdlib/src/set.ml", line 22, characters 26-33:
# 22 |   let to_dyn t = Dyn.Set (to_list t |> List.map ~f:Ord.to_dyn)
#                                ^^^^^^^
# Error: Unbound value to_list
# Hint: Did you mean of_list?
# (cd _build/default && /Users/mac1000/.opam/4.14.2/bin/ocamlopt.opt -w -40 -g -I stdlib/src/.alice_stdlib.objs/byte -I stdlib/src/.alice_stdlib.objs/native -I /Users/mac1000/.opam/4.14.2/lib/dyn -I /Users/mac1000/.opam/4.14.2/lib/fileutils -I /Users/mac1000/.opam/4.14.2/lib/ordering -I /Users/mac1000/.opam/4.14.2/lib/pp -I /Users/mac1000/.opam/4.14.2/lib/re -I /Users/mac1000/.opam/4.14.2/lib/xdg -intf-suffix .ml -no-alias-deps -open Alice_stdlib__ -o stdlib/src/.alice_stdlib.objs/native/alice_stdlib__Map.cmx -c -impl stdlib/src/map.ml)
# File "stdlib/src/map.ml", line 26, characters 28-35:
# 26 |   let to_dyn f t = Dyn.Map (to_list t |> List.map ~f:(fun (k, v) -> Key.to_dyn k, f v))
#                                  ^^^^^^^
# Error: Unbound value to_list
# (cd _build/default && /Users/mac1000/.opam/4.14.2/bin/ocamlc.opt -w -40 -g -bin-annot -I graphviz/src/.alice_graphviz.objs/byte -I /Users/mac1000/.opam/4.14.2/lib/dyn -I /Users/mac1000/.opam/4.14.2/lib/fileutils -I /Users/mac1000/.opam/4.14.2/lib/ordering -I /Users/mac1000/.opam/4.14.2/lib/pp -I /Users/mac1000/.opam/4.14.2/lib/re -I /Users/mac1000/.opam/4.14.2/lib/xdg -I stdlib/src/.alice_stdlib.objs/byte -intf-suffix .ml -no-alias-deps -o graphviz/src/.alice_graphviz.objs/byte/alice_graphviz.cmo -c -impl graphviz/src/alice_graphviz.ml)
# File "graphviz/src/alice_graphviz.ml", line 10, characters 8-26:
# 10 |         String.Set.to_list deps |> List.map ~f:(sprintf "%S") |> String.concat ~sep:", "
#              ^^^^^^^^^^^^^^^^^^
# Error: Unbound value String.Set.to_list
# Hint: Did you mean of_list?
# (cd _build/default && /Users/mac1000/.opam/4.14.2/bin/ocamlc.opt -w -40 -g -bin-annot -I dag/src/.alice_dag.objs/byte -I /Users/mac1000/.opam/4.14.2/lib/dyn -I /Users/mac1000/.opam/4.14.2/lib/fileutils -I /Users/mac1000/.opam/4.14.2/lib/ordering -I /Users/mac1000/.opam/4.14.2/lib/pp -I /Users/mac1000/.opam/4.14.2/lib/re -I /Users/mac1000/.opam/4.14.2/lib/xdg -I error/src/.alice_error.objs/byte -I print/src/.alice_print.objs/byte -I stdlib/src/.alice_stdlib.objs/byte -intf-suffix .ml -no-alias-deps -o dag/src/.alice_dag.objs/byte/alice_dag.cmo -c -impl dag/src/alice_dag.ml)
# File "dag/src/alice_dag.ml", line 44, characters 10-31:
# 44 |           Node.Name.Set.to_list dep_names
#                ^^^^^^^^^^^^^^^^^^^^^
# Error: Unbound value Node.Name.Set.to_list
# Hint: Did you mean of_list?
# (cd _build/default && /Users/mac1000/.opam/4.14.2/bin/ocamlc.opt -w -40 -g -bin-annot -I ui/src/.alice_ui.objs/byte -I /Users/mac1000/.opam/4.14.2/lib/dyn -I /Users/mac1000/.opam/4.14.2/lib/fileutils -I /Users/mac1000/.opam/4.14.2/lib/ordering -I /Users/mac1000/.opam/4.14.2/lib/pp -I /Users/mac1000/.opam/4.14.2/lib/re -I /Users/mac1000/.opam/4.14.2/lib/xdg -I env/src/.alice_env.objs/byte -I error/src/.alice_error.objs/byte -I hierarchy/src/.alice_hierarchy.objs/byte -I print/src/.alice_print.objs/byte -I stdlib/src/.alice_stdlib.objs/byte -intf-suffix .ml -no-alias-deps -o ui/src/.alice_ui.objs/byte/alice_ui.cmo -c -impl ui/src/alice_ui.ml)
# File "ui/src/alice_ui.ml", line 53, characters 10-23:
# 53 |        if List.is_empty components then "." else String.concat ~sep:"/" components)
#                ^^^^^^^^^^^^^
# Error: Unbound value List.is_empty
# (cd _build/default && /Users/mac1000/.opam/4.14.2/bin/ocamlc.opt -w -40 -g -bin-annot -I io/src/.alice_io.objs/byte -I /Users/mac1000/.opam/4.14.2/lib/dyn -I /Users/mac1000/.opam/4.14.2/lib/fileutils -I /Users/mac1000/.opam/4.14.2/lib/ordering -I /Users/mac1000/.opam/4.14.2/lib/pp -I /Users/mac1000/.opam/4.14.2/lib/re -I /Users/mac1000/.opam/4.14.2/lib/xdg -I env/src/.alice_env.objs/byte -I error/src/.alice_error.objs/byte -I hierarchy/src/.alice_hierarchy.objs/byte -I log/src/.alice_log.objs/byte -I package_meta/src/.alice_package_meta.objs/byte -I print/src/.alice_print.objs/byte -I stdlib/src/.alice_stdlib.objs/byte -I ui/src/.alice_ui.objs/byte -intf-suffix .ml -no-alias-deps -open Alice_io__ -o io/src/.alice_io.objs/byte/alice_io__Infer_linux_distro.cmo -c -impl io/src/infer_linux_distro.ml)
# File "io/src/infer_linux_distro.ml", line 19, characters 41-54:
# 19 |     if not (Re.all re_nixos etc_issue |> List.is_empty)
#                                               ^^^^^^^^^^^^^
# Error: Unbound value List.is_empty
# (cd _build/default && /Users/mac1000/.opam/4.14.2/bin/ocamlc.opt -w -40 -g -bin-annot -I io/src/.alice_io.objs/byte -I /Users/mac1000/.opam/4.14.2/lib/dyn -I /Users/mac1000/.opam/4.14.2/lib/fileutils -I /Users/mac1000/.opam/4.14.2/lib/ordering -I /Users/mac1000/.opam/4.14.2/lib/pp -I /Users/mac1000/.opam/4.14.2/lib/re -I /Users/mac1000/.opam/4.14.2/lib/xdg -I env/src/.alice_env.objs/byte -I error/src/.alice_error.objs/byte -I hierarchy/src/.alice_hierarchy.objs/byte -I log/src/.alice_log.objs/byte -I package_meta/src/.alice_package_meta.objs/byte -I print/src/.alice_print.objs/byte -I stdlib/src/.alice_stdlib.objs/byte -I ui/src/.alice_ui.objs/byte -intf-suffix .ml -no-alias-deps -open Alice_io__ -o io/src/.alice_io.objs/byte/alice_io__Process.cmo -c -impl io/src/process.ml)
# File "io/src/process.ml", line 78, characters 22-44:
# 78 |           let lines = In_channel.input_lines channel in
#                            ^^^^^^^^^^^^^^^^^^^^^^
# Error: Unbound value In_channel.input_lines
# Hint: Did you mean input_line?
# (cd _build/default && /Users/mac1000/.opam/4.14.2/bin/ocamlc.opt -w -40 -g -bin-annot -I manifest/src/.alice_manifest.objs/byte -I /Users/mac1000/.opam/4.14.2/lib/ISO8601 -I /Users/mac1000/.opam/4.14.2/lib/dyn -I /Users/mac1000/.opam/4.14.2/lib/fileutils -I /Users/mac1000/.opam/4.14.2/lib/ordering -I /Users/mac1000/.opam/4.14.2/lib/pp -I /Users/mac1000/.opam/4.14.2/lib/re -I /Users/mac1000/.opam/4.14.2/lib/toml -I /Users/mac1000/.opam/4.14.2/lib/xdg -I env/src/.alice_env.objs/byte -I error/src/.alice_error.objs/byte -I hierarchy/src/.alice_hierarchy.objs/byte -I io/src/.alice_io.objs/byte -I log/src/.alice_log.objs/byte -I package_meta/src/.alice_package_meta.objs/byte -I print/src/.alice_print.objs/byte -I stdlib/src/.alice_stdlib.objs/byte -I ui/src/.alice_ui.objs/byte -intf-suffix .ml -no-alias-deps -open Alice_manifest__ -o manifest/src/.alice_manifest.objs/byte/alice_manifest__Dependencies.cmo -c -impl manifest/src/dependencies.ml)
# File "manifest/src/dependencies.ml", line 7, characters 2-26:
# 7 |   Toml.Types.Table.to_list toml
#       ^^^^^^^^^^^^^^^^^^^^^^^^
# Error: Unbound value Toml.Types.Table.to_list
# (cd _build/default && /Users/mac1000/.opam/4.14.2/bin/ocamlc.opt -w -40 -g -bin-annot -I manifest/src/.alice_manifest.objs/byte -I /Users/mac1000/.opam/4.14.2/lib/ISO8601 -I /Users/mac1000/.opam/4.14.2/lib/dyn -I /Users/mac1000/.opam/4.14.2/lib/fileutils -I /Users/mac1000/.opam/4.14.2/lib/ordering -I /Users/mac1000/.opam/4.14.2/lib/pp -I /Users/mac1000/.opam/4.14.2/lib/re -I /Users/mac1000/.opam/4.14.2/lib/toml -I /Users/mac1000/.opam/4.14.2/lib/xdg -I env/src/.alice_env.objs/byte -I error/src/.alice_error.objs/byte -I hierarchy/src/.alice_hierarchy.objs/byte -I io/src/.alice_io.objs/byte -I log/src/.alice_log.objs/byte -I package_meta/src/.alice_package_meta.objs/byte -I print/src/.alice_print.objs/byte -I stdlib/src/.alice_stdlib.objs/byte -I ui/src/.alice_ui.objs/byte -intf-suffix .ml -no-alias-deps -open Alice_manifest__ -o manifest/src/.alice_manifest.objs/byte/alice_manifest__Package.cmo -c -impl manifest/src/package.ml)
# File "manifest/src/package.ml", line 46, characters 2-26:
# 46 |   Toml.Types.Table.of_list fields
#        ^^^^^^^^^^^^^^^^^^^^^^^^
# Error: Unbound value Toml.Types.Table.of_list
# (cd _build/default && /Users/mac1000/.opam/4.14.2/bin/ocamlc.opt -w -40 -g -bin-annot -I manifest/src/.alice_manifest.objs/byte -I /Users/mac1000/.opam/4.14.2/lib/ISO8601 -I /Users/mac1000/.opam/4.14.2/lib/dyn -I /Users/mac1000/.opam/4.14.2/lib/fileutils -I /Users/mac1000/.opam/4.14.2/lib/ordering -I /Users/mac1000/.opam/4.14.2/lib/pp -I /Users/mac1000/.opam/4.14.2/lib/re -I /Users/mac1000/.opam/4.14.2/lib/toml -I /Users/mac1000/.opam/4.14.2/lib/xdg -I env/src/.alice_env.objs/byte -I error/src/.alice_error.objs/byte -I hierarchy/src/.alice_hierarchy.objs/byte -I io/src/.alice_io.objs/byte -I log/src/.alice_log.objs/byte -I package_meta/src/.alice_package_meta.objs/byte -I print/src/.alice_print.objs/byte -I stdlib/src/.alice_stdlib.objs/byte -I ui/src/.alice_ui.objs/byte -intf-suffix .ml -no-alias-deps -open Alice_manifest__ -o manifest/src/.alice_manifest.objs/byte/alice_manifest__Package_id.cmo -c -impl manifest/src/package_id.ml)
# File "manifest/src/package_id.ml", line 52, characters 2-26:
# 52 |   Toml.Types.Table.of_list fields
#        ^^^^^^^^^^^^^^^^^^^^^^^^
# Error: Unbound value Toml.Types.Table.of_list
# (cd _build/default && /Users/mac1000/.opam/4.14.2/bin/ocamlc.opt -w -40 -g -bin-annot -I engine/src/.alice_engine.objs/byte -I /Users/mac1000/.opam/4.14.2/lib/ISO8601 -I /Users/mac1000/.opam/4.14.2/lib/dyn -I /Users/mac1000/.opam/4.14.2/lib/fileutils -I /Users/mac1000/.opam/4.14.2/lib/ordering -I /Users/mac1000/.opam/4.14.2/lib/pp -I /Users/mac1000/.opam/4.14.2/lib/re -I /Users/mac1000/.opam/4.14.2/lib/toml -I /Users/mac1000/.opam/4.14.2/lib/xdg -I dag/src/.alice_dag.objs/byte -I env/src/.alice_env.objs/byte -I error/src/.alice_error.objs/byte -I graphviz/src/.alice_graphviz.objs/byte -I hierarchy/src/.alice_hierarchy.objs/byte -I install_dir/src/.alice_install_dir.objs/byte -I io/src/.alice_io.objs/byte -I log/src/.alice_log.objs/byte -I manifest/src/.alice_manifest.objs/byte -I ocamldep/src/.alice_ocamldep.objs/byte -I package/src/.alice_package.objs/byte -I package_meta/src/.alice_package_meta.objs/byte -I print/src/.alice_print.objs/byte -I stdlib/src/.alice_stdlib.objs/byte -I ui/src/.alice_ui.objs/byte -I which/src/.alice_which.objs/byte -intf-suffix .ml -no-alias-deps -open Alice_engine__ -o engine/src/.alice_engine.objs/byte/alice_engine__Build_graph.cmo -c -impl engine/src/build_graph.ml)
# File "engine/src/build_graph.ml", line 130, characters 2-36:
# 130 |   Absolute_path.Non_root_map.to_list deps
#         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
# Error: Unbound value Absolute_path.Non_root_map.to_list
# Hint: Did you mean of_list?
# (cd _build/default && /Users/mac1000/.opam/4.14.2/bin/ocamlc.opt -w -40 -g -bin-annot -I engine/src/.alice_engine.objs/byte -I /Users/mac1000/.opam/4.14.2/lib/ISO8601 -I /Users/mac1000/.opam/4.14.2/lib/dyn -I /Users/mac1000/.opam/4.14.2/lib/fileutils -I /Users/mac1000/.opam/4.14.2/lib/ordering -I /Users/mac1000/.opam/4.14.2/lib/pp -I /Users/mac1000/.opam/4.14.2/lib/re -I /Users/mac1000/.opam/4.14.2/lib/toml -I /Users/mac1000/.opam/4.14.2/lib/xdg -I dag/src/.alice_dag.objs/byte -I env/src/.alice_env.objs/byte -I error/src/.alice_error.objs/byte -I graphviz/src/.alice_graphviz.objs/byte -I hierarchy/src/.alice_hierarchy.objs/byte -I install_dir/src/.alice_install_dir.objs/byte -I io/src/.alice_io.objs/byte -I log/src/.alice_log.objs/byte -I manifest/src/.alice_manifest.objs/byte -I ocamldep/src/.alice_ocamldep.objs/byte -I package/src/.alice_package.objs/byte -I package_meta/src/.alice_package_meta.objs/byte -I print/src/.alice_print.objs/byte -I stdlib/src/.alice_stdlib.objs/byte -I ui/src/.alice_ui.objs/byte -I which/src/.alice_which.objs/byte -intf-suffix .ml -no-alias-deps -open Alice_engine__ -o engine/src/.alice_engine.objs/byte/alice_engine__Scheduler.cmo -c -impl engine/src/scheduler.ml)
# File "engine/src/scheduler.ml", line 288, characters 15-41:
# 288 |               (Generated_file.Set.to_list outputs
#                      ^^^^^^^^^^^^^^^^^^^^^^^^^^
# Error: Unbound value Generated_file.Set.to_list
# Hint: Did you mean of_list?



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build alice 0.1.0
+- 
+- The following changes have been performed
| - install climate      0.8.6
| - install dune         3.20.2
| - install dyn          3.20.2
| - install fileutils    0.6.6
| - install ISO8601      0.2.6
| - install menhir       20250912
| - install menhirCST    20250912
| - install menhirLib    20250912
| - install menhirSdk    20250912
| - install ordering     3.20.2
| - install pp           2.0.0
| - install re           1.14.0
| - install sha          1.15.4
| - install stdlib-shims 0.3.0
| - install toml         7.1.0
| - install xdg          3.20.2
+- 
# To update the current shell environment, run: eval $(opam env)

The former state can be restored with:
    /usr/local/bin/opam switch import "/Users/mac1000/.opam/4.14.2/.opam-switch/backup/state-20251108060119.export"
[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 alice.0.1.0;
        res=$?;
        test "$res" != 31 && exit "$res";
        export OPAMCLI=2.0;
        build_dir=$(opam var prefix)/.opam-switch/build;
        failed=$(ls "$build_dir");
        partial_fails="";
        for pkg in $failed; do
          if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'alice.0.1.0' && 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-08 06:03.02: Job failed: Failed: Build failed
2025-11-08 06:03.02: Log analysis:
2025-11-08 06:03.02: >>> 
[ERROR] The compilation of alice.0.1.0 failed at "dune build -p alice -j 11 @install".
 (score = 20)
2025-11-08 06:03.02: >>> 
# Error: Unbound value to_list
 (score = 48)
2025-11-08 06:03.02: >>> 
# Error: Unbound value to_list
 (score = 48)
2025-11-08 06:03.02: >>> 
# Error: Unbound value to_list
 (score = 48)
2025-11-08 06:03.02: >>> 
# Error: Unbound value to_list
 (score = 48)
2025-11-08 06:03.02: >>> 
# Error: Unbound value String.Set.to_list
 (score = 48)
2025-11-08 06:03.02: >>> 
# Error: Unbound value Node.Name.Set.to_list
 (score = 48)
2025-11-08 06:03.02: >>> 
# Error: Unbound value List.is_empty
 (score = 48)
2025-11-08 06:03.02: >>> 
# Error: Unbound value List.is_empty
 (score = 48)
2025-11-08 06:03.02: >>> 
# Error: Unbound value In_channel.input_lines
 (score = 48)
2025-11-08 06:03.02: >>> 
# Error: Unbound value Toml.Types.Table.to_list
 (score = 48)
2025-11-08 06:03.02: >>> 
# Error: Unbound value Toml.Types.Table.of_list
 (score = 48)
2025-11-08 06:03.02: >>> 
# Error: Unbound value Toml.Types.Table.of_list
 (score = 48)
2025-11-08 06:03.02: >>> 
# Error: Unbound value Absolute_path.Non_root_map.to_list
 (score = 48)
2025-11-08 06:03.02: >>> 
# Error: Unbound value Generated_file.Set.to_list
 (score = 48)
2025-11-08 06:03.02: Unbound value to_list