forked from marcinbojko/hv-packer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
298 lines (268 loc) · 6.03 KB
/
.gitlab-ci.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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
variables:
packer_version: "1.10.3"
install_packer: "true"
build_alma8: "false"
build_alma9: "false"
build_rocky8: "false"
build_rocky9: "false"
build_oracle8: "false"
build_oracle9: "false"
build_ubuntu2004: "false"
build_ubuntu2204: "false"
build_ubuntu2404: "false"
build_windows2022_std: "false"
build_windows2022_dc: "false"
build_windows2019_std: "false"
build_windows2019_dc: "false"
default:
artifacts:
expire_in: 4 hour
when: always
retry:
max: 2
when:
- runner_system_failure
- stuck_or_timeout_failure
- api_failure
- script_failure
stages:
- validate
- install_packer
- build
- alma_build
- rocky_build
- oracle_build
- windows_build
- ubuntu_build
.validate:
stage: validate
variables:
ACTION: verify
LOG: 0
script:
- pwd
- '$env:PACKER_CACHE_DIR="d:\packer_cache"'
- packer init config.pkr.hcl
- .\hv_generic.ps1 -Action $ACTION -Version $VERSION -Template $TEMPLATE -Log $LOG
tags:
- windows
- hyperv
.build:
stage: build
variables:
ACTION: build
LOG: 0
script:
- pwd
- '$env:PACKER_CACHE_DIR="d:\packer_cache"'
- packer init config.pkr.hcl
- Get-VM -Name packer-* | Remove-VM -Force -Verbose -ErrorAction SilentlyContinue;$true
- .\hv_generic.ps1 -Action $ACTION -Version $VERSION -Template $TEMPLATE -Log $LOG
tags:
- windows
- hyperv
resource_group: build
alma8:
variables:
VERSION: almalinux-8.9
TEMPLATE: rhel
extends: .validate
alma9:
variables:
VERSION: almalinux-9.4
TEMPLATE: rhel
extends: .validate
rocky8:
variables:
VERSION: rockylinux-8.9
TEMPLATE: rhel
extends: .validate
rocky9:
variables:
VERSION: rockylinux-9.4
TEMPLATE: rhel
extends: .validate
oracle8:
variables:
VERSION: oraclelinux-8.9
TEMPLATE: rhel
extends: .validate
oracle9:
variables:
VERSION: oraclelinux-9.4
TEMPLATE: rhel
extends: .validate
windows2022std:
variables:
VERSION: windows_server_2022_std
TEMPLATE: windows
extends: .validate
windows2022dc:
variables:
VERSION: windows_server_2022_dc
TEMPLATE: windows
extends: .validate
windows2019std:
variables:
VERSION: windows_server_2019_std
TEMPLATE: windows
extends: .validate
windows2019dc:
variables:
VERSION: windows_server_2019_dc
TEMPLATE: windows
extends: .validate
ubuntu2004:
variables:
VERSION: ubuntu-20.04
TEMPLATE: ubuntu
extends: .validate
ubuntu2204:
variables:
VERSION: ubuntu-22.04
TEMPLATE: ubuntu
extends: .validate
ubuntu2404:
variables:
VERSION: ubuntu-24.04
TEMPLATE: ubuntu
extends: .validate
# Here building starts
# Install required packer choco package
install_packer:
variables:
GIT_STRATEGY: none
stage: install_packer
before_script:
- pwd
- echo $CI_COMMIT_BRANCH
- '$env:PACKER_CACHE_DIR="d:\packer_cache"'
- "Get-Vm -name packer-*|Stop-VM -Force -TurnOff -Verbose"
- Sleep 30
- "Get-Vm -name packer-*|Remove-VM -Force"
script:
- choco upgrade packer --version $packer_version -y
- packer --version
tags:
- windows
- hyperv
rules:
- if: $CI_COMMIT_BRANCH == "build" || $install_packer == "true"
when: always
alma8_build:
stage: alma_build
variables:
VERSION: almalinux-8.9
TEMPLATE: rhel
rules:
- if: '$CI_COMMIT_BRANCH == "build" || $build_alma8 == "true"'
when: always
extends: .build
alma9_build:
stage: alma_build
variables:
VERSION: almalinux-9.4
TEMPLATE: rhel
rules:
- if: '$CI_COMMIT_BRANCH == "build" || $build_alma9 == "true"'
when: always
extends: .build
rocky8_build:
stage: rocky_build
variables:
VERSION: rockylinux-8.9
TEMPLATE: rhel
rules:
- if: '$CI_COMMIT_BRANCH == "build" || $build_rocky8 == "true"'
when: always
extends: .build
rocky9_build:
stage: rocky_build
variables:
VERSION: rockylinux-9.4
TEMPLATE: rhel
rules:
- if: '$CI_COMMIT_BRANCH == "build" || $build_rocky9 == "true"'
when: always
extends: .build
oracle8_build:
stage: oracle_build
variables:
VERSION: oraclelinux-8.9
TEMPLATE: rhel
rules:
- if: '$CI_COMMIT_BRANCH == "build" || $build_oracle8 == "true"'
when: always
extends: .build
oracle9_build:
stage: oracle_build
variables:
VERSION: oraclelinux-9.4
TEMPLATE: rhel
rules:
- if: '$CI_COMMIT_BRANCH == "build" || $build_oracle9 == "true"'
when: always
extends: .build
windows2022_std_build:
stage: windows_build
variables:
VERSION: windows_server_2022_std
TEMPLATE: windows
rules:
- if: '$CI_COMMIT_BRANCH == "build" || $build_windows2022_std == "true"'
when: always
extends: .build
windows2022_dc_build:
stage: windows_build
variables:
VERSION: windows_server_2022_dc
TEMPLATE: windows
rules:
- if: '$CI_COMMIT_BRANCH == "build" || $build_windows2022_dc == "true"'
when: always
extends: .build
windows2019_std_build:
stage: windows_build
variables:
VERSION: windows_server_2019_std
TEMPLATE: windows
rules:
- if: '$CI_COMMIT_BRANCH == "build" || $build_windows2019_std == "true"'
when: always
extends: .build
windows2019_dc_build:
stage: windows_build
variables:
VERSION: windows_server_2019_dc
TEMPLATE: windows
rules:
- if: '$CI_COMMIT_BRANCH == "build" || $build_windows2019_dc == "true"'
when: always
extends: .build
ubuntu2004_build:
stage: ubuntu_build
variables:
VERSION: ubuntu-20.04
TEMPLATE: ubuntu
rules:
- if: '$CI_COMMIT_BRANCH == "build" || $build_ubuntu2004 == "true"'
when: always
extends: .build
ubuntu2204_build:
stage: ubuntu_build
variables:
VERSION: ubuntu-22.04
TEMPLATE: ubuntu
rules:
- if: '$CI_COMMIT_BRANCH == "build" || $build_ubuntu2204 == "true"'
when: always
extends: .build
ubuntu2404_build:
stage: ubuntu_build
variables:
VERSION: ubuntu-24.04
TEMPLATE: ubuntu
rules:
- if: '$CI_COMMIT_BRANCH == "build" || $build_ubuntu2404 == "true"'
when: always
extends: .build