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

Updated to latest vm images to avoid using potentially deprecated/soon to be deprecated versions of OSes #2721

Merged
merged 2 commits into from
Jun 20, 2024
Merged
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
14 changes: 7 additions & 7 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
strategy:
matrix:
Ubuntu-20:
imageName: 'ubuntu-20.04'
imageName: 'ubuntu-latest'
type: 'linux'
MacOS:
imageName: 'macos-11'
imageName: 'macos-latest'
type: 'mac-os'
Windows:
imageName: 'windows-2019'
imageName: 'windows-latest'
type: 'windows'
pool:
vmImage: $(imageName)
Expand Down Expand Up @@ -125,16 +125,16 @@ jobs:
strategy:
matrix:
Ubuntu-20:
imageName: 'ubuntu-20.04'
imageName: 'ubuntu-latest'
build_name: 'azcopy_linux_amd64'
display_name: "Linux"
Windows:
imageName: 'windows-2019'
imageName: 'windows-latest'
build_name: 'azcopy_windows_amd64.exe'
display_name: "Windows"
type: 'windows'
MacOS:
imageName: 'macos-11'
imageName: 'macos-latest'
build_name: 'azcopy_darwin_amd64'
display_name: "MacOS"
pool:
Expand Down Expand Up @@ -302,7 +302,7 @@ jobs:
# allow maximum build time, in case we have build congestion
timeoutInMinutes: 360
pool:
vmImage: 'ubuntu-20.04'
vmImage: 'ubuntu-latest'
steps:
- task: UsePythonVersion@0
name: 'Set_up_Python'
Expand Down
Loading