Disable docs on aarch64-apple-darwin.

This builder is the slowest in the fleet. This should cut a considerable
amount of time. The manifest should now include the docs from
x86_64-apple-darwin. Although those docs are slightly different, it
should be close enough. When aarch64-apple-darwin heads towards tier 1,
we can revisit whether or not to re-enable the docs.
This commit is contained in:
Eric Huss 2022-01-17 20:18:56 -08:00
parent 52fdd2dd86
commit 6a1099c202
3 changed files with 3 additions and 3 deletions

View file

@ -320,7 +320,7 @@ jobs:
- name: dist-aarch64-apple - name: dist-aarch64-apple
env: env:
SCRIPT: "./x.py dist --stage 2" SCRIPT: "./x.py dist --stage 2"
RUST_CONFIGURE_ARGS: "--build=x86_64-apple-darwin --host=aarch64-apple-darwin --target=aarch64-apple-darwin --enable-full-tools --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false" RUST_CONFIGURE_ARGS: "--build=x86_64-apple-darwin --host=aarch64-apple-darwin --target=aarch64-apple-darwin --enable-full-tools --enable-sanitizers --enable-profiler --disable-docs --set rust.jemalloc --set llvm.ninja=false"
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1 RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
USE_XCODE_CLANG: 1 USE_XCODE_CLANG: 1
MACOSX_DEPLOYMENT_TARGET: 11.0 MACOSX_DEPLOYMENT_TARGET: 11.0

View file

@ -1483,11 +1483,10 @@ fn filter(contents: &str, marker: &str) -> String {
}; };
prepare("rustc"); prepare("rustc");
prepare("cargo"); prepare("cargo");
prepare("rust-docs");
prepare("rust-std"); prepare("rust-std");
prepare("rust-analysis"); prepare("rust-analysis");
prepare("clippy"); prepare("clippy");
for tool in &["rust-demangler", "rls", "rust-analyzer", "miri"] { for tool in &["rust-docs", "rust-demangler", "rls", "rust-analyzer", "miri"] {
if built_tools.contains(tool) { if built_tools.contains(tool) {
prepare(tool); prepare(tool);
} }

View file

@ -496,6 +496,7 @@ jobs:
--enable-full-tools --enable-full-tools
--enable-sanitizers --enable-sanitizers
--enable-profiler --enable-profiler
--disable-docs
--set rust.jemalloc --set rust.jemalloc
--set llvm.ninja=false --set llvm.ninja=false
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1 RUSTC_RETRY_LINKER_ON_SEGFAULT: 1