mirror of
https://github.com/actions/python-versions.git
synced 2025-12-15 23:36:44 +00:00
mplement script to build and prepare packages for Python
This commit is contained in:
33
azure-pipelines/run-ci-builds.yml
Normal file
33
azure-pipelines/run-ci-builds.yml
Normal file
@@ -0,0 +1,33 @@
|
||||
trigger: none
|
||||
pr:
|
||||
autoCancel: true
|
||||
branches:
|
||||
include:
|
||||
- master
|
||||
paths:
|
||||
exclude:
|
||||
- versions-manifest.json
|
||||
|
||||
jobs:
|
||||
- job: Run_Builds
|
||||
pool:
|
||||
name: Azure Pipelines
|
||||
vmImage: 'ubuntu-latest'
|
||||
|
||||
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)
|
||||
Reference in New Issue
Block a user