File tree 2 files changed +11
-3
lines changed
2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,11 @@ jobs:
128
128
version : " v0.7.5"
129
129
130
130
- name : Install build dependencies
131
- run : choco install --no-progress ninja
131
+ run : |
132
+ Invoke-WebRequest https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip -OutFile ninja-win.zip -MaximumRetryCount 10
133
+ Expand-Archive -Force ninja-win.zip
134
+ # Add it to the GitHub Path so it would be available in the subsequent steps
135
+ Add-Content -Path $env:GITHUB_PATH -Value "${{ github.workspace }}/ninja-win"
132
136
133
137
#
134
138
# Build
Original file line number Diff line number Diff line change @@ -106,10 +106,14 @@ jobs:
106
106
- name : Install sccache
107
107
uses : mozilla-actions/sccache-action@v0.0.4
108
108
with :
109
- version : " v0.5.4 "
109
+ version : " v0.7.5 "
110
110
111
111
- name : Install build dependencies
112
- run : choco install --no-progress ninja
112
+ run : |
113
+ Invoke-WebRequest https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip -OutFile ninja-win.zip -MaximumRetryCount 10
114
+ Expand-Archive -Force ninja-win.zip
115
+ # Add it to the GitHub Path so it would be available in the subsequent steps
116
+ Add-Content -Path $env:GITHUB_PATH -Value "${{ github.workspace }}/ninja-win"
113
117
114
118
- name : Install python dependencies
115
119
run : |
You can’t perform that action at this time.
0 commit comments