-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathazure-pipelines.yml
177 lines (172 loc) · 5.07 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
trigger:
tags:
include:
- v*
branches:
include:
- master
- feature/*
- fix/*
pool:
vmImage: 'ubuntu-latest'
variables:
tag: '$(Build.SourceBranchName)'
stages:
- stage: Builders
displayName: Build and Release scan images
jobs:
- job: Build
displayName: Docker Build and Push - default
pool:
vmImage: 'ubuntu-latest'
steps:
- task: Docker@2
inputs:
command: 'login'
containerRegistry: sl_docker
- task: Docker@2
displayName: Build base image
inputs:
command: 'buildAndPush'
dockerfile: '$(Build.SourcesDirectory)/Dockerfile'
repository: shiftleft/scan
tags: |
$(tag)
- task: Docker@2
displayName: Release base image
inputs:
command: 'buildAndPush'
dockerfile: '$(Build.SourcesDirectory)/Dockerfile'
repository: shiftleft/scan
tags: |
latest
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
- task: Docker@2
displayName: Build alias image
inputs:
command: 'buildAndPush'
dockerfile: '$(Build.SourcesDirectory)/Dockerfile'
repository: shiftleft/sast-scan
tags: |
$(tag)
- task: Docker@2
displayName: Release alias image
inputs:
command: 'buildAndPush'
dockerfile: '$(Build.SourcesDirectory)/Dockerfile'
repository: shiftleft/sast-scan
tags: |
latest
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
- job: Build_slim
displayName: Docker Build and Push - slim
pool:
vmImage: 'ubuntu-latest'
steps:
- task: Docker@2
inputs:
command: 'login'
containerRegistry: sl_docker
- task: Docker@2
displayName: Build slim image
inputs:
command: 'buildAndPush'
dockerfile: '$(Build.SourcesDirectory)/ci/Dockerfile-dynamic-lang'
repository: shiftleft/scan-slim
buildContext: $(Build.SourcesDirectory)
tags: |
$(tag)
- task: Docker@2
displayName: Release slim image
inputs:
command: 'buildAndPush'
dockerfile: '$(Build.SourcesDirectory)/ci/Dockerfile-dynamic-lang'
repository: shiftleft/scan-slim
buildContext: $(Build.SourcesDirectory)
tags: |
latest
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
- job: Build_oss
displayName: Docker Build and Push - oss
pool:
vmImage: 'ubuntu-latest'
steps:
- task: Docker@2
inputs:
command: 'login'
containerRegistry: sl_docker
- task: Docker@2
displayName: Build oss image
inputs:
command: 'buildAndPush'
dockerfile: '$(Build.SourcesDirectory)/ci/Dockerfile-oss'
repository: shiftleft/scan-oss
buildContext: $(Build.SourcesDirectory)
tags: |
$(tag)
- task: Docker@2
displayName: Release oss image
inputs:
command: 'buildAndPush'
dockerfile: '$(Build.SourcesDirectory)/ci/Dockerfile-oss'
repository: shiftleft/scan-oss
buildContext: $(Build.SourcesDirectory)
tags: |
latest
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
- job: Build_java
displayName: Docker Build and Push - Java
pool:
vmImage: 'ubuntu-latest'
steps:
- task: Docker@2
inputs:
command: 'login'
containerRegistry: sl_docker
- task: Docker@2
displayName: Build java image
inputs:
command: 'buildAndPush'
dockerfile: '$(Build.SourcesDirectory)/ci/Dockerfile-java'
repository: shiftleft/scan-java
buildContext: $(Build.SourcesDirectory)
tags: |
$(tag)
- task: Docker@2
displayName: Release java image
inputs:
command: 'buildAndPush'
dockerfile: '$(Build.SourcesDirectory)/ci/Dockerfile-java'
repository: shiftleft/scan-java
buildContext: $(Build.SourcesDirectory)
tags: |
latest
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
- job: Build_csharp
displayName: Docker Build and Push - Csharp
pool:
vmImage: 'ubuntu-latest'
steps:
- task: Docker@2
inputs:
command: 'login'
containerRegistry: sl_docker
- task: Docker@2
displayName: Build csharp image
inputs:
command: 'buildAndPush'
dockerfile: '$(Build.SourcesDirectory)/ci/Dockerfile-csharp'
repository: shiftleft/scan-csharp
buildContext: $(Build.SourcesDirectory)
tags: |
$(tag)
- task: Docker@2
displayName: Build csharp image
inputs:
command: 'buildAndPush'
dockerfile: '$(Build.SourcesDirectory)/ci/Dockerfile-csharp'
repository: shiftleft/scan-csharp
buildContext: $(Build.SourcesDirectory)
tags: |
latest
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))