forked from AlmaLinux/cloud-images
-
Notifications
You must be signed in to change notification settings - Fork 0
399 lines (364 loc) · 16.8 KB
/
Copy pathbuild.yml
File metadata and controls
399 lines (364 loc) · 16.8 KB
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
name: Build Cloud and Vagrant Images
on:
workflow_dispatch:
inputs:
date_time_stamp:
description: 'Custom date+time stamp, YYYYMMDDhhmmss'
required: false
default: ''
version_major:
description: 'AlmaLinux major version'
required: true
default: '10'
type: choice
options:
- 10-kitten
- 10
- 9
- 8
image_type:
description: 'Cloud image type'
required: true
default: 'NONE'
type: choice
options:
- NONE
- ALL
- azure
# - digitalocean # TODO: require data to work with the cloud, such as: bucket, access key, secret key, etc.
- gcp
- gencloud
- oci
- opennebula
vagrant_type:
description: 'Vagrant image type'
required: true
default: 'NONE'
type: choice
options:
- NONE
- ALL
- vagrant_libvirt
- vagrant_virtualbox
- vagrant_vmware
self-hosted:
description: "Allow self-hosted runner (aarch64 or vagrant_vmware only)"
required: true
type: boolean
default: true
self_hosted_runner:
description: 'self-hosted runner'
required: true
default: 'aws-ec2'
type: choice
options:
- self-hosted
- aws-ec2
# TODO: the maximum number of inputs is 10, so can't add more
# run_test:
# description: "Do image simple testing and generate installed packages list (vagrant_* only)"
# required: true
# type: boolean
# default: false
store_as_artifact:
description: "Store images to the workflow Artifacts"
required: true
type: boolean
default: false
upload_to_s3:
description: "Upload to S3 Bucket"
required: true
type: boolean
default: true
vagrant_publish:
description: "Publish to Vagrant Cloud (vagrant_* only)"
required: true
type: boolean
default: false
notify_mattermost:
description: "Send notification to Mattermost"
required: true
type: boolean
default: false
jobs:
init-data:
name: Initialize common data
runs-on: ubuntu-24.04
outputs:
time_stamp: ${{ steps.date-time-stamp.outputs.time_stamp }}
date_stamp: ${{ steps.date-time-stamp.outputs.date_stamp }}
matrix_gh: ${{ steps.set-matrix.outputs.matrix_gh }}
matrix_sh: ${{ steps.set-matrix.outputs.matrix_sh }}
steps:
- name: Set matrix
id: set-matrix
run: |
# Build matrix is json array of string elements like:
matrix_gh= # ["azure-x86_64", "gencloud-x86_64", ...]
matrix_sh= # ["azure-aarch64", "gencloud-aarch64", ... , "vagrant_vmware-x86_64"]
# Cloud Images
if [ "${{ inputs.image_type }}" = "azure" -o "${{ inputs.image_type }}" = "ALL" ]; then
VARIANTS_GH+=("azure-x86_64")
VARIANTS_GH+=("azure-aarch64")
fi
if [ "${{ inputs.image_type }}" = "gcp" -o "${{ inputs.image_type }}" = "ALL" ]; then
VARIANTS_GH+=("gcp-x86_64")
VARIANTS_GH+=("gcp-aarch64")
fi
if [ "${{ inputs.image_type }}" = "digitalocean" -o "${{ inputs.image_type }}" = "ALL" ]; then
if [[ "${{ inputs.version_major }}" != *"kitten"* ]] && [[ "${{ inputs.version_major }}" != *"10" ]]; then
VARIANTS_GH+=("digitalocean-x86_64")
fi
fi
if [ "${{ inputs.image_type }}" = "gencloud" -o "${{ inputs.image_type }}" = "ALL" ]; then
VARIANTS_GH+=("gencloud-x86_64")
VARIANTS_GH+=("gencloud-aarch64")
fi
if [ "${{ inputs.image_type }}" = "oci" -o "${{ inputs.image_type }}" = "ALL" ]; then
if [[ "${{ inputs.version_major }}" != *"kitten"* ]]; then
VARIANTS_GH+=("oci-x86_64")
VARIANTS_GH+=("oci-aarch64")
fi
fi
if [ "${{ inputs.image_type }}" = "opennebula" -o "${{ inputs.image_type }}" = "ALL" ]; then
VARIANTS_GH+=("opennebula-x86_64")
VARIANTS_GH+=("opennebula-aarch64")
fi
# Vagrant Images
if [ "${{ inputs.vagrant_type }}" = "vagrant_libvirt" -o "${{ inputs.vagrant_type }}" = "ALL" ]; then
VARIANTS_GH+=("vagrant_libvirt-x86_64")
fi
if [ "${{ inputs.vagrant_type }}" = "vagrant_virtualbox" -o "${{ inputs.vagrant_type }}" = "ALL" ]; then
VARIANTS_GH+=("vagrant_virtualbox-x86_64") # tests aren't work on GitHub runners, use self-hosted to run tests
fi
if [ "${{ inputs.vagrant_type }}" = "vagrant_vmware" -o "${{ inputs.vagrant_type }}" = "ALL" ]; then
VARIANTS_SH+=("vagrant_vmware-x86_64") # VMware has networking issues on GitHub runners, so we use self-hosted runner
fi
[ ${#VARIANTS_GH[@]} -ne 0 ] && matrix_gh=$(printf '"%s",' "${VARIANTS_GH[@]}")
matrix_gh=${matrix_gh%,} # Remove the trailing comma
echo matrix_gh=$(jq -c <<< [${matrix_gh}]) >> $GITHUB_OUTPUT
echo "[Debug] on GitHub Hosted [${matrix_gh}]"
[ ${#VARIANTS_SH[@]} -ne 0 ] && matrix_sh=$(printf '"%s",' "${VARIANTS_SH[@]}")
matrix_sh=${matrix_sh%,} # Remove the trailing comma
echo matrix_sh=$(jq -c <<< [${matrix_sh}]) >> $GITHUB_OUTPUT
echo "[Debug] on Self Hosted [${matrix_sh}]"
- name: Date+time stamp
id: date-time-stamp
run: |
# date+time stamp, YYYYMMDDhhmmss
if [ "${{ inputs.date_time_stamp }}" != "" ]; then
date_time_stamp="${{ inputs.date_time_stamp }}"
else
date_time_stamp=$(date -u '+%Y%m%d%H%M%S')
fi
echo "time_stamp=${date_time_stamp}" >> $GITHUB_OUTPUT
# date stamp, YYYYMMDD
date_stamp=${date_time_stamp:0:-6}
echo "date_stamp=${date_stamp}" >> "$GITHUB_OUTPUT"
build-gh-hosted:
name: ${{ matrix.variant }} ${{ matrix.matrix_gh }} image
permissions:
id-token: write
contents: read
needs: [init-data]
if: ${{ needs.init-data.outputs.matrix_gh != '[]' }}
# use runs-on runners if within the almalinux org, otherwise GH runners"
runs-on: "${{ github.repository_owner == 'AlmaLinux' && format('runs-on={0}/family=c7i.metal-24xl+c7a.metal-48xl+*8gd.metal*/image=ubuntu24-full-{2}', github.run_id, matrix.variant, contains(matrix.matrix_gh, 'aarch64') && 'arm64' || 'x64') || 'ubuntu-24.04' }}"
strategy:
fail-fast: false
matrix:
variant: ${{ fromJSON(format('["{0}"]', ( inputs.version_major == '10-kitten' || inputs.version_major == '10' ) && format('{0}", "{0}-v2', inputs.version_major) || inputs.version_major )) }}
matrix_gh: ${{ fromJSON(needs.init-data.outputs.matrix_gh) }}
exclude:
- matrix_gh: 'azure-x86_64'
variant: '10-kitten-v2'
- matrix_gh: 'oci-x86_64'
variant: '10-kitten-v2'
- matrix_gh: 'gcp-x86_64'
variant: '10-kitten-v2'
# Kitten x86_64_v2 Vagrant for VirtualBox stuck on "Waiting for SSH to become available"
- matrix_gh: 'vagrant_virtualbox-x86_64'
variant: '10-kitten-v2'
- matrix_gh: 'digitalocean-x86_64'
variant: '10-kitten-v2'
- matrix_gh: 'azure-x86_64'
variant: '10-v2'
- matrix_gh: 'gcp-x86_64'
variant: '10-v2'
- matrix_gh: 'oci-x86_64'
variant: '10-v2'
- matrix_gh: 'digitalocean-x86_64'
variant: '10-v2'
env:
TIME_STAMP: ${{ needs.init-data.outputs.time_stamp }}
DATE_STAMP: ${{ needs.init-data.outputs.date_stamp }}
steps:
- name: Prepare some environment variables
run: |
# Read image type
IFS=- read -r type arch <<< "${{ matrix.matrix_gh }}"
echo "type=$type" >> $GITHUB_ENV
echo "ARCH=$arch" >> $GITHUB_ENV
- name: Checkout ${{ github.action_repository }}
uses: actions/checkout@v4
- uses: ./.github/actions/shared-steps
name: ${{ matrix.variant }} ${{ matrix.matrix_gh }} image
with:
type: ${{ env.type }}
variant: ${{ matrix.variant }}
arch: ${{ env.ARCH }}
S3_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
S3_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: ${{ vars.AWS_REGION }}
AWS_S3_BUCKET: ${{ vars.AWS_S3_BUCKET }}
MATTERMOST_WEBHOOK_URL: ${{ secrets.MATTERMOST_WEBHOOK_URL }}
MATTERMOST_CHANNEL: ${{ vars.MATTERMOST_CHANNEL }}
HCP_CLIENT_ID: ${{ secrets.HCP_CLIENT_ID }}
HCP_CLIENT_SECRET: ${{ secrets.HCP_CLIENT_SECRET }}
HCP_ORG: ${{ vars.HCP_ORG }}
vagrant_publish: ${{ inputs.vagrant_publish }}
store_as_artifact: ${{ inputs.store_as_artifact }}
upload_to_s3: ${{ inputs.upload_to_s3 }}
notify_mattermost: ${{ inputs.notify_mattermost }}
run_test: true # Do image simple testing and generate installed packages list (vagrant_* and GCP only)
# runner: ${{ github.repository_owner == 'AlmaLinux' && 'aws-ec2' || 'gh_hosted' }}
runner: gh_hosted
env:
PACKER_GITHUB_API_TOKEN: ${{ secrets.GIT_HUB_TOKEN }}
# start-self-hosted-runner:
# name: ${{ matrix.variant }} ${{ matrix.matrix_sh }} runner
# if: ${{ inputs.self-hosted && needs.init-data.outputs.matrix_sh != '[]' }}
# runs-on: ubuntu-24.04
# needs: [init-data]
# strategy:
# fail-fast: false
# matrix:
# variant: ${{ fromJSON(format('["{0}"]', ( (contains(needs.init-data.outputs.matrix_sh, 'azure-aarch64') && ( inputs.version_major == '9' || inputs.version_major == '10' || inputs.version_major == '10-kitten' ) ) && format('{0}", "{0}-64k', inputs.version_major) || ( ( (inputs.vagrant_type == 'vagrant_vmware' || inputs.vagrant_type == 'ALL') && ( inputs.version_major == '10' || inputs.version_major == '10-kitten' ) ) && format('{0}", "{0}-v2', inputs.version_major) || inputs.version_major ) ) )) }}
# matrix_sh: ${{ fromJSON(needs.init-data.outputs.matrix_sh) }}
# exclude:
# - matrix_sh: 'oci-aarch64'
# variant: '10-kitten'
# - matrix_sh: 'oci-aarch64'
# variant: '9-64k'
# - matrix_sh: 'oci-aarch64'
# variant: '10-kitten-64k'
# - matrix_sh: 'oci-aarch64'
# variant: '10-64k'
# - matrix_sh: 'gencloud-aarch64'
# variant: '9-64k'
# - matrix_sh: 'gencloud-aarch64'
# variant: '10-kitten-64k'
# - matrix_sh: 'gencloud-aarch64'
# variant: '10-64k'
# - matrix_sh: 'opennebula-aarch64'
# variant: '9-64k'
# - matrix_sh: 'opennebula-aarch64'
# variant: '10-kitten-64k'
# - matrix_sh: 'opennebula-aarch64'
# variant: '10-64k'
# # Metal runners can't run in parallel, so we exclude 64k images
# # - matrix_sh: 'azure-aarch64'
# # variant: '9-64k'
# # - matrix_sh: 'azure-aarch64'
# # variant: '10-kitten-64k'
# # - matrix_sh: 'azure-aarch64'
# # variant: '10-64k'
# steps:
# - name: Setup and start runner
# if: inputs.self_hosted_runner == 'aws-ec2'
# uses: NextChapterSoftware/ec2-action-builder@v1.10
# with:
# github_token: ${{ secrets.GIT_HUB_TOKEN }}
# aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }}
# aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# aws_region: ${{ vars.AWS_REGION }}
# ec2_ami_id: ${{ secrets[format('EC2_AMI_ID_AL9_{0}', ( contains(matrix.matrix_sh, 'x86_64') && 'X86_64' || 'AARCH64' ))] }}
# ec2_subnet_id: ${{ secrets.EC2_SUBNET_ID}} # Subnet and Security Group should match
# ec2_security_group_id: ${{ secrets.EC2_SECURITY_GROUP_ID }} # Availability Zones list for 'a1.metal' Instance Type
# ec2_instance_type: ${{ contains(matrix.matrix_sh, 'x86_64') && 'c5n.metal' || 'a1.metal' }}
# # aarch64 - t4g.medium a1.metal
# # x86_64 - t3.medium c5n.metal
# ec2_root_disk_size_gb: "16" # override default size which is too small for actions and tests stuff
# ec2_root_disk_ebs_class: "gp3" # use faster and cheeper storage instead of default 'gp2'
# ec2_instance_ttl: 30 # Optional (default is 60 minutes)
# ec2_spot_instance_strategy: None # Other options are: SpotOnly, BestEffort, MaxPerformance
# ec2_instance_tags: > # Required for IAM role resource permission scoping
# [
# {"Key": "Project", "Value": "GitHub Actions Self-hosted Runners"}
# ]
# build-self-hosted:
# name: ${{ matrix.variant }} ${{ matrix.matrix_sh }} image
# if: ${{ inputs.self-hosted && needs.init-data.outputs.matrix_sh != '[]' }}
# needs: [init-data, start-self-hosted-runner]
# runs-on: ${{ inputs.self_hosted_runner == 'aws-ec2' && github.run_id || matrix.matrix_sh }}
# strategy:
# fail-fast: false
# matrix:
# variant: ${{ fromJSON(format('["{0}"]', ( (contains(needs.init-data.outputs.matrix_sh, 'azure-aarch64') && ( inputs.version_major == '9' || inputs.version_major == '10' || inputs.version_major == '10-kitten' ) ) && format('{0}", "{0}-64k', inputs.version_major) || ( ( (inputs.vagrant_type == 'vagrant_vmware' || inputs.vagrant_type == 'ALL') && inputs.version_major == '10' ) && '10", "10-v2' || inputs.version_major ) ) )) }}
# matrix_sh: ${{ fromJSON(needs.init-data.outputs.matrix_sh) }}
# exclude:
# - matrix_sh: 'oci-aarch64'
# variant: '10-kitten'
# - matrix_sh: 'oci-aarch64'
# variant: '10'
# - matrix_sh: 'oci-aarch64'
# variant: '9-64k'
# - matrix_sh: 'oci-aarch64'
# variant: '10-kitten-64k'
# - matrix_sh: 'oci-aarch64'
# variant: '10-64k'
# - matrix_sh: 'gencloud-aarch64'
# variant: '9-64k'
# - matrix_sh: 'gencloud-aarch64'
# variant: '10-kitten-64k'
# - matrix_sh: 'gencloud-aarch64'
# variant: '10-64k'
# - matrix_sh: 'opennebula-aarch64'
# variant: '9-64k'
# - matrix_sh: 'opennebula-aarch64'
# variant: '10-kitten-64k'
# - matrix_sh: 'opennebula-aarch64'
# variant: '10-64k'
# # Metal runners can't run in parallel, so we exclude 64k images
# # - matrix_sh: 'azure-aarch64'
# # variant: '9-64k'
# # - matrix_sh: 'azure-aarch64'
# # variant: '10-kitten-64k'
# # - matrix_sh: 'azure-aarch64'
# # variant: '10-64k'
# env:
# TIME_STAMP: ${{ needs.init-data.outputs.time_stamp }}
# DATE_STAMP: ${{ needs.init-data.outputs.date_stamp }}
# steps:
# - name: Prepare some environment variables
# run: |
# # Read image type
# IFS=- read -r type arch <<< "${{ matrix.matrix_sh }}"
# echo "type=$type" >> $GITHUB_ENV
# echo "ARCH=$arch" >> $GITHUB_ENV
# - name: Clean up runner
# if: inputs.self_hosted_runner != 'aws-ec2'
# run: sudo rm -rf ansible .vagrant output-*
# - name: Checkout ${{ github.action_repository }}
# uses: actions/checkout@v4
# - uses: ./.github/actions/shared-steps
# name: ${{ matrix.variant }} ${{ matrix.matrix_sh }} image
# with:
# type: ${{ env.type }}
# variant: ${{ matrix.variant }}
# arch: ${{ env.ARCH }}
# S3_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
# S3_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# AWS_REGION: ${{ vars.AWS_REGION }}
# AWS_S3_BUCKET: ${{ vars.AWS_S3_BUCKET }}
# MATTERMOST_WEBHOOK_URL: ${{ secrets.MATTERMOST_WEBHOOK_URL }}
# MATTERMOST_CHANNEL: ${{ vars.MATTERMOST_CHANNEL }}
# HCP_CLIENT_ID: ${{ secrets.HCP_CLIENT_ID }}
# HCP_CLIENT_SECRET: ${{ secrets.HCP_CLIENT_SECRET }}
# HCP_ORG: ${{ vars.HCP_ORG }}
# vagrant_publish: ${{ inputs.vagrant_publish }}
# store_as_artifact: ${{ inputs.store_as_artifact }}
# upload_to_s3: ${{ inputs.upload_to_s3 }}
# notify_mattermost: ${{ inputs.notify_mattermost }}
# run_test: true # Do image simple testing and generate installed packages list (vagrant_* only)
# runner: self_hosted