-
-
Notifications
You must be signed in to change notification settings - Fork 39
232 lines (196 loc) · 7.36 KB
/
build-release.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
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
name: Create Release Build
on: [ workflow_dispatch, workflow_call ]
jobs:
get_version:
name: "Version"
uses: ./.github/workflows/get-version.yml
build_windows:
name: "Create Windows Build"
runs-on: windows-latest
needs: [ get_version ]
steps:
# Firstly Checkout our Repository..
- name: "Check out GoXLR Utility"
uses: actions/checkout@v4
with:
path: goxlr-utility
# Now Checkout the App Wrappers repository..
# - name: "Check out GoXLR Utility UI"
# uses: actions/checkout@v4
# with:
# repository: frostycoolslug/goxlr-utility-ui
# path: goxlr-utility-ui
- name: "Install Rust"
uses: dtolnay/rust-toolchain@stable
- name: "Loading Cache"
uses: actions/cache@v4
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
goxlr-utility/target
key: ${{ runner.os }}-cargo-release-${{ hashFiles('goxlr-utility/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-release-
- name: "Build Utility"
run: "cargo build --manifest-path=goxlr-utility/Cargo.toml --release --all-features"
# Build the UI into the same target directory..
# - name: "Build UI"
# run: "cargo build --manifest-path=goxlr-utility-ui/src-tauri/Cargo.toml --target-dir=goxlr-utility/target --release"
- name: "Downloading UI 0.0.4"
uses: suisei-cn/[email protected]
with:
url: https://github.com/FrostyCoolSlug/goxlr-utility-ui/releases/download/v0.0.4/goxlr-utility-ui-0.0.4.exe
target: goxlr-utility/target/release/
filename: goxlr-utility-ui.exe
# Prepare NSIS
- name: "Preparing NSIS"
run: mkdir -p ${{ github.workspace }}/NSIS_Plugins/x86-unicode/
- name: "Downloading Tauri Utility Plugin"
uses: suisei-cn/[email protected]
with:
url: https://github.com/tauri-apps/nsis-tauri-utils/releases/download/nsis_tauri_utils-v0.1.1/nsis_tauri_utils.dll
target: ${{ github.workspace }}/NSIS_Plugins/x86-unicode/
- name: "Downloading WebView2 Bootstrapper"
uses: suisei-cn/[email protected]
with:
url: https://go.microsoft.com/fwlink/p/?LinkId=2124703
filename: MicrosoftEdgeWebview2Setup.exe
target: goxlr-utility/ci/nsis/
- name: "Downloading VC Runtime"
uses: suisei-cn/[email protected]
with:
url: https://aka.ms/vs/17/release/vc_redist.x64.exe
filename: vc_redist.x64.exe
target: goxlr-utility/ci/nsis/
- name: "Build NSIS Packages"
uses: joncloud/makensis-action@publish
with:
additional-plugin-paths: ${{ github.workspace }}/NSIS_Plugins
script-file: goxlr-utility/ci/nsis/goxlr-utility.nsi
arguments: "/DPRODUCT_VERSION=${{ needs.get_version.outputs.version }}"
- name: "Upload Installer"
uses: actions/upload-artifact@v4
with:
name: windows-artifact
path: ./goxlr-utility/ci/Output/*.exe
build_linux:
name: "Create Linux Builds"
runs-on: ubuntu-22.04
needs: [ get_version ]
steps:
- name: "Check out Repository"
uses: actions/checkout@v4
- name: "Install Rust"
uses: dtolnay/rust-toolchain@stable
- name: "Install Required Libraries"
run: |
sudo apt-get update
sudo apt-get install libpulse0 libdbus-1-dev pkg-config libspeechd-dev
- name: "Loading Cache"
uses: actions/cache@v4
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-release-${{ hashFiles('goxlr-utility/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-release-
- name: Install cargo-deb and cargo-generate-rpm
run: cargo install --force cargo-deb cargo-generate-rpm
- name: "Build Packages"
run: ./ci/build-packages
shell: bash
- name: "Upload DEB Artifact"
uses: actions/upload-artifact@v4
with:
name: debian-artifact
path: ./target/debian/*.deb
- name: "Upload RPM Artifact"
uses: actions/upload-artifact@v4
with:
name: rpm-artifact
path: ./target/generate-rpm/*.rpm
build_macos:
name: "Create MacOS Builds"
strategy:
matrix:
targets: [ x86_64-apple-darwin, aarch64-apple-darwin ]
runs-on: macos-12
needs: [ get_version ]
steps:
- name: "Checkout Repository"
uses: actions/checkout@v4
with:
path: goxlr-utility
# Now Checkout the App Wrappers repository..
- name: "Check out GoXLR Utility UI"
uses: actions/checkout@v4
with:
repository: frostycoolslug/goxlr-utility-ui
path: goxlr-utility-ui
- name: "Install Rust"
uses: dtolnay/rust-toolchain@stable
- name: "Loading Cache"
uses: actions/cache@v4
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
goxlr-utility/target
key: ${{ runner.os }}-${{ matrix.targets }}-cargo-release-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-${{ matrix.targets }}-cargo-release-
- name: "Add rust target support"
run: rustup target add ${{ matrix.targets }}
- name: "Build Package"
run: ./goxlr-utility/ci/build-macos '${{ matrix.targets }}' '${{ needs.get_version.outputs.version }}'
shell: bash
- name: "Upload MacOS zip Artifact"
uses: actions/upload-artifact@v4
with:
name: macos-artifact-${{ matrix.targets }}
path: ./macos_binaries_*.tgz
package_macos:
name: "Package MacOS Binaries"
runs-on: macos-12
needs: [ get_version, build_macos ]
steps:
- name: "Checkout Repository"
uses: actions/checkout@v4
- name: "Download x86_64 Artifact"
uses: actions/download-artifact@v4
with:
name: "macos-artifact-x86_64-apple-darwin"
- name: "Download aarch64 Artifact"
uses: actions/download-artifact@v4
with:
name: "macos-artifact-aarch64-apple-darwin"
- name: "Install Packages App.."
run: |
wget http://s.sudre.free.fr/Software/files/Packages.dmg
hdiutil attach Packages.dmg
sudo installer -pkg /Volumes/Packages\ 1.2.10/Install\ Packages.pkg -target /
- name: "Build LIPO Binaries"
run: ./ci/build-macos-package '${{ needs.get_version.outputs.version }}'
shell: bash
- name: "Upload MacOS final Artifact"
uses: actions/upload-artifact@v4
with:
name: macos-artifact
path: ./goxlr-utility-macos-*.pkg
- name: "Remove x64 artifact"
uses: geekyeggo/delete-artifact@v4
with:
name: macos-artifact-x86_64-apple-darwin
- name: "Remove aarch artifact"
uses: geekyeggo/delete-artifact@v4
with:
name: macos-artifact-aarch64-apple-darwin