This commit is contained in:
Maxim Lobanov
2020-12-09 11:48:13 +03:00
parent 21cbc1e8ca
commit f4ff9fb93d
4 changed files with 29 additions and 33 deletions

View File

@@ -8,37 +8,33 @@ steps:
arguments: |
-ToolName "$(TOOL_NAME)"
# - task: PowerShell@2
# displayName: 'Cancel build'
# condition: and(succeeded(), eq(variables['Get_versions.TOOL_VERSIONS'], ''))
# inputs:
# TargetType: inline
# script: |
# Import-Module "./azure-devops/azure-devops-api.ps1"
# $azureDevOpsApi = Get-AzureDevOpsApi -TeamFoundationCollectionUri $(System.TeamFoundationCollectionUri) `
# -ProjectName $(System.TeamProject) `
# -AccessToken $(System.AccessToken)
# $AzureDevOpsApi.UpdateBuildStatus($(Build.BuildId), 'Cancelling') | Out-Null
- task: PowerShell@2
displayName: 'Set env variable'
condition: and(succeeded(), ne(variables['Get_versions.TOOL_VERSIONS'], ''))
condition: and(succeeded(), ne(variables['TOOL_NAME'], "Python"))
inputs:
TargetType: inline
script: |
$PipelineUrl = "$(System.TeamFoundationCollectionUri)$(System.TeamProject)/_build/results?buildId=$(Build.BuildId)"
Write-Output "##vso[task.setvariable variable=PIPELINE_URL]$PipelineUrl"
Write-Host "##vso[task.setvariable variable=PIPELINE_URL]$PipelineUrl"
# - task: PowerShell@2
# displayName: 'Send Slack notification'
# condition: and(succeeded(), ne(variables['Get_versions.TOOL_VERSIONS'], ''))
# inputs:
# targetType: filePath
# filePath: './get-new-tool-versions/send-slack-notification.ps1'
# arguments: |
# -Url "$(SLACK_CHANNEL_URL)" `
# -ToolName "$(TOOL_NAME)" `
# -ToolVersion "$(Get_versions.TOOL_VERSIONS)" `
# -PipelineUrl "$(PIPELINE_URL)" `
# -ImageUrl "$(IMAGE_URL)"
- task: PowerShell@2
displayName: 'Change build name'
condition: and(succeeded(), ne(variables['Get_versions.TOOL_VERSIONS'], ''))
inputs:
TargetType: inline
script: |
$newBuildName = "[FOUND] $(Build.BuildNumber)"
Write-Host "##vso[build.updatebuildnumber]$newBuildName"
- task: PowerShell@2
displayName: 'Send Slack notification'
condition: and(succeeded(), ne(variables['Get_versions.TOOL_VERSIONS'], ''))
inputs:
targetType: filePath
filePath: './get-new-tool-versions/send-slack-notification.ps1'
arguments: |
-Url "$(SLACK_CHANNEL_URL)" `
-ToolName "$(TOOL_NAME)" `
-ToolVersion "$(Get_versions.TOOL_VERSIONS)" `
-PipelineUrl "$(PIPELINE_URL)" `
-ImageUrl "$(IMAGE_URL)"