-
Notifications
You must be signed in to change notification settings - Fork 932
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
devops: migrate to 1ES PT templates (#2278)
- Loading branch information
Showing
1 changed file
with
48 additions
and
35 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,38 +1,51 @@ | ||
# don't trigger for Pull Requests | ||
trigger: none | ||
pr: none | ||
|
||
trigger: | ||
tags: | ||
include: | ||
- '*' | ||
resources: | ||
repositories: | ||
- repository: 1esPipelines | ||
type: git | ||
name: 1ESPipelineTemplates/1ESPipelineTemplates | ||
ref: refs/tags/release | ||
|
||
pool: | ||
vmImage: ubuntu-latest | ||
|
||
steps: | ||
- task: UsePythonVersion@0 | ||
inputs: | ||
versionSpec: '3.8' | ||
displayName: 'Use Python' | ||
|
||
- script: | | ||
python -m pip install --upgrade pip | ||
pip install -r local-requirements.txt | ||
pip install -e . | ||
python setup.py bdist_wheel --all | ||
displayName: 'Install & Build' | ||
|
||
- task: EsrpRelease@4 | ||
inputs: | ||
ConnectedServiceName: 'Playwright-ESRP' | ||
Intent: 'PackageDistribution' | ||
ContentType: 'PyPi' | ||
ContentSource: 'Folder' | ||
FolderLocation: './dist/' | ||
WaitForReleaseCompletion: true | ||
Owners: '[email protected]' | ||
Approvers: '[email protected]' | ||
ServiceEndpointUrl: 'https://api.esrp.microsoft.com' | ||
MainPublisher: 'Playwright' | ||
DomainTenantId: '72f988bf-86f1-41af-91ab-2d7cd011db47' | ||
displayName: 'ESRP Release to PIP' | ||
extends: | ||
template: v1/1ES.Official.PipelineTemplate.yml@1esPipelines | ||
parameters: | ||
pool: | ||
name: DevDivPlaywrightAzurePipelinesUbuntu2204 | ||
os: linux | ||
sdl: | ||
sourceAnalysisPool: | ||
name: DevDivPlaywrightAzurePipelinesWindows2022 | ||
# The image must be windows-based due to restrictions of the SDL tools. See: https://aka.ms/AAo6v8e | ||
# In the case of a windows build, this can be the same as the above pool image. | ||
os: windows | ||
stages: | ||
- stage: Stage | ||
jobs: | ||
- job: HostJob | ||
steps: | ||
- task: UsePythonVersion@0 | ||
inputs: | ||
versionSpec: '3.8' | ||
displayName: 'Use Python' | ||
- script: | | ||
python -m pip install --upgrade pip | ||
pip install -r local-requirements.txt | ||
pip install -e . | ||
python setup.py bdist_wheel --all | ||
displayName: 'Install & Build' | ||
- task: EsrpRelease@4 | ||
inputs: | ||
ConnectedServiceName: 'Playwright-ESRP' | ||
Intent: 'PackageDistribution' | ||
ContentType: 'PyPi' | ||
ContentSource: 'Folder' | ||
FolderLocation: './dist/' | ||
WaitForReleaseCompletion: true | ||
Owners: '[email protected]' | ||
Approvers: '[email protected]' | ||
ServiceEndpointUrl: 'https://api.esrp.microsoft.com' | ||
MainPublisher: 'Playwright' | ||
DomainTenantId: '72f988bf-86f1-41af-91ab-2d7cd011db47' | ||
displayName: 'ESRP Release to PIP' |