-
-
Notifications
You must be signed in to change notification settings - Fork 0
329 lines (279 loc) · 9.42 KB
/
on_pr.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
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
---
name: Pull Request
on:
# Enable manual running of action if necessary
workflow_dispatch:
# Build and test deployment the image on pushes to main branch
pull_request:
# # Only publish on push to main branch
# branches:
# - main
# Only run if the PR yaml, Dockerfile, sh, py or rs files have changed
paths:
- Dockerfile**
- "**on_pr.yaml"
- "**.py"
- "**.rs"
- "**.sh"
- "**.toml"
jobs:
hadolint:
name: "Linting: hadolint"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.3
- name: Pull hadolint/hadolint:latest Image
run: docker pull hadolint/hadolint:latest
- name: Run hadolint against Dockerfiles
run: docker run --rm -i -v "$PWD":/workdir --workdir /workdir --entrypoint hadolint hadolint/hadolint --ignore DL3013 --ignore DL3008 $(find . -type f -iname "Dockerfile*")
test_rust_functionality:
name: Build and test rust functionality
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.3
with:
fetch-depth: 0
- name: Install Rust and deps
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
sudo apt-get update
sudo apt-get install -y --no-install-recommends libzmq3-dev
- name: Get binary version from Cargo.toml
id: release_version
run: |
# Get version from Cargo.toml
RELEASE_VERSION=$(cat ./rust/bin/sdre-hub/Cargo.toml | grep '\[package\]' -A9999 | grep -m 1 'version = ' | tr -d " " | tr -d '"' | tr -d "'" | cut -d = -f 2)
echo "$RELEASE_VERSION"
binary_build_armv7:
name: Build Binary - armv7
runs-on: ubuntu-latest
# needs: test_rust_functionality
steps:
- name: Checkout
uses: actions/checkout@v4.1.3
with:
fetch-depth: 0
- name: Run Docker on tmpfs
uses: JonasAlfredsson/docker-on-tmpfs@v1
with:
tmpfs_size: 5
swap_size: 4
swap_location: "/mnt/swapfile"
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build armv7
uses: docker/build-push-action@v5
with:
context: .
push: false
file: Dockerfile.build_binary
tags: sdre-hub:armv7
platforms: linux/arm/v7
outputs: type=local,dest=./image_armv7/
- name: Upload artifact armv7 binary
uses: actions/upload-artifact@v4.3.3
with:
name: sdre-hub.armv7
path: ./image_armv7/sdre-hub
binary_build_arm64:
name: Build Binary - arm64
runs-on: ubuntu-latest
# needs: test_rust_functionality
steps:
- name: Checkout
uses: actions/checkout@v4.1.3
with:
fetch-depth: 0
- name: Run Docker on tmpfs
uses: JonasAlfredsson/docker-on-tmpfs@v1
with:
tmpfs_size: 5
swap_size: 4
swap_location: "/mnt/swapfile"
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build arm64
uses: docker/build-push-action@v5
with:
context: .
push: false
file: Dockerfile.build_binary
tags: sdre-hub:arm64
platforms: linux/arm64
outputs: type=local,dest=./image_arm64/
- name: Upload artifact arm64 binary
uses: actions/upload-artifact@v4.3.3
with:
name: sdre-hub.arm64
path: ./image_arm64/sdre-hub
binary_build_amd64:
name: Build Binary - amd64
runs-on: ubuntu-latest
needs: test_rust_functionality
steps:
- name: Checkout
uses: actions/checkout@v4.1.3
with:
fetch-depth: 0
- name: Run Docker on tmpfs
uses: JonasAlfredsson/docker-on-tmpfs@v1
with:
tmpfs_size: 5
swap_size: 4
swap_location: "/mnt/swapfile"
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build amd64
uses: docker/build-push-action@v5
with:
context: .
push: false
file: Dockerfile.build_binary
tags: sdre-hub:amd64
platforms: linux/amd64
outputs: type=local,dest=./image_amd64/
- name: Upload artifact amd64 binary
uses: actions/upload-artifact@v4.3.3
with:
name: sdre-hub.amd64
path: ./image_amd64/sdre-hub
frontend_build:
name: Build Frontend
runs-on: ubuntu-latest
needs: [test_rust_functionality]
steps:
- name: Checkout
uses: actions/checkout@v4.1.2
with:
fetch-depth: 0
- name: Run Docker on tmpfs
uses: JonasAlfredsson/docker-on-tmpfs@v1
with:
tmpfs_size: 5
swap_size: 4
swap_location: "/mnt/swapfile"
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build amd64
uses: docker/build-push-action@v5
with:
context: .
push: false
file: Dockerfile.build_frontend
tags: sdre-hub:amd64
platforms: linux/amd64
outputs: type=local,dest=./frontend
- name: Upload artifact amd64 binary
uses: actions/upload-artifact@v4.3.1
with:
name: frontend
path: ./frontend/sh-frontend
consolidate_binaries:
name: Consolidate & Cache Binaries
runs-on: ubuntu-latest
needs:
[
binary_build_amd64,
binary_build_arm64,
binary_build_armv7,
frontend_build,
]
steps:
- run: mkdir -p ./bin
- uses: actions/download-artifact@v4.1.6
with:
name: sdre-hub.amd64
path: ./bin/sdre-hub.amd64
- uses: actions/download-artifact@v4.1.6
with:
name: sdre-hub.armv7
path: ./bin/sdre-hub.armv7
- uses: actions/download-artifact@v4.1.6
with:
name: sdre-hub.arm64
path: ./bin/sdre-hub.arm64
- uses: actions/download-artifact@v4.1.6
with:
name: frontend
path: ./bin/sh-frontend
- uses: actions/download-artifact@v4.1.6
with:
name: mac_app
path: ./Apps/SDR-E\ Hub.app
- run: ls -la */*
- name: Cache Binaries
uses: actions/cache@v4
with:
path: ./bin/
key: ${{ github.run_id }}
test_docker_image_build:
name: Test Docker Image Build
needs: [hadolint, consolidate_binaries, test_rust_functionality]
uses: sdr-enthusiasts/common-github-workflows/.github/workflows/build_and_push_image.yml@main
with:
get_version_method: cargo_toml_file_in_repo:file=/Cargo.toml
build_with_tmpfs: true
build_nohealthcheck: false
cache_enabled: true
cache_path: ./bin/
cache_key: ${{ github.run_id }}
publish-tauri:
name: Publish Tauri
permissions:
contents: write
strategy:
fail-fast: false
matrix:
include:
- platform: "macos-latest" # for Arm based macs (M1 and above).
args: "--target aarch64-apple-darwin"
- platform: "macos-latest" # for Intel based macs.
args: "--target x86_64-apple-darwin"
- platform: "ubuntu-22.04" # for Tauri v1 you could replace this with ubuntu-20.04.
args: ""
- platform: "windows-latest"
args: ""
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
# Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf libsoup2.4-dev libjavascriptcoregtk-4.0-dev
- name: install other stuff
run: |
curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
cargo binstall trunk wasm-bindgen-cli --no-confirm
rustup target add wasm32-unknown-unknown
# - name: install frontend dependencies
# run: yarn install # change this to npm, pnpm or bun depending on which one you use.
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version.
releaseName: "App v__VERSION__"
releaseBody: "See the assets to download this version and install."
releaseDraft: true
prerelease: false
args: ${{ matrix.args }}