summaryrefslogtreecommitdiffstats
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorJon Gjengset <jon@thesquareplanet.com>2019-09-27 12:51:45 -0400
committerCarl Lerche <me@carllerche.com>2019-09-27 09:51:45 -0700
commit7c341f45e03c26187b7146c5a10f404de86cca9c (patch)
treebacb63187dc436be2943bbb5b2c3a356bfd05eb3 /azure-pipelines.yml
parent611b4e11a7ebe69ae1a0f3d1bccc5286e33274f5 (diff)
chore: move CI to beta (#1615)
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml19
1 files changed, 9 insertions, 10 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 7386ef97..70046af4 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -2,27 +2,26 @@ trigger: ["master", "std-future"]
pr: ["master", "std-future"]
variables:
- nightly: nightly-2019-08-21
RUSTFLAGS: -Dwarnings
jobs:
# Check formatting
- template: ci/azure-rustfmt.yml
parameters:
- rust: $(nightly)
+ rust: beta
name: rustfmt
# Apply clippy lints to all crates
- template: ci/azure-clippy.yml
parameters:
- rust: $(nightly)
+ rust: beta
name: clippy
# Test top level crate
- template: ci/azure-test-stable.yml
parameters:
name: test_tokio
- rust: $(nightly)
+ rust: beta
displayName: Test tokio
cross: true
crates:
@@ -44,7 +43,7 @@ jobs:
name: test_sub_cross
displayName: Test sub crates (cross) -
cross: true
- rust: $(nightly)
+ rust: beta
crates:
tokio-fs: []
tokio-net:
@@ -59,7 +58,7 @@ jobs:
parameters:
name: test_linux
displayName: Test sub crates -
- rust: $(nightly)
+ rust: beta
crates:
tokio-codec: []
tokio-executor:
@@ -79,7 +78,7 @@ jobs:
parameters:
name: test_features
displayName: Test feature flags
- rust: $(nightly)
+ rust: beta
crates:
build-tests:
- tokio-executor
@@ -97,7 +96,7 @@ jobs:
- template: ci/azure-cross-compile.yml
parameters:
name: cross
- rust: $(nightly)
+ rust: beta
# # This represents the minimum Rust version supported by
# # Tokio. Updating this should be done in a dedicated PR and
@@ -114,11 +113,11 @@ jobs:
# - template: ci/azure-tsan.yml
# parameters:
# name: tsan
-# rust: $(nightly)
+# rust: beta
- template: ci/azure-deploy-docs.yml
parameters:
- rust: $(nightly)
+ rust: beta
dependsOn:
- rustfmt
- clippy