Skip to content

Commit 4bad8c7

Browse files
authored
Merge pull request #173 from ho-229/ci/beta-channel
ci: add beta channel
2 parents 2d36120 + af8f526 commit 4bad8c7

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

azure-pipelines.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ jobs:
2222
rustup +nightly target install $(target)
2323
cargo +nightly test --workspace --features=all,nightly --target $(target) -Z doctest-xcompile
2424
displayName: TestNightly
25+
- script: |
26+
rustup toolchain install beta
27+
rustup +beta target install $(target)
28+
cargo +beta test --workspace --features all --target $(target)
29+
displayName: TestBeta
2530
# - script: |
2631
# cargo test --workspace --features all --target $(target)
2732
# displayName: TestStable
@@ -41,6 +46,10 @@ jobs:
4146
rustup toolchain install nightly
4247
cargo +nightly test --workspace --features all,nightly
4348
displayName: TestNightly
49+
- script: |
50+
rustup toolchain install beta
51+
cargo +beta test --workspace --features all
52+
displayName: TestBeta
4453
# - script: |
4554
# cargo test --workspace --features all
4655
# displayName: TestStable
@@ -49,6 +58,10 @@ jobs:
4958
rustup toolchain install nightly
5059
cargo +nightly test --workspace --features all,polling,native-tls,nightly --no-default-features
5160
displayName: TestNightly-polling
61+
- script: |
62+
rustup toolchain install beta
63+
cargo +beta test --workspace --features all,polling --no-default-features
64+
displayName: TestBeta-polling
5265
# - script: |
5366
# cargo test --workspace --features all,polling --no-default-features
5467
# displayName: TestStable-polling
@@ -68,6 +81,10 @@ jobs:
6881
rustup toolchain install nightly
6982
cargo +nightly test --workspace --features all,nightly
7083
displayName: TestNightly
84+
- script: |
85+
rustup toolchain install beta
86+
cargo +beta test --workspace --features all
87+
displayName: TestBeta
7188
# - script: |
7289
# cargo test --workspace --features all
7390
# displayName: TestStable

0 commit comments

Comments
 (0)