-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor prepare-pipelines.yml (#1668)
- Loading branch information
1 parent
aea14da
commit 33a6cce
Showing
2 changed files
with
32 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
trigger: none | ||
|
||
variables: | ||
- template: /eng/pipelines/templates/variables/image.yml | ||
|
||
extends: | ||
template: /eng/common/pipelines/templates/jobs/prepare-pipelines.yml | ||
parameters: | ||
Repository: $(Build.Repository.Name) | ||
Prefix: android | ||
CIConventionOptions: '' | ||
UPConventionOptions: '--variablegroups 1 58 76' | ||
TestsConventionOptions: '' | ||
Repository: Azure/azure-sdk-for-android |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Default pool image selection. Set as variable so we can override at pipeline level | ||
|
||
variables: | ||
- name: LINUXPOOL | ||
value: azsdk-pool-mms-ubuntu-2004-general | ||
- name: LINUXNEXTPOOL | ||
value: azsdk-pool-mms-ubuntu-2204-general | ||
- name: WINDOWSPOOL | ||
value: azsdk-pool-mms-win-2022-general | ||
- name: MACPOOL | ||
value: Azure Pipelines | ||
|
||
- name: LINUXVMIMAGE | ||
value: azsdk-pool-mms-ubuntu-2004-1espt | ||
- name: LINUXNEXTVMIMAGE | ||
value: azsdk-pool-mms-ubuntu-2204-1espt | ||
- name: WINDOWSVMIMAGE | ||
value: azsdk-pool-mms-win-2022-1espt | ||
- name: MACVMIMAGE | ||
value: macos-latest | ||
|
||
# Values required for pool.os field in 1es pipeline templates | ||
- name: LINUXOS | ||
value: linux | ||
- name: WINDOWSOS | ||
value: windows | ||
- name: MACOS | ||
value: macOS |