mirror of
https://github.com/actions/python-versions.git
synced 2025-04-06 15:29:39 +00:00
* rework replacement function to use the same pattern like windows * remove old replacement
34 lines
840 B
YAML
34 lines
840 B
YAML
trigger: none
|
|
pr:
|
|
autoCancel: true
|
|
branches:
|
|
include:
|
|
- master
|
|
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) `
|
|
-SourceVersion $(Build.SourceVersion) `
|
|
-ToolVersions "$(PYTHON_VERSIONS)" `
|
|
-DefinitionId $(DEFINITION_ID) |