-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
40 lines (32 loc) · 976 Bytes
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# 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:
- project1
pool:
vmImage: windows-latest
variables:
GOBIN: # Go binaries path
GOROOT: '/usr/local/go1.11' # Go installation path
GOPATH: '$(system.defaultWorkingDirectory)/gopath' # Go workspace path
modulePath: '$(GOPATH)/src/github.com/$(build.repository.name)' # Path to the module's code
steps:
- task: GoTool@0
inputs:
version: '1.17'
goPath: '$(system.defaultWorkingDirectory)/gopath'
goBin: '$(GOPATH)/bin'
- script: |
echo $(system.defaultWorkingDirectory)
cd $(system.defaultWorkingDirectory) && cd ls
- task: Go@0
inputs:
command: build
workingDirectory: ./src
- task: Docker@2
inputs:
containerRegistry: 'ConnectToAzureCR'
repository: 'myfirstwebapp1217conatiner'
command: 'buildAndPush'
Dockerfile: './Dockerfile'