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:
111111 if : ${{ steps.cache.outputs.cache-hit != 'true' }}
112112 run : |
113113 choco install findutils
114+ choco install ninja
114115 $env:PATH="C:\Program Files (x86)\GnuWin32\bin;$env:PATH"
116+ $env:PATH="C:\Program Files (x86)\Ninja\bin;$env:PATH"
115117
116118 - name : Build LLVM/Cling on Windows systems if the cache is invalid
117119 if : ${{ steps.cache.outputs.cache-hit != 'true' }}
@@ -302,6 +304,12 @@ jobs:
302304 echo "Unsupported compiler - fix YAML file"
303305 }
304306
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+
305313 - name : Restore Cache LLVM/Clang runtime build directory
306314 uses : actions/cache/restore@v4
307315 id : cache
You can’t perform that action at this time.
0 commit comments