-
Notifications
You must be signed in to change notification settings - Fork 1.1k
70 lines (68 loc) · 1.99 KB
/
pkr-bld-parallels-arm64.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
---
on:
workflow_call:
env:
PACKER_GITHUB_API_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
# PACKER_LOG: "1"
jobs:
aarch64:
runs-on: [self-hosted, ARM64, parallels]
strategy:
fail-fast: false
matrix:
os:
- almalinux-8
- almalinux-9
- centos-stream-9
- debian-11
- debian-12
- fedora-40
- fedora-41
- freebsd-13
- freebsd-14
- opensuse-leap-15
- oraclelinux-8
- oraclelinux-9
- rockylinux-8
- rockylinux-9
- ubuntu-20.04
- ubuntu-22.04
- ubuntu-24.04
provider:
- parallels-iso
steps:
- name: Checkout
uses: actions/checkout@main
# - name: Setup Packer
# if: steps.verify-changed-files.outputs.files_changed == 'true'
# uses: hashicorp/setup-packer@main
# with:
# version: latest
- name: Bento build
run: |
eval "$(chef shell-init bash)"
bento build -o ${{ matrix.provider }}.vm os_pkrvars/$(echo ${{ matrix.os }} | cut -d "-" -f 1)/"${{ matrix.os }}-aarch64.pkrvars.hcl"
ls -alh builds/
cat builds/${{ matrix.os }}*-aarch64._metadata.json
- name: Remove VM in case of canceled job
if: cancelled()
run: |
VM="$(prlctl list -a | grep ${{ matrix.os }} | cut -d " " -f 1)"
echo Powering off and deleting any existing VMs named ${{ matrix.os }}*-aarch64
prlctl stop "$VM" --kill 2> /dev/null
sleep 1
prlctl delete "$VM" 2> /dev/null
sleep 2
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: "${{ matrix.os }}-parallels-aarch64"
path: |
builds/*.box
builds/*.json
retention-days: 10
compression-level: 0 # no compression
- name: Bento Test
run: |
eval "$(chef shell-init bash)"
bento test