-
-
Notifications
You must be signed in to change notification settings - Fork 1
99 lines (87 loc) · 2.75 KB
/
builder.yaml
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
name: Builder
env:
BUILD_ARGS: "--test"
MONITORED_FILES: "build.yaml config.yaml build.json config.json Dockerfile rootfs"
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
init:
runs-on: ubuntu-latest
name: Initialize builds
outputs:
changed: ${{ steps.check.outputs.changed }}
steps:
- name: Check out the repository
uses: actions/checkout@v4.1.2
- name: Get changed files
id: changed_files
uses: jitterbit/get-changed-files@v1
- name: Check if monitored files changed
id: check
run: |
declare -a changed
for file in ${{ env.MONITORED_FILES }}; do
if [[ -n ${changed} ]]; then
break
fi
if [[ "${{ steps.changed_files.outputs.all }}" =~ $file ]]; then
changed=true
fi
done
if [[ -n ${changed} ]]; then
echo "A monitored file changed.";
echo "changed=true" >> $GITHUB_OUTPUT
else
echo "No monitored files changed.";
fi
build:
needs: init
runs-on: ubuntu-latest
if: needs.init.outputs.changed == 'true'
name: Build add-on
strategy:
matrix:
arch: ["amd64", "armv7", "aarch64"]
steps:
- name: Check out repository
uses: actions/checkout@v4.1.2
- name: Get information
id: info
uses: home-assistant/actions/helpers/info@master
with:
path: "./"
- name: Check if add-on should be built
id: check
run: |
if [[ "${{ steps.info.outputs.architectures }}" =~ ${{ matrix.arch }} ]]; then
echo "build_arch=true" >> $GITHUB_OUTPUT
echo "image=$(echo ${{ steps.info.outputs.image }} | cut -d'/' -f3)" >> $GITHUB_OUTPUT
if [[ -z "${{ github.head_ref }}" ]] && [[ "${{ github.event_name }}" == "push" ]]; then
echo "BUILD_ARGS=" >> $GITHUB_ENV;
fi
else
echo "${{ matrix.arch }} is not a valid arch for this add-on, skipping build";
echo "build_arch=false" >> $GITHUB_OUTPUT
fi
- name: Login to GitHub Container Registry
if: env.BUILD_ARGS != '--test'
uses: docker/login-action@v3.1.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build add-on
if: steps.check.outputs.build_arch == 'true'
uses: home-assistant/builder@master
with:
args: |
${{ env.BUILD_ARGS }} \
--${{ matrix.arch }} \
--target /data/ \
--image "${{ steps.check.outputs.image }}" \
--addon