Skip to content

Commit 181ce0e

Browse files
committed
Disable ninja on macOS CI
Should be re-enabled when we have a recipe for installing ninja on macOS.
1 parent 30b7dac commit 181ce0e

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ jobs:
583583
- name: dist-x86_64-apple
584584
env:
585585
SCRIPT: "./x.py dist"
586-
RUST_CONFIGURE_ARGS: "--target=aarch64-apple-ios,x86_64-apple-ios --enable-full-tools --enable-sanitizers --enable-profiler --set rust.jemalloc"
586+
RUST_CONFIGURE_ARGS: "--target=aarch64-apple-ios,x86_64-apple-ios --enable-full-tools --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false"
587587
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
588588
MACOSX_DEPLOYMENT_TARGET: 10.7
589589
NO_LLVM_ASSERTIONS: 1
@@ -593,7 +593,7 @@ jobs:
593593
- name: dist-x86_64-apple-alt
594594
env:
595595
SCRIPT: "./x.py dist"
596-
RUST_CONFIGURE_ARGS: "--enable-extended --enable-profiler --set rust.jemalloc"
596+
RUST_CONFIGURE_ARGS: "--enable-extended --enable-profiler --set rust.jemalloc --set llvm.ninja=false"
597597
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
598598
MACOSX_DEPLOYMENT_TARGET: 10.7
599599
NO_LLVM_ASSERTIONS: 1
@@ -602,7 +602,7 @@ jobs:
602602
- name: x86_64-apple
603603
env:
604604
SCRIPT: "./x.py --stage 2 test"
605-
RUST_CONFIGURE_ARGS: "--build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc"
605+
RUST_CONFIGURE_ARGS: "--build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false"
606606
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
607607
MACOSX_DEPLOYMENT_TARGET: 10.8
608608
MACOSX_STD_DEPLOYMENT_TARGET: 10.7

src/ci/azure-pipelines/auto.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
# version that we're using, 8.2, cannot compile LLVM for OSX 10.7.
3838
x86_64-apple:
3939
SCRIPT: ./x.py --stage 2 test
40-
INITIAL_RUST_CONFIGURE_ARGS: --build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc
40+
INITIAL_RUST_CONFIGURE_ARGS: --build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false
4141
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
4242
MACOSX_DEPLOYMENT_TARGET: 10.8
4343
MACOSX_STD_DEPLOYMENT_TARGET: 10.7
@@ -46,7 +46,7 @@ jobs:
4646

4747
dist-x86_64-apple:
4848
SCRIPT: ./x.py dist
49-
INITIAL_RUST_CONFIGURE_ARGS: --target=aarch64-apple-ios,x86_64-apple-ios --enable-full-tools --enable-sanitizers --enable-profiler --set rust.jemalloc
49+
INITIAL_RUST_CONFIGURE_ARGS: --target=aarch64-apple-ios,x86_64-apple-ios --enable-full-tools --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false
5050
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
5151
MACOSX_DEPLOYMENT_TARGET: 10.7
5252
NO_LLVM_ASSERTIONS: 1
@@ -55,7 +55,7 @@ jobs:
5555

5656
dist-x86_64-apple-alt:
5757
SCRIPT: ./x.py dist
58-
INITIAL_RUST_CONFIGURE_ARGS: --enable-extended --enable-profiler --set rust.jemalloc
58+
INITIAL_RUST_CONFIGURE_ARGS: --enable-extended --enable-profiler --set rust.jemalloc --set llvm.ninja=false
5959
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
6060
MACOSX_DEPLOYMENT_TARGET: 10.7
6161
NO_LLVM_ASSERTIONS: 1

src/ci/github-actions/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ jobs:
603603
- name: dist-x86_64-apple
604604
env:
605605
SCRIPT: ./x.py dist
606-
RUST_CONFIGURE_ARGS: --target=aarch64-apple-ios,x86_64-apple-ios --enable-full-tools --enable-sanitizers --enable-profiler --set rust.jemalloc
606+
RUST_CONFIGURE_ARGS: --target=aarch64-apple-ios,x86_64-apple-ios --enable-full-tools --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false
607607
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
608608
MACOSX_DEPLOYMENT_TARGET: 10.7
609609
NO_LLVM_ASSERTIONS: 1
@@ -614,7 +614,7 @@ jobs:
614614
- name: dist-x86_64-apple-alt
615615
env:
616616
SCRIPT: ./x.py dist
617-
RUST_CONFIGURE_ARGS: --enable-extended --enable-profiler --set rust.jemalloc
617+
RUST_CONFIGURE_ARGS: --enable-extended --enable-profiler --set rust.jemalloc --set llvm.ninja=false
618618
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
619619
MACOSX_DEPLOYMENT_TARGET: 10.7
620620
NO_LLVM_ASSERTIONS: 1
@@ -624,7 +624,7 @@ jobs:
624624
- name: x86_64-apple
625625
env:
626626
SCRIPT: ./x.py --stage 2 test
627-
RUST_CONFIGURE_ARGS: --build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc
627+
RUST_CONFIGURE_ARGS: --build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false
628628
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
629629
MACOSX_DEPLOYMENT_TARGET: 10.8
630630
MACOSX_STD_DEPLOYMENT_TARGET: 10.7

0 commit comments

Comments
 (0)