@@ -75,35 +75,35 @@ jobs:
75
75
# Releases
76
76
# ##################################################
77
77
78
- - job : check_release_automation
79
- displayName : Check release automation
80
- pool :
81
- vmImage : ' ubuntu-latest'
82
- steps :
83
- - script : |
84
- export CARGO_HOME="$HOME/.cargo"
85
- curl https://sh.rustup.rs -sSf | sh -s -- -y
86
- echo "##vso[task.setvariable variable=PATH;]$PATH:$HOME/.cargo/bin"
87
- displayName: Install stable Rust
88
- - script : |
89
- _build/cargo-make.sh "0.20.0" "x86_64-unknown-linux-musl"
90
- displayName: Install cargo-make binary
91
- - script : |
92
- cargo install --debug --version=0.19.4 cargo-release
93
- displayName: Install cargo-release binary
94
- - script : |
95
- git config --local user.name "Release Test Bot"
96
- git config --local user.email "[email protected] "
97
- displayName: Set up git
98
- - script : |
99
- RELEASE_LEVEL="minor" cargo make release-dry-run
100
- displayName: Dry run mode
101
- - script : |
102
- RELEASE_LEVEL="minor" cargo make release-local-test
103
- displayName: Local test mode
104
- - script : |
105
- git --no-pager log -p HEAD...HEAD~20
106
- # NOTE: this is rolled into one task due to onerous
107
- # "bash not found" error on Azure.
108
- cargo make workspace-ci-flow --no-workspace
109
- displayName: Echo local changes && make sure build and tests still work
78
+ # - job: check_release_automation
79
+ # displayName: Check release automation
80
+ # pool:
81
+ # vmImage: 'ubuntu-latest'
82
+ # steps:
83
+ # - script: |
84
+ # export CARGO_HOME="$HOME/.cargo"
85
+ # curl https://sh.rustup.rs -sSf | sh -s -- -y
86
+ # echo "##vso[task.setvariable variable=PATH;]$PATH:$HOME/.cargo/bin"
87
+ # displayName: Install stable Rust
88
+ # - script: |
89
+ # _build/cargo-make.sh "0.20.0" "x86_64-unknown-linux-musl"
90
+ # displayName: Install cargo-make binary
91
+ # - script: |
92
+ # cargo install --debug --version=0.19.4 cargo-release
93
+ # displayName: Install cargo-release binary
94
+ # - script: |
95
+ # git config --local user.name "Release Test Bot"
96
+ # git config --local user.email "[email protected] "
97
+ # displayName: Set up git
98
+ # - script: |
99
+ # RELEASE_LEVEL="minor" cargo make release-dry-run
100
+ # displayName: Dry run mode
101
+ # - script: |
102
+ # RELEASE_LEVEL="minor" cargo make release-local-test
103
+ # displayName: Local test mode
104
+ # - script: |
105
+ # git --no-pager log -p HEAD...HEAD~20
106
+ # # NOTE: this is rolled into one task due to onerous
107
+ # # "bash not found" error on Azure.
108
+ # cargo make workspace-ci-flow --no-workspace
109
+ # displayName: Echo local changes && make sure build and tests still work
0 commit comments