File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,9 @@ jobs:
111
111
if : ${{ steps.cache.outputs.cache-hit != 'true' }}
112
112
run : |
113
113
choco install findutils
114
+ choco install ninja
114
115
$env:PATH="C:\Program Files (x86)\GnuWin32\bin;$env:PATH"
116
+ $env:PATH="C:\Program Files (x86)\Ninja\bin;$env:PATH"
115
117
116
118
- name : Build LLVM/Cling on Windows systems if the cache is invalid
117
119
if : ${{ steps.cache.outputs.cache-hit != 'true' }}
@@ -302,6 +304,12 @@ jobs:
302
304
echo "Unsupported compiler - fix YAML file"
303
305
}
304
306
307
+ - name : Install deps on Windows
308
+ if : ${{ steps.cache.outputs.cache-hit != 'true' }}
309
+ run : |
310
+ choco install ninja
311
+ $env:PATH="C:\Program Files (x86)\Ninja\bin;$env:PATH"
312
+
305
313
- name : Restore Cache LLVM/Clang runtime build directory
306
314
uses : actions/cache/restore@v4
307
315
id : cache
You can’t perform that action at this time.
0 commit comments