Skip to content

Commit

Permalink
Azure CI: upgrade removed VMs to newer versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed May 5, 2023
1 parent 55116e6 commit 1a564fa
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ variables:
regression: 1

jobs:
- job: build_ubuntu_1804
displayName: Ubuntu 1804
- job: build_ubuntu_2004
displayName: Ubuntu 2004
pool:
vmImage: 'Ubuntu-18.04'
vmImage: 'Ubuntu-20.04'
timeoutInMinutes: 120
strategy:
matrix:
Expand Down Expand Up @@ -161,10 +161,10 @@ jobs:
targetPath: $(Build.SourcesDirectory)/hhsuite-linux-$(ARCHIVE_NAME).tar.gz
artifactName: hhsuite-linux-$(ARCHIVE_NAME)

- job: build_macos_1015
displayName: macOS 1015
- job: build_macos_11
displayName: macOS 11
pool:
vmImage: 'macos-10.15'
vmImage: 'macos-11'
steps:
- script: |
cd ${BUILD_SOURCESDIRECTORY}
Expand All @@ -187,10 +187,10 @@ jobs:
displayName: Upload Artifacts
condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'))
pool:
vmImage: 'Ubuntu-18.04'
vmImage: 'Ubuntu-20.04'
dependsOn:
- build_macos_1015
- build_ubuntu_1804
- build_macos_11
- build_ubuntu_2004
- build_ubuntu_cross_2004
steps:
- checkout: none
Expand Down

0 comments on commit 1a564fa

Please sign in to comment.