Skip to content

Commit

Permalink
Specifying OS in the pool definition.
Browse files Browse the repository at this point in the history
  • Loading branch information
mijpeterson committed Jun 6, 2024
1 parent 5234a3f commit c34610c
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/release-azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ extends:
pool:
name: Azure-Pipelines-1ESPT-ExDShared
image: ubuntu-latest
os: linux
displayName: Validate
steps:
- checkout: self
Expand All @@ -47,19 +48,23 @@ extends:
matrix:
x64-windows:
poolName: Azure-Pipelines-1ESPT-ExDShared
image: 'windows-latest'
runtime: 'win10-x64'
image: windows-latest
os: windows
runtime: win10-x64
x64-mac:
poolName: Azure Pipelines
image: 'macOS-latest'
runtime: 'osx-x64'
image: macOS-latest
os: macOS
runtime: osx-x64
arm-mac:
poolName: Azure Pipelines
image: 'macOS-latest'
runtime: 'osx-arm64'
image: macOS-latest
os: macOS
runtime: osx-arm64
pool:
name: $(poolName)
image: $(image)
os: $(os)
displayName: Build
steps:
- checkout: self
Expand Down

0 comments on commit c34610c

Please sign in to comment.