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

update azure pipelines deprecated vm image to latest #1261

Merged
merged 1 commit into from
Apr 20, 2022
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .azure-pipelines/azure-pipelines-create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- job: 'Calculate_Sha_And_Create_Release'
dependsOn : Run_Test
pool:
vmImage: 'vs2017-win2016'
vmImage: 'windows-latest'
variables:
CLIVersion: $[dependencies.Run_Test.outputs['setupVersion.CLIVersion']]
RTitle: $[dependencies.Run_Test.outputs['setupVersion.RTitle']]
Expand Down
6 changes: 3 additions & 3 deletions .azure-pipelines/azure-pipelines-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- job: 'Run_Test_Windows'
dependsOn : [ 'Build_Publish_Azure_CLI_Test_SDK', 'Build_Publish_Azure_DevOps_CLI_Extension']
pool:
vmImage: 'vs2017-win2016'
vmImage: 'windows-latest'

steps:
- task: PowerShell@2
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:

- job: 'Check_Back_Compat_Arguments'
pool:
vmImage: 'vs2017-win2016'
vmImage: 'windows-latest'

steps:
- task: UsePythonVersion@0
Expand All @@ -225,7 +225,7 @@ jobs:

- job: 'Run_Markdown_Lint_Check'
pool:
vmImage: 'vs2017-win2016'
vmImage: 'windows-latest'

steps:
- script: gem install chef-utils -v 16.6.14
Expand Down
6 changes: 3 additions & 3 deletions .azure-pipelines/azure-pipelines-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
- job: 'Run_Test_Windows'
dependsOn : Build_Publish_Azure_CLI_Test_SDK
pool:
vmImage: 'vs2017-win2016'
vmImage: 'windows-latest'

steps:
- task: PowerShell@2
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:

- job: 'Check_Back_Compat_Arguments'
pool:
vmImage: 'vs2017-win2016'
vmImage: 'windows-latest'

steps:
- task: UsePythonVersion@0
Expand All @@ -221,7 +221,7 @@ jobs:

- job: 'Run_Markdown_Lint_Check'
pool:
vmImage: 'vs2017-win2016'
vmImage: 'windows-latest'

steps:
- script: gem install chef-utils -v 16.6.14
Expand Down
2 changes: 1 addition & 1 deletion doc/samples.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ jobs:
- job:
displayName: 'Windows'
pool:
vmImage: 'vs2017-win2016'
vmImage: 'windows-latest'
steps:
- template: azure-pipelines-steps-win.yml
```
Expand Down