File tree 2 files changed +0
-12
lines changed
2 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -186,9 +186,6 @@ jobs:
186
186
- uses : actions/checkout@v4
187
187
with :
188
188
submodules : ' recursive'
189
- - name : Install ninja-build tool
190
- if : ${{ matrix.target == 'aarch64-pc-windows-msvc' }}
191
- uses : seanmiddleditch/gha-setup-ninja@v4
192
189
- uses : dtolnay/rust-toolchain@master
193
190
id : toolchain
194
191
with :
Original file line number Diff line number Diff line change @@ -21,11 +21,6 @@ fn test_clang_cl_command() -> bool {
21
21
execute_command ( "clang-cl" . as_ref ( ) , & [ "--version" . as_ref ( ) ] ) . status
22
22
}
23
23
24
- fn test_ninja_command ( ) -> bool {
25
- execute_command ( "ninja" . as_ref ( ) , & [ "--version" . as_ref ( ) ] ) . status
26
- || execute_command ( "ninja-build" . as_ref ( ) , & [ "--version" . as_ref ( ) ] ) . status
27
- }
28
-
29
24
fn test_nasm_command ( ) -> bool {
30
25
execute_command ( "nasm" . as_ref ( ) , & [ "-version" . as_ref ( ) ] ) . status
31
26
}
@@ -264,10 +259,6 @@ impl crate::Builder for CmakeBuilder {
264
259
missing_dependency = true ;
265
260
}
266
261
if target_arch ( ) == "aarch64" && target_env ( ) == "msvc" {
267
- if !test_ninja_command ( ) {
268
- eprintln ! ( "Missing dependency: ninja" ) ;
269
- missing_dependency = true ;
270
- }
271
262
if !test_clang_cl_command ( ) {
272
263
eprintln ! ( "Missing dependency: clang-cl" ) ;
273
264
missing_dependency = true ;
You can’t perform that action at this time.
0 commit comments