We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19674d9 commit c086c44Copy full SHA for c086c44
.github/workflows/test.yml
@@ -62,6 +62,13 @@ jobs:
62
$env:CMAKE_GENERATOR = 'Ninja'
63
$env:CMAKE_BUILD_PARALLEL_LEVEL = '2'
64
65
+ # *** Add the conda env Scripts (where pip dropped ninja.exe) ***
66
+ $env:PATH = "C:\Miniconda\envs\zerod\Scripts;$env:PATH"
67
+
68
+ # *** Tell CMake exactly which ninja to use (belt-and-suspenders) ***
69
+ $ninja = "C:\Miniconda\envs\zerod\Scripts\ninja.exe"
70
+ if (Test-Path $ninja) { $env:CMAKE_MAKE_PROGRAM = $ninja }
71
72
$env:CMAKE_ARGS = @(
73
'-DCMAKE_POLICY_DEFAULT_CMP0077=NEW',
74
'-DBUILD_TESTING=OFF',
0 commit comments