We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98296da commit 1e98e12Copy full SHA for 1e98e12
azure-pipelines.yml
@@ -1,4 +1,22 @@
1
jobs:
2
+ - job: check_release_automation
3
+ displayName: Check release automation
4
+ pool:
5
+ vmImage: ubuntu-16.04
6
+ steps:
7
+ - script: |
8
+ curl https://sh.rustup.rs -sSf | sh -s -- -y
9
+ displayName: Install stable Rust
10
11
+ _build/cargo-make.sh "0.15.3" "x86_64-unknown-linux-musl"
12
+ displayName: Install cargo-make binary
13
14
+ $HOME/.cargo/bin/cargo install cargo-release
15
+ displayName: Install cargo-release binary
16
17
+ $HOME/.cargo/bin/cargo-make release-dry-run
18
+ displayName: Run release automation in dry run mode
19
+
20
- job: check_formatting
21
displayName: Check formatting
22
pool:
0 commit comments