dendrite/azure-pipelines.yml
2021-09-13 11:21:31 +10:00

22 lines
430 B
YAML

# Go
# Build your Go project.
# Add steps that test, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/go
trigger:
- develop
pool:
vmImage: ubuntu-latest
steps:
- task: GoTool@0
inputs:
version: '1.1.4'
- task: Bash@3
displayName: 'Build the executables'
inputs:
targetType: 'inline'
script: './build.sh'
workingDirectory: '$(Build.SourcesDirectory)'