-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathazure-pipelines.yml
71 lines (64 loc) · 1.89 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
variables:
dockerId: gamalan
imageName: caddy-docker
version: 2.0.1
jobs:
- job: Build_Binaries
pool:
vmImage: 'Ubuntu 18.04'
steps:
- task: GoTool@0
inputs:
version: '1.17'
GOPATH: '$(Agent.BuildDirectory)/go'
GOBIN: '$(GOPATH)/bin'
- bash: |
export PATH="$GOBIN:$PATH"
. build.sh
env:
ARTIFACTS: '$(Build.ArtifactStagingDirectory)'
displayName: Build
- task: PublishBuildArtifacts@1
inputs:
artifactName: binaries
pathtoPublish: '$(Build.ArtifactStagingDirectory)/binaries'
displayName: 'Publish Artifact'
- job: Build_Images_Linux
dependsOn: Build_Binaries
pool:
vmImage: 'Ubuntu 18.04'
steps:
- task: DownloadBuildArtifacts@0
displayName: 'Download Build Artifacts'
inputs:
downloadPath: artifacts
artifactName: binaries
- script: |
chmod +x artifacts/binaries/linux/amd64/caddy
docker build -t $(dockerId)/$(imageName):$(version) -f Dockerfile .
docker build -t $(dockerId)/$(imageName):$(version)-alpine -f Dockerfile-alpine .
displayName: 'Build images'
- script: |
docker login -u $(dockerId) -p $(dockerPassword)
docker push $(dockerId)/$(imageName):$(version)
docker push $(dockerId)/$(imageName):$(version)-alpine
condition: succeeded()
displayName: 'Push images'
- job: Build_Images_Windows
dependsOn: Build_Binaries
pool:
vmImage: 'windows-2019'
steps:
- task: DownloadBuildArtifacts@0
displayName: 'Download Build Artifacts'
inputs:
downloadPath: artifacts
artifactName: binaries
- bash: |
docker build -t $(dockerId)/$(imageName):$(version)-nanoserver -f Dockerfile-nanoserver .
displayName: 'Build images'
- bash: |
docker login -u $(dockerId) -p $(dockerPassword)
docker push $(dockerId)/$(imageName):$(version)-nanoserver
condition: succeeded()
displayName: 'Push images'