Skip to content

Commit d47a014

Browse files
committed
Install Ninja and add to path Windows
1 parent eff4a5d commit d47a014

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/Windows.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)