-
Notifications
You must be signed in to change notification settings - Fork 2
65 lines (54 loc) · 1.53 KB
/
build.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
name: Build NAV appliance
on: [push, pull_request, workflow_dispatch]
jobs:
packer:
name: "Build appliance using Packer"
runs-on: macos-12
permissions:
contents: write
env:
PACKER_LOG: 1
PACKER_CACHE: ~/.cache/packer
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Create packer cache directory
run: |
mkdir -p $PACKER_CACHE
- name: Get ISO checksums
id: get-checksum
run: |
echo "checksum=$(cat bullseye.json | jq '.builders[].iso_checksum')" >> $GITHUB_OUTPUT
shell: bash
- name: "Cache downloaded packer images"
uses: actions/cache/save@v3
if: always()
id: packer-cache
with:
path: ~/.cache/packer
key: ${{ steps.get-checksum.outputs.checksum }}
- name: Install virtualbox plugin
run: |
packer plugins install github.com/hashicorp/virtualbox
- name: Validate Template
run: |
packer validate bullseye.json
- name: Build Artifact
run: |
packer build bullseye.json
- name: List directory contents
if: always()
run: |
ls -la $PWD
- name: Upload video artifact
uses: actions/upload-artifact@v2
with:
name: video
path: |
**/*.webm
- name: Upload appliance artifact
uses: actions/upload-artifact@v2
with:
name: navappliance
path: |
navappliance/**/*