Skip to content

Commit 5180e47

Browse files
committed
Merge remote-tracking branch 'upstream/dev' into release
2 parents f68fedd + cde7498 commit 5180e47

43 files changed

Lines changed: 4571 additions & 296 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/CODEOWNERS

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# See for instructions on this file https://help.github.com/articles/about-codeowners/
22

3-
*help.py @sptramer @Juliehzl
4-
*help.yaml @sptramer @Juliehzl
5-
*help.yml @sptramer @Juliehzl
3+
*help.py @haroldrandom @Juliehzl
4+
*help.yaml @haroldrandom @Juliehzl
5+
*help.yml @haroldrandom @Juliehzl
66

77
/tools/ @haroldrandom @fengzhou-msft
88
/scripts/ @haroldrandom @fengzhou-msft
@@ -33,7 +33,7 @@
3333
/src/azure-cli/azure/cli/command_modules/role/ @jiasli
3434
/src/azure-cli/azure/cli/command_modules/storage/ @Juliehzl
3535
/src/azure-cli/azure/cli/command_modules/servicefabric/ @QingChenmsft
36-
/src/azure-cli/azure/cli/command_modules/sql/ @jaredmoo
36+
/src/azure-cli/azure/cli/command_modules/sql/ @jaredmoo @Juliehzl
3737
/src/azure-cli/azure/cli/command_modules/vm/ @qwordy
3838
/src/azure-cli/azure/cli/command_modules/eventhubs/ @v-ajnava
3939
/src/azure-cli/azure/cli/command_modules/servicebus/ @v-ajnava

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,12 @@ $ pip3 install --upgrade --pre azure-cli --extra-index-url https://azurecliprod.
149149

150150
The edge build is generated for each PR merged to the `dev` branch as a part of the Azure DevOps Pipelines.
151151

152+
## Get builds of arbitrary commit or PR
153+
154+
If you would like to get builds of arbitrary commit or PR, see:
155+
156+
[Try new features before release](doc/try_new_features_before_release.md)
157+
152158
## Developer Setup
153159

154160
If you would like to setup a development environment and contribute to the CLI, see:

azure-pipelines.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
- task: CredScan@2
2929
inputs:
3030
toolMajorVersion: 'V2'
31+
suppressionsFile: ./scripts/ci/credscan/CredScanSuppressions.json
3132

3233
- task: PostAnalysis@1
3334
inputs:
@@ -382,10 +383,13 @@ jobs:
382383
matrix:
383384
Python27:
384385
python.version: '2.7'
386+
tox_env: 'py27'
385387
Python36:
386388
python.version: '3.6'
389+
tox_env: 'py36'
387390
Python38:
388391
python.version: '3.8'
392+
tox_env: 'py38'
389393
steps:
390394
- task: UsePythonVersion@0
391395
displayName: 'Use Python $(python.version)'
@@ -395,6 +399,8 @@ jobs:
395399
displayName: 'Install pip and tox'
396400
- bash: ./scripts/ci/unittest.sh
397401
displayName: 'Run Unit Test'
402+
env:
403+
TOXENV: $(tox_env)
398404

399405
- job: IntegrationTestAgainstProfiles
400406
displayName: Integration Test against Profiles

doc/assets/1.PNG

160 KB
Loading

doc/assets/2.PNG

91 KB
Loading

doc/assets/3.PNG

80.9 KB
Loading

doc/assets/4.PNG

67.9 KB
Loading

doc/assets/5.PNG

124 KB
Loading
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
Try new features before release
2+
===
3+
4+
This documentation shows how to try new features in commit or PR before release even if the PR is not merged.
5+
6+
Azure CLI releases new versions every 3 weeks. Many customers and developers are eager to try and test new features before the formal release. Fortunately, Azure CLI project builds artifacts for every commit and PR and you can download them.
7+
8+
## Tutorial for commit
9+
10+
Step 1. Select a commit. Click the √ or × symbol. Click "Details" of a "build package" item.
11+
12+
![](assets/1.PNG)
13+
14+
Step 2. Click "View more details on Azure Pipelines".
15+
16+
![](assets/2.PNG)
17+
18+
Step 3. Click "1 artifact"
19+
20+
![](assets/3.PNG)
21+
22+
Step 4. Download your favorite artifact.
23+
24+
![](assets/4.PNG)
25+
26+
## Tutorial for PR
27+
28+
Step 1. Open a PR no matter it is merged or not. Click "Checks" tab.
29+
30+
![](assets/5.PNG)
31+
32+
Step 2-4. Follow the same steps of tutorial for commit.
File renamed without changes.

0 commit comments

Comments
 (0)