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

chore(ci): use "latest" version of the OSes on Azure Pipelines #11793

Merged
merged 1 commit into from Aug 27, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .azure-pipelines.yml
Expand Up @@ -5,13 +5,13 @@
jobs:
- job: Linux
pool:
vmImage: ubuntu-16.04
vmImage: ubuntu-latest
steps:
- template: .azure-pipelines-steps.yml

- job: Windows
pool:
vmImage: vs2017-win2016
vmImage: windows-latest
steps:
- script: |
git config --global core.autocrlf false
Expand All @@ -21,7 +21,7 @@ jobs:

- job: macOS
pool:
vmImage: macos-10.15
vmImage: macos-latest
steps:
# This step can be removed once Mercurial gets installed on the macOS image. See https://github.com/Microsoft/azure-pipelines-image-generation/issues/604
- script: HOMEBREW_NO_AUTO_UPDATE=1 brew install mercurial
Expand Down