Skip to content

Commit 433dbc2

Browse files
committed
Remove ninja
1 parent 77346d8 commit 433dbc2

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

.github/workflows/cross.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,6 @@ jobs:
186186
- uses: actions/checkout@v4
187187
with:
188188
submodules: 'recursive'
189-
- name: Install ninja-build tool
190-
if: ${{ matrix.target == 'aarch64-pc-windows-msvc' }}
191-
uses: seanmiddleditch/gha-setup-ninja@v4
192189
- uses: dtolnay/rust-toolchain@master
193190
id: toolchain
194191
with:

aws-lc-sys/builder/cmake_builder.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,6 @@ fn test_clang_cl_command() -> bool {
2121
execute_command("clang-cl".as_ref(), &["--version".as_ref()]).status
2222
}
2323

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-
2924
fn test_nasm_command() -> bool {
3025
execute_command("nasm".as_ref(), &["-version".as_ref()]).status
3126
}
@@ -264,10 +259,6 @@ impl crate::Builder for CmakeBuilder {
264259
missing_dependency = true;
265260
}
266261
if target_arch() == "aarch64" && target_env() == "msvc" {
267-
if !test_ninja_command() {
268-
eprintln!("Missing dependency: ninja");
269-
missing_dependency = true;
270-
}
271262
if !test_clang_cl_command() {
272263
eprintln!("Missing dependency: clang-cl");
273264
missing_dependency = true;

0 commit comments

Comments
 (0)