mirror of
https://github.com/actions/python-versions.git
synced 2025-04-05 23:09:40 +00:00
38 lines
1017 B
YAML
38 lines
1017 B
YAML
trigger: none
|
|
pr:
|
|
autoCancel: true
|
|
branches:
|
|
include:
|
|
- main
|
|
paths:
|
|
exclude:
|
|
- versions-manifest.json
|
|
|
|
jobs:
|
|
- job: Run_Builds
|
|
pool:
|
|
name: Azure Pipelines
|
|
vmImage: 'ubuntu-latest'
|
|
timeoutInMinutes: 180
|
|
|
|
steps:
|
|
- checkout: self
|
|
submodules: true
|
|
|
|
- task: PowerShell@2
|
|
displayName: 'Run build'
|
|
inputs:
|
|
targetType: filePath
|
|
filePath: './helpers/azure-devops/run-ci-builds.ps1 '
|
|
arguments: |
|
|
-TeamFoundationCollectionUri $(System.TeamFoundationCollectionUri) `
|
|
-AzureDevOpsProjectName $(System.TeamProject) `
|
|
-AzureDevOpsAccessToken $(System.AccessToken) `
|
|
-SourceBranch $(Build.SourceBranch) `
|
|
-DefinitionId $(DEFINITION_ID) `
|
|
-SourceVersion $(Build.SourceVersion) `
|
|
-ManifestLink $(MANIFEST_LINK) `
|
|
-WaitForBuilds $(WAIT_FOR_BUILDS) `
|
|
-ToolVersions "$(PYTHON_VERSIONS)" `
|
|
-RetryIntervalSec $(RETRY_INTERVAL_SEC) `
|
|
-RetryCount $(RETRY_COUNT) |