Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AddTaskSetupTool #1381

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 13 additions & 7 deletions .azure-pipelines/azure-pipelines-pr.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This pipeline
# 1. Runs when a PR is raised against working branch
# 2. Makes sure working branch is in healthy state (run tests across platforms)
# 3. Run style check and code coverage
# 3. Run style check and code coverage test3

pr:
- master
Expand All @@ -19,6 +19,8 @@ jobs:
inputs:
versionSpec: '3.x'
architecture: 'x64'
- script: pip install setuptools
displayName: 'install setuptools'

- template: templates/setup-ci-machine.yml

Expand All @@ -33,6 +35,10 @@ jobs:
inputs:
versionSpec: '3.x'
architecture: 'x64'
- task: CmdLine@2
displayName: 'Upgrade pip'
inputs:
script: python -m pip install --upgrade pip

- template: templates/setup-ci-machine.yml

Expand Down Expand Up @@ -60,7 +66,7 @@ jobs:
- job: 'Run_Test_Mac'
dependsOn : Build_Publish_Azure_CLI_Test_SDK
pool:
vmImage: 'macOS-10.15'
vmImage: 'macOS-latest'

steps:
- template: templates/run-tests.yml
Expand All @@ -70,7 +76,7 @@ jobs:
- job: 'Run_Test_Mac_Azure_CLI_Released_Version'
dependsOn : Build_Publish_Azure_CLI_Test_SDK
pool:
vmImage: 'macOS-10.15'
vmImage: 'macOS-latest'

steps:
- template: templates/run-tests.yml
Expand All @@ -96,7 +102,7 @@ jobs:
- job: 'Code_Coverage'
dependsOn: 'Build_Publish_Azure_CLI_Test_SDK'
pool:
vmImage: 'macOS-10.15'
vmImage: 'macOS-latest'

steps:
- task: UsePythonVersion@0
Expand Down Expand Up @@ -133,7 +139,7 @@ jobs:

- job: 'Run_Style_Check'
pool:
vmImage: 'macOS-10.15'
vmImage: 'macOS-latest'

steps:
- task: UsePythonVersion@0
Expand Down Expand Up @@ -161,7 +167,7 @@ jobs:
- job: 'Run_HelpText_Check'
dependsOn: 'Build_Publish_Azure_CLI_Test_SDK'
pool:
vmImage: 'macOS-10.15'
vmImage: 'macOS-latest'

steps:
- task: UsePythonVersion@0
Expand All @@ -188,7 +194,7 @@ jobs:
- job: 'Run_Test_From_Old_Release'
dependsOn : Build_Publish_Azure_CLI_Test_SDK
pool:
vmImage: 'macOS-10.15'
vmImage: 'macOS-latest'

steps:
- script: git checkout Releases-0.26.0
Expand Down