My aggregated monorepo of OCaml code, automaintained
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Filter compiler packages from build targets

Compiler packages (ocaml, ocaml-base-compiler, ocaml-variants, etc.)
were being included in the target list and solved/built as regular
packages, conflicting with the pinned --ocaml-version.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+6
+6
day11/bin/cmd_batch.ml
··· 5 5 6 6 let find_latest_versions git_packages = 7 7 let all_names = Day11_solver.Git_packages.all_names git_packages in 8 + (* Filter out compiler packages — they're built as part of the 9 + base image, not as regular targets *) 10 + let compiler_names = Day11_layer.Opamh.compiler_packages in 11 + let all_names = List.filter (fun name -> 12 + not (List.mem name compiler_names) 13 + ) all_names in 8 14 List.filter_map (fun name -> 9 15 let versions = Day11_solver.Git_packages.get_versions git_packages name in 10 16 let non_avoided =