From 327eed8b97cb1dee9ee595e9ed9b973eda679e93 Mon Sep 17 00:00:00 2001 From: Jon Gjengset Date: Tue, 3 Sep 2019 10:53:30 -0400 Subject: [PATCH] Need to install beta/nightly too --- azure-pipelines.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d435412..8378418 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -53,9 +53,15 @@ stages: rust: stable - script: cargo test displayName: Run tests - - script: cargo +beta test + - template: azure/install-rust.yml@templates + parameters: + rust: beta + - script: cargo test displayName: Run tests on beta - - script: cargo +nightly test + - template: azure/install-rust.yml@templates + parameters: + rust: nightly + - script: cargo test displayName: Run tests on nightly continueOnError: true - stage: style