-
Notifications
You must be signed in to change notification settings - Fork 9
179 lines (150 loc) · 4.72 KB
/
docker-publish-multi.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
name: Publish Docker Image to Docker Hub
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: '16.x'
- name: Install redis
run: sudo apt-get install -y redis-server
- name: Install python dependencies
run: |
cd backend
python -m pip install --upgrade uv
uv venv
uv pip install -r requirements.txt
- name: Install node dependencies
run: |
cd frontend
npm install
npm run build
- name: Run Pytest
run: |
cd backend
source .venv/bin/activate
TEST=1 pytest
build:
needs: test
runs-on: ubuntu-latest
strategy:
matrix:
include:
- platform: linux/amd64
dockerfile: Dockerfile
- platform: linux/arm64/v8
dockerfile: Dockerfile
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
with:
version: latest
install: true
- name: Cache Docker layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ matrix.platform }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-${{ matrix.platform }}-
- name: Extract branch name
shell: bash
run: echo "BRANCH_NAME=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: Short SHA
shell: bash
run: echo "SHORT_SHA=${GITHUB_SHA:0:7}" >> $GITHUB_ENV
- name: Set up Depot CLI
uses: depot/setup-action@v1
# Build each platform without pushing
- name: Build (without push) for ${{ matrix.platform }}
uses: depot/build-push-action@v1
with:
project: rsbh2wrlkj
token: ${{ secrets.DEPOT_TOKEN }}
context: .
file: ./${{ matrix.dockerfile }}
push: false
platforms: ${{ matrix.platform }}
tags: frameos/frameos:${{ env.BRANCH_NAME }}-${{ env.SHORT_SHA }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
push-multiarch:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
with:
version: latest
install: true
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract branch name
shell: bash
run: echo "BRANCH_NAME=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: Short SHA
shell: bash
run: echo "SHORT_SHA=${GITHUB_SHA:0:7}" >> $GITHUB_ENV
- name: Set up Depot CLI
uses: depot/setup-action@v1
# Push all built platforms as a multi-arch image
- name: Push multi-arch image
uses: depot/build-push-action@v1
with:
project: rsbh2wrlkj
token: ${{ secrets.DEPOT_TOKEN }}
context: .
push: true
platforms: linux/amd64,linux/arm64/v8
tags: |
frameos/frameos:${{ env.BRANCH_NAME }}-${{ env.SHORT_SHA }}
frameos/frameos:latest
update-addon-repo:
name: Update Home Assistant Addon
needs: push-multiarch
runs-on: ubuntu-latest
steps:
- name: Checkout frameos-home-assistant-addon
uses: actions/checkout@v2
with:
repository: frameos/frameos-home-assistant-addon
token: ${{ secrets.ACTIONS_WRITE_TOKEN }}
ref: main
path: home-assistant-addon
- name: Update version in config.yaml
run: |
cd home-assistant-addon/frameos
echo "Updating version in config.yaml to main-${{ env.SHORT_SHA }}"
sed -i "s/^version: .*/version: main-${{ env.SHORT_SHA }}/" config.yaml
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
message: "Update FrameOS version to main-${{ env.SHORT_SHA }}"
add: "."
push: true
author_name: FrameOS Bot
author_email: [email protected]