From e26c71a0a7514ab152fa7a47b053e46ee7d1fa80 Mon Sep 17 00:00:00 2001 From: Pietro Albini Date: Thu, 30 May 2019 17:34:04 +0200 Subject: [PATCH 1/6] ci: add some spacing in the azure images list --- .azure-pipelines/auto.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.azure-pipelines/auto.yml b/.azure-pipelines/auto.yml index 4f000e79bd015..5bdcc9bf3c658 100644 --- a/.azure-pipelines/auto.yml +++ b/.azure-pipelines/auto.yml @@ -126,26 +126,37 @@ jobs: asmjs: IMAGE: asmjs + i686-gnu: IMAGE: i686-gnu + i686-gnu-nopt: IMAGE: i686-gnu-nopt + test-various: IMAGE: test-various + x86_64-gnu: IMAGE: x86_64-gnu + x86_64-gnu-full-bootstrap: IMAGE: x86_64-gnu-full-bootstrap + x86_64-gnu-aux: IMAGE: x86_64-gnu-aux + x86_64-gnu-tools: IMAGE: x86_64-gnu-tools + x86_64-gnu-debug: IMAGE: x86_64-gnu-debug + x86_64-gnu-nopt: IMAGE: x86_64-gnu-nopt + x86_64-gnu-distcheck: IMAGE: x86_64-gnu-distcheck + mingw-check: IMAGE: mingw-check From f8f4972ce91c01fe389ea61ff87dd29849d7568d Mon Sep 17 00:00:00 2001 From: Pietro Albini Date: Thu, 30 May 2019 17:37:00 +0200 Subject: [PATCH 2/6] ci: split slow linux jobs on azure --- .azure-pipelines/auto.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.azure-pipelines/auto.yml b/.azure-pipelines/auto.yml index 5bdcc9bf3c658..2d9bf975bb740 100644 --- a/.azure-pipelines/auto.yml +++ b/.azure-pipelines/auto.yml @@ -127,17 +127,29 @@ jobs: asmjs: IMAGE: asmjs - i686-gnu: + i686-gnu-1: IMAGE: i686-gnu + SCRIPT: make ci-subset-1 + i686-gnu-2: + IMAGE: i686-gnu + SCRIPT: make ci-subset-2 - i686-gnu-nopt: + i686-gnu-nopt-1: + IMAGE: i686-gnu-nopt + SCRIPT: make ci-subset-1 + i686-gnu-nopt-2: IMAGE: i686-gnu-nopt + SCRIPT: make ci-subset-2 test-various: IMAGE: test-various - x86_64-gnu: + x86_64-gnu-1: + IMAGE: x86_64-gnu + SCRIPT: make ci-subset-1 + x86_64-gnu-2: IMAGE: x86_64-gnu + SCRIPT: make ci-subset-2 x86_64-gnu-full-bootstrap: IMAGE: x86_64-gnu-full-bootstrap From 546cd8ff9251c02b79b51a8674980cf40c753b95 Mon Sep 17 00:00:00 2001 From: Pietro Albini Date: Thu, 30 May 2019 17:44:06 +0200 Subject: [PATCH 3/6] ci: split cargo out of x86_64-gnu-aux on azure --- .azure-pipelines/auto.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.azure-pipelines/auto.yml b/.azure-pipelines/auto.yml index 2d9bf975bb740..6f5d2febfdfad 100644 --- a/.azure-pipelines/auto.yml +++ b/.azure-pipelines/auto.yml @@ -156,6 +156,11 @@ jobs: x86_64-gnu-aux: IMAGE: x86_64-gnu-aux + SCRIPT: make check-aux EXCLUDE_CARGO=1 + + x86_64-gnu-cargo: + IMAGE: x86_64-gnu-aux + SCRIPT: ./x.py test src/tools/cargotest src/tools/cargo x86_64-gnu-tools: IMAGE: x86_64-gnu-tools From 7360847a009c94608c1c834d1959bb95f8fe9587 Mon Sep 17 00:00:00 2001 From: Pietro Albini Date: Thu, 30 May 2019 21:26:59 +0200 Subject: [PATCH 4/6] ci: split distcheck job on azure --- .azure-pipelines/auto.yml | 6 +++++- src/bootstrap/builder/tests.rs | 2 ++ src/bootstrap/flags.rs | 17 +++++++++++++++++ src/bootstrap/test.rs | 2 +- 4 files changed, 25 insertions(+), 2 deletions(-) diff --git a/.azure-pipelines/auto.yml b/.azure-pipelines/auto.yml index 6f5d2febfdfad..8e408785760d0 100644 --- a/.azure-pipelines/auto.yml +++ b/.azure-pipelines/auto.yml @@ -171,8 +171,12 @@ jobs: x86_64-gnu-nopt: IMAGE: x86_64-gnu-nopt - x86_64-gnu-distcheck: + x86_64-gnu-distcheck-1: IMAGE: x86_64-gnu-distcheck + SCRIPT: ./x.py test distcheck --distcheck-make ci-subset-1 + x86_64-gnu-distcheck-2: + IMAGE: x86_64-gnu-distcheck + SCRIPT: ./x.py test distcheck --distcheck-make ci-subset-2 mingw-check: IMAGE: mingw-check diff --git a/src/bootstrap/builder/tests.rs b/src/bootstrap/builder/tests.rs index 46c58d118f743..9484ca4625364 100644 --- a/src/bootstrap/builder/tests.rs +++ b/src/bootstrap/builder/tests.rs @@ -598,6 +598,7 @@ fn test_with_no_doc_stage0() { bless: false, compare_mode: None, rustfix_coverage: false, + distcheck_make: None, }; let build = Build::new(config); @@ -640,6 +641,7 @@ fn test_exclude() { bless: false, compare_mode: None, rustfix_coverage: false, + distcheck_make: None, }; let build = Build::new(config); diff --git a/src/bootstrap/flags.rs b/src/bootstrap/flags.rs index 4774c0a51c09a..e4712c4e9c277 100644 --- a/src/bootstrap/flags.rs +++ b/src/bootstrap/flags.rs @@ -63,6 +63,7 @@ pub enum Subcommand { fail_fast: bool, doc_tests: DocTests, rustfix_coverage: bool, + distcheck_make: Option, }, Bench { paths: Vec, @@ -205,6 +206,12 @@ To learn more about a subcommand, run `./x.py -h`" "enable this to generate a Rustfix coverage file, which is saved in \ `//rustfix_missing_coverage.txt`", ); + opts.optopt( + "", + "distcheck-make", + "the Makefile target to use for distcheck (default: check)", + "MAKEFILE TARGET", + ); } "bench" => { opts.optmulti("", "test-args", "extra arguments", "ARGS"); @@ -412,6 +419,7 @@ Arguments: } else { DocTests::Yes }, + distcheck_make: matches.opt_str("distcheck-make"), }, "bench" => Subcommand::Bench { paths, @@ -524,6 +532,15 @@ impl Subcommand { _ => None, } } + + pub fn distcheck_make(&self) -> Option<&str> { + match *self { + Subcommand::Test { + ref distcheck_make, .. + } => distcheck_make.as_ref().map(|s| s.as_str()), + _ => None, + } + } } fn split(s: &[String]) -> Vec { diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index 2f9bd067c3115..5b0d4dc42a9c2 100644 --- a/src/bootstrap/test.rs +++ b/src/bootstrap/test.rs @@ -1987,7 +1987,7 @@ impl Step for Distcheck { ); builder.run( Command::new(build_helper::make(&builder.config.build)) - .arg("check") + .arg(builder.config.cmd.distcheck_make().unwrap_or("check")) .current_dir(&dir), ); From 199616fd3b81f7bdc677c3740c21adba335acd23 Mon Sep 17 00:00:00 2001 From: Pietro Albini Date: Thu, 30 May 2019 21:52:53 +0200 Subject: [PATCH 5/6] ci: also split x86_64-gnu-nopt --- .azure-pipelines/auto.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.azure-pipelines/auto.yml b/.azure-pipelines/auto.yml index 8e408785760d0..1b01f290d83f6 100644 --- a/.azure-pipelines/auto.yml +++ b/.azure-pipelines/auto.yml @@ -168,8 +168,12 @@ jobs: x86_64-gnu-debug: IMAGE: x86_64-gnu-debug - x86_64-gnu-nopt: + x86_64-gnu-nopt-1: IMAGE: x86_64-gnu-nopt + SCRIPT: make ci-subset-1 + x86_64-gnu-nopt-2: + IMAGE: x86_64-gnu-nopt + SCRIPT: make ci-subset-2 x86_64-gnu-distcheck-1: IMAGE: x86_64-gnu-distcheck From 9d51db52eb5e427370ddfbeec4a59e1d43609cb4 Mon Sep 17 00:00:00 2001 From: Pietro Albini Date: Tue, 25 Jun 2019 23:00:24 +0200 Subject: [PATCH 6/6] ci: disable extra builders --- .azure-pipelines/auto.yml | 272 +++++++++++++++++++------------------- .azure-pipelines/try.yml | 100 +++++++------- 2 files changed, 186 insertions(+), 186 deletions(-) diff --git a/.azure-pipelines/auto.yml b/.azure-pipelines/auto.yml index 1b01f290d83f6..f4e2c6e0627ee 100644 --- a/.azure-pipelines/auto.yml +++ b/.azure-pipelines/auto.yml @@ -248,139 +248,139 @@ jobs: -- job: Windows - timeoutInMinutes: 600 - pool: - vmImage: 'vs2017-win2016' - steps: - - template: steps/run.yml - strategy: - matrix: - # 32/64 bit MSVC tests - x86_64-msvc-1: - MSYS_BITS: 64 - RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-profiler - SCRIPT: make ci-subset-1 - # FIXME(#59637) - NO_DEBUG_ASSERTIONS: 1 - NO_LLVM_ASSERTIONS: 1 - x86_64-msvc-2: - MSYS_BITS: 64 - RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-profiler - SCRIPT: make ci-subset-2 - i686-msvc-1: - MSYS_BITS: 32 - RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc - SCRIPT: make ci-subset-1 - i686-msvc-2: - MSYS_BITS: 32 - RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc - SCRIPT: make ci-subset-2 - # MSVC aux tests - x86_64-msvc-aux: - MSYS_BITS: 64 - RUST_CHECK_TARGET: check-aux EXCLUDE_CARGO=1 - RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc - x86_64-msvc-cargo: - MSYS_BITS: 64 - SCRIPT: python x.py test src/tools/cargotest src/tools/cargo - RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc - VCVARS_BAT: vcvars64.bat - # MSVC tools tests - x86_64-msvc-tools: - MSYS_BITS: 64 - SCRIPT: src/ci/docker/x86_64-gnu-tools/checktools.sh x.py /tmp/toolstates.json windows - RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --save-toolstates=/tmp/toolstates.json --enable-test-miri - - # 32/64-bit MinGW builds. - # - # We are using MinGW with posix threads since LLVM does not compile with - # the win32 threads version due to missing support for C++'s std::thread. - # - # Instead of relying on the MinGW version installed on appveryor we download - # and install one ourselves so we won't be surprised by changes to appveyor's - # build image. - # - # Finally, note that the downloads below are all in the `rust-lang-ci` S3 - # bucket, but they cleraly didn't originate there! The downloads originally - # came from the mingw-w64 SourceForge download site. Unfortunately - # SourceForge is notoriously flaky, so we mirror it on our own infrastructure. - i686-mingw-1: - MSYS_BITS: 32 - RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu - SCRIPT: make ci-subset-1 - MINGW_URL: https://rust-lang-ci2.s3.amazonaws.com/rust-ci-mirror - MINGW_ARCHIVE: i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z - MINGW_DIR: mingw32 - # FIXME(#59637) - NO_DEBUG_ASSERTIONS: 1 - NO_LLVM_ASSERTIONS: 1 - i686-mingw-2: - MSYS_BITS: 32 - RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu - SCRIPT: make ci-subset-2 - MINGW_URL: https://rust-lang-ci2.s3.amazonaws.com/rust-ci-mirror - MINGW_ARCHIVE: i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z - MINGW_DIR: mingw32 - x86_64-mingw-1: - MSYS_BITS: 64 - SCRIPT: make ci-subset-1 - RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu - MINGW_URL: https://rust-lang-ci2.s3.amazonaws.com/rust-ci-mirror - MINGW_ARCHIVE: x86_64-6.3.0-release-posix-seh-rt_v5-rev2.7z - MINGW_DIR: mingw64 - # FIXME(#59637) - NO_DEBUG_ASSERTIONS: 1 - NO_LLVM_ASSERTIONS: 1 - x86_64-mingw-2: - MSYS_BITS: 64 - SCRIPT: make ci-subset-2 - RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu - MINGW_URL: https://rust-lang-ci2.s3.amazonaws.com/rust-ci-mirror - MINGW_ARCHIVE: x86_64-6.3.0-release-posix-seh-rt_v5-rev2.7z - MINGW_DIR: mingw64 - - # 32/64 bit MSVC and GNU deployment - dist-x86_64-msvc: - RUST_CONFIGURE_ARGS: > - --build=x86_64-pc-windows-msvc - --target=x86_64-pc-windows-msvc,aarch64-pc-windows-msvc - --enable-full-tools - --enable-profiler - SCRIPT: python x.py dist - DIST_REQUIRE_ALL_TOOLS: 1 - DEPLOY: 1 - dist-i686-msvc: - RUST_CONFIGURE_ARGS: > - --build=i686-pc-windows-msvc - --target=i586-pc-windows-msvc - --enable-full-tools - --enable-profiler - SCRIPT: python x.py dist - DIST_REQUIRE_ALL_TOOLS: 1 - DEPLOY: 1 - dist-i686-mingw: - MSYS_BITS: 32 - RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu --enable-full-tools - SCRIPT: python x.py dist - MINGW_URL: https://rust-lang-ci2.s3.amazonaws.com/rust-ci-mirror - MINGW_ARCHIVE: i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z - MINGW_DIR: mingw32 - DIST_REQUIRE_ALL_TOOLS: 1 - DEPLOY: 1 - dist-x86_64-mingw: - MSYS_BITS: 64 - SCRIPT: python x.py dist - RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-full-tools - MINGW_URL: https://rust-lang-ci2.s3.amazonaws.com/rust-ci-mirror - MINGW_ARCHIVE: x86_64-6.3.0-release-posix-seh-rt_v5-rev2.7z - MINGW_DIR: mingw64 - DIST_REQUIRE_ALL_TOOLS: 1 - DEPLOY: 1 - - # "alternate" deployment, see .travis.yml for more info - dist-x86_64-msvc-alt: - MSYS_BITS: 64 - RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-extended --enable-profiler - SCRIPT: python x.py dist - DEPLOY_ALT: 1 +#- job: Windows +# timeoutInMinutes: 600 +# pool: +# vmImage: 'vs2017-win2016' +# steps: +# - template: steps/run.yml +# strategy: +# matrix: +# # 32/64 bit MSVC tests +# x86_64-msvc-1: +# MSYS_BITS: 64 +# RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-profiler +# SCRIPT: make ci-subset-1 +# # FIXME(#59637) +# NO_DEBUG_ASSERTIONS: 1 +# NO_LLVM_ASSERTIONS: 1 +# x86_64-msvc-2: +# MSYS_BITS: 64 +# RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-profiler +# SCRIPT: make ci-subset-2 +# i686-msvc-1: +# MSYS_BITS: 32 +# RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc +# SCRIPT: make ci-subset-1 +# i686-msvc-2: +# MSYS_BITS: 32 +# RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc +# SCRIPT: make ci-subset-2 +# # MSVC aux tests +# x86_64-msvc-aux: +# MSYS_BITS: 64 +# RUST_CHECK_TARGET: check-aux EXCLUDE_CARGO=1 +# RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc +# x86_64-msvc-cargo: +# MSYS_BITS: 64 +# SCRIPT: python x.py test src/tools/cargotest src/tools/cargo +# RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc +# VCVARS_BAT: vcvars64.bat +# # MSVC tools tests +# x86_64-msvc-tools: +# MSYS_BITS: 64 +# SCRIPT: src/ci/docker/x86_64-gnu-tools/checktools.sh x.py /tmp/toolstates.json windows +# RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --save-toolstates=/tmp/toolstates.json --enable-test-miri +# +# # 32/64-bit MinGW builds. +# # +# # We are using MinGW with posix threads since LLVM does not compile with +# # the win32 threads version due to missing support for C++'s std::thread. +# # +# # Instead of relying on the MinGW version installed on appveryor we download +# # and install one ourselves so we won't be surprised by changes to appveyor's +# # build image. +# # +# # Finally, note that the downloads below are all in the `rust-lang-ci` S3 +# # bucket, but they cleraly didn't originate there! The downloads originally +# # came from the mingw-w64 SourceForge download site. Unfortunately +# # SourceForge is notoriously flaky, so we mirror it on our own infrastructure. +# i686-mingw-1: +# MSYS_BITS: 32 +# RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu +# SCRIPT: make ci-subset-1 +# MINGW_URL: https://rust-lang-ci2.s3.amazonaws.com/rust-ci-mirror +# MINGW_ARCHIVE: i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z +# MINGW_DIR: mingw32 +# # FIXME(#59637) +# NO_DEBUG_ASSERTIONS: 1 +# NO_LLVM_ASSERTIONS: 1 +# i686-mingw-2: +# MSYS_BITS: 32 +# RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu +# SCRIPT: make ci-subset-2 +# MINGW_URL: https://rust-lang-ci2.s3.amazonaws.com/rust-ci-mirror +# MINGW_ARCHIVE: i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z +# MINGW_DIR: mingw32 +# x86_64-mingw-1: +# MSYS_BITS: 64 +# SCRIPT: make ci-subset-1 +# RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu +# MINGW_URL: https://rust-lang-ci2.s3.amazonaws.com/rust-ci-mirror +# MINGW_ARCHIVE: x86_64-6.3.0-release-posix-seh-rt_v5-rev2.7z +# MINGW_DIR: mingw64 +# # FIXME(#59637) +# NO_DEBUG_ASSERTIONS: 1 +# NO_LLVM_ASSERTIONS: 1 +# x86_64-mingw-2: +# MSYS_BITS: 64 +# SCRIPT: make ci-subset-2 +# RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu +# MINGW_URL: https://rust-lang-ci2.s3.amazonaws.com/rust-ci-mirror +# MINGW_ARCHIVE: x86_64-6.3.0-release-posix-seh-rt_v5-rev2.7z +# MINGW_DIR: mingw64 +# +# # 32/64 bit MSVC and GNU deployment +# dist-x86_64-msvc: +# RUST_CONFIGURE_ARGS: > +# --build=x86_64-pc-windows-msvc +# --target=x86_64-pc-windows-msvc,aarch64-pc-windows-msvc +# --enable-full-tools +# --enable-profiler +# SCRIPT: python x.py dist +# DIST_REQUIRE_ALL_TOOLS: 1 +# DEPLOY: 1 +# dist-i686-msvc: +# RUST_CONFIGURE_ARGS: > +# --build=i686-pc-windows-msvc +# --target=i586-pc-windows-msvc +# --enable-full-tools +# --enable-profiler +# SCRIPT: python x.py dist +# DIST_REQUIRE_ALL_TOOLS: 1 +# DEPLOY: 1 +# dist-i686-mingw: +# MSYS_BITS: 32 +# RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu --enable-full-tools +# SCRIPT: python x.py dist +# MINGW_URL: https://rust-lang-ci2.s3.amazonaws.com/rust-ci-mirror +# MINGW_ARCHIVE: i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z +# MINGW_DIR: mingw32 +# DIST_REQUIRE_ALL_TOOLS: 1 +# DEPLOY: 1 +# dist-x86_64-mingw: +# MSYS_BITS: 64 +# SCRIPT: python x.py dist +# RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-full-tools +# MINGW_URL: https://rust-lang-ci2.s3.amazonaws.com/rust-ci-mirror +# MINGW_ARCHIVE: x86_64-6.3.0-release-posix-seh-rt_v5-rev2.7z +# MINGW_DIR: mingw64 +# DIST_REQUIRE_ALL_TOOLS: 1 +# DEPLOY: 1 +# +# # "alternate" deployment, see .travis.yml for more info +# dist-x86_64-msvc-alt: +# MSYS_BITS: 64 +# RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-extended --enable-profiler +# SCRIPT: python x.py dist +# DEPLOY_ALT: 1 diff --git a/.azure-pipelines/try.yml b/.azure-pipelines/try.yml index e669925b5ff59..0ad21bcc14515 100644 --- a/.azure-pipelines/try.yml +++ b/.azure-pipelines/try.yml @@ -26,53 +26,53 @@ jobs: IMAGE: dist-x86_64-linux DEPLOY_ALT: 1 -- job: macOS - timeoutInMinutes: 600 - pool: - vmImage: macos-10.13 - steps: - - template: steps/run.yml - strategy: - matrix: - dist-x86_64-apple: - SCRIPT: ./x.py dist - RUST_CONFIGURE_ARGS: --target=aarch64-apple-ios,armv7-apple-ios,armv7s-apple-ios,i386-apple-ios,x86_64-apple-ios --enable-full-tools --enable-sanitizers --enable-profiler --enable-lldb --set rust.jemalloc - DEPLOY: 1 - RUSTC_RETRY_LINKER_ON_SEGFAULT: 1 - MACOSX_DEPLOYMENT_TARGET: 10.7 - NO_LLVM_ASSERTIONS: 1 - NO_DEBUG_ASSERTIONS: 1 - DIST_REQUIRE_ALL_TOOLS: 1 - - dist-x86_64-apple-alt: - SCRIPT: ./x.py dist - RUST_CONFIGURE_ARGS: --enable-extended --enable-profiler --enable-lldb --set rust.jemalloc - DEPLOY_ALT: 1 - RUSTC_RETRY_LINKER_ON_SEGFAULT: 1 - MACOSX_DEPLOYMENT_TARGET: 10.7 - NO_LLVM_ASSERTIONS: 1 - NO_DEBUG_ASSERTIONS: 1 - -- job: Windows - timeoutInMinutes: 600 - pool: - vmImage: 'vs2017-win2016' - steps: - - template: steps/run.yml - strategy: - matrix: - dist-x86_64-msvc: - RUST_CONFIGURE_ARGS: > - --build=x86_64-pc-windows-msvc - --target=x86_64-pc-windows-msvc,aarch64-pc-windows-msvc - --enable-full-tools - --enable-profiler - SCRIPT: python x.py dist - DIST_REQUIRE_ALL_TOOLS: 1 - DEPLOY: 1 - - dist-x86_64-msvc-alt: - MSYS_BITS: 64 - RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-extended --enable-profiler - SCRIPT: python x.py dist - DEPLOY_ALT: 1 +#- job: macOS +# timeoutInMinutes: 600 +# pool: +# vmImage: macos-10.13 +# steps: +# - template: steps/run.yml +# strategy: +# matrix: +# dist-x86_64-apple: +# SCRIPT: ./x.py dist +# RUST_CONFIGURE_ARGS: --target=aarch64-apple-ios,armv7-apple-ios,armv7s-apple-ios,i386-apple-ios,x86_64-apple-ios --enable-full-tools --enable-sanitizers --enable-profiler --enable-lldb --set rust.jemalloc +# DEPLOY: 1 +# RUSTC_RETRY_LINKER_ON_SEGFAULT: 1 +# MACOSX_DEPLOYMENT_TARGET: 10.7 +# NO_LLVM_ASSERTIONS: 1 +# NO_DEBUG_ASSERTIONS: 1 +# DIST_REQUIRE_ALL_TOOLS: 1 +# +# dist-x86_64-apple-alt: +# SCRIPT: ./x.py dist +# RUST_CONFIGURE_ARGS: --enable-extended --enable-profiler --enable-lldb --set rust.jemalloc +# DEPLOY_ALT: 1 +# RUSTC_RETRY_LINKER_ON_SEGFAULT: 1 +# MACOSX_DEPLOYMENT_TARGET: 10.7 +# NO_LLVM_ASSERTIONS: 1 +# NO_DEBUG_ASSERTIONS: 1 +# +#- job: Windows +# timeoutInMinutes: 600 +# pool: +# vmImage: 'vs2017-win2016' +# steps: +# - template: steps/run.yml +# strategy: +# matrix: +# dist-x86_64-msvc: +# RUST_CONFIGURE_ARGS: > +# --build=x86_64-pc-windows-msvc +# --target=x86_64-pc-windows-msvc,aarch64-pc-windows-msvc +# --enable-full-tools +# --enable-profiler +# SCRIPT: python x.py dist +# DIST_REQUIRE_ALL_TOOLS: 1 +# DEPLOY: 1 +# +# dist-x86_64-msvc-alt: +# MSYS_BITS: 64 +# RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-extended --enable-profiler +# SCRIPT: python x.py dist +# DEPLOY_ALT: 1