mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-29 01:33:10 -06:00
26 lines
504 B
YAML
26 lines
504 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.13.5'
|
|
- task: Go@0
|
|
inputs:
|
|
command: 'get'
|
|
arguments: '-d'
|
|
workingDirectory: '$(System.DefaultWorkingDirectory)'
|
|
- task: CmdLine@2
|
|
name: Build
|
|
inputs:
|
|
workingDirectory: '$(Build.SourcesDirectory)'
|
|
script: './build.sh' |