From 6c29b02fcb251ca2437d7c56ce78fca29d50ed73 Mon Sep 17 00:00:00 2001 From: Sora Morimoto Date: Mon, 21 Apr 2025 15:33:04 +0900 Subject: [PATCH] Use builtin-0install as the Solver Signed-off-by: Sora Morimoto --- dist/index.cjs | 1 + packages/setup-ocaml/src/installer.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/dist/index.cjs b/dist/index.cjs index 0e28a863..12adc6a0 100644 --- a/dist/index.cjs +++ b/dist/index.cjs @@ -137128,6 +137128,7 @@ async function installer() { core6.exportVariable("OPAMCONFIRMLEVEL", "unsafe-yes"); core6.exportVariable("OPAMDOWNLOADJOBS", os2.availableParallelism()); core6.exportVariable("OPAMERRLOGLEN", 0); + core6.exportVariable("OPAMEXTERNALSOLVER", "builtin-0install"); core6.exportVariable("OPAMPRECISETRACKING", 1); core6.exportVariable("OPAMRETRIES", 10); core6.exportVariable("OPAMROOT", OPAM_ROOT); diff --git a/packages/setup-ocaml/src/installer.ts b/packages/setup-ocaml/src/installer.ts index 52ead556..e1efe91a 100644 --- a/packages/setup-ocaml/src/installer.ts +++ b/packages/setup-ocaml/src/installer.ts @@ -40,6 +40,7 @@ export async function installer() { core.exportVariable("OPAMCONFIRMLEVEL", "unsafe-yes"); core.exportVariable("OPAMDOWNLOADJOBS", os.availableParallelism()); core.exportVariable("OPAMERRLOGLEN", 0); + core.exportVariable("OPAMEXTERNALSOLVER", "builtin-0install"); core.exportVariable("OPAMPRECISETRACKING", 1); core.exportVariable("OPAMRETRIES", 10); core.exportVariable("OPAMROOT", OPAM_ROOT);