-
Notifications
You must be signed in to change notification settings - Fork 159
405 lines (356 loc) · 13 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
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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
#
# build.yml - GitHub build action for OpenHantek6022
# Copyright (C) 2023- OpenHantek community
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
name: Build
# check if OH6022 builds on some recent operating systems
# deploy Ubuntu / macOS / Windows binaries
on: [push]
env:
# CMake build type (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
# ----------------------------
# --- Linux (Ubuntu) steps ---
# ----------------------------
#
linux-x86_64:
runs-on: ubuntu-22.04
steps:
# --- Clone the latest commit ---
- name: Checkout
uses: actions/checkout@v3
with:
fetch-tags: true
submodules: recursive
fetch-depth: 0
# --- Config git and get the version from "git describe" ---
- name: Config Git
id: config_git
shell: bash
run: |
git config user.email "Ho-Ro@users.noreply.github.com"
git config user.name "Ho-Ro"
git fetch --tags --force || true
git submodule update --init --recursive
echo "git_describe=$(git describe)"
echo "git_describe=$(git describe)" >> $GITHUB_OUTPUT
- name: Install Ubuntu Build Requirements
run: |
mkdir build
sudo apt update
# sudo apt -y upgrade
sudo apt install g++ make cmake fakeroot rpm qttools5-dev libfftw3-dev binutils-dev \
libusb-1.0-0-dev libqt5opengl5-dev mesa-common-dev libgl1-mesa-dev libgles2-mesa-dev
- name: Ubuntu Build
# GitHub hosts Linux runners on Standard_DS2_v2 virtual machines in Microsoft Azure:
# 2-core CPU, 7 GB of RAM memory, 14 GB of SSD disk space
working-directory: ${{github.workspace}}/build
run: |
cp ../CHANGELOG changelog
cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE
make -j8
fakeroot make -j8 package
ls -l packages
- name: Upload Ubuntu Artifacts
# *.deb *.rpm *.tgz
uses: actions/upload-artifact@v4
with:
name: openhantek_${{ steps.config_git.outputs.git_describe }}_linux_amd64
path: ${{github.workspace}}/build/packages/*
- name: Upload Linux Release Assets
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v1
with:
prerelease: true
files: ./build/packages/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# -------------------------
# --- macOS intel steps ---
# -------------------------
#
macos-intel:
runs-on: macos-13
steps:
# --- Clone the latest commit ---
- name: Checkout
uses: actions/checkout@v3
with:
fetch-tags: true
submodules: recursive
fetch-depth: 0
# --- Config git and get the version from "git describe" ---
- name: Config Git
id: config_git
shell: bash
run: |
git config user.email "Ho-Ro@users.noreply.github.com"
git config user.name "Ho-Ro"
git fetch --tags --force || true
git submodule update --init --recursive
echo "git_describe=$(git describe)"
echo "git_describe=$(git describe)" >> $GITHUB_OUTPUT
- name: Install macOS Build Requirements
run: |
mkdir build
brew install qt@5 fftw binutils create-dmg || true
- name: macOS intel Build
# GitHub hosts macOS runners in GitHub's own macOS Cloud:
# 4-core CPU, 14 GB of RAM memory, 14 GB of SSD disk space
working-directory: ${{github.workspace}}/build
run: |
cp ../CHANGELOG changelog
cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_PREFIX_PATH=$(brew --prefix qt@5)
make -j16
sudo make -j16 package
if test -d openhantek/OpenHantek.app; then
export PATH=$(brew --prefix qt@5)/bin:${PATH}
cd openhantek
macdeployqt OpenHantek.app -always-overwrite -verbose=1
python ../../utils/macdeployqtfix/macdeployqtfix.py \
--quiet OpenHantek.app/Contents/MacOS/OpenHantek $(brew --prefix qt@5)
create-dmg --volname OpenHantek --volicon ../../openhantek/res/images/OpenHantek.icns \
--window-pos 200 120 --window-size 800 400 --icon-size 100 --icon "OpenHantek.app" 200 190 \
--skip-jenkins --hide-extension "OpenHantek.app" --app-drop-link 600 185 \
--eula ../../LICENSE OpenHantek.dmg OpenHantek.app
cd ..
else
true
fi
if test -d openhantek/OpenHantek.app; then
cd openhantek
sudo tar -czf ../packages/openhantek_*_osx_*.tar.gz OpenHantek.app
if test -f OpenHantek.dmg; then
sudo mv OpenHantek.dmg ../packages/$(basename ../packages/openhantek_*_osx_*.tar.gz .tar.gz).dmg
fi
cd ..
ls -l packages
else
true
fi
- name: Upload macOS intel Artifacts
uses: actions/upload-artifact@v4
with:
name: openhantek_${{ steps.config_git.outputs.git_describe }}_osx_intel
path: ${{github.workspace}}/build/packages/*
- name: Upload macOS intel Release Assets
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v1
with:
prerelease: true
files: ./build/packages/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# -------------------------
# --- macOS arm64 steps ---
# -------------------------
#
macos-arm64:
runs-on: macos-14
steps:
# --- Clone the latest commit ---
- name: Checkout
uses: actions/checkout@v3
with:
fetch-tags: true
submodules: recursive
fetch-depth: 0
# --- Config git and get the version from "git describe" ---
- name: Config Git
id: config_git
shell: bash
run: |
git config user.email "Ho-Ro@users.noreply.github.com"
git config user.name "Ho-Ro"
git fetch --tags --force || true
git submodule update --init --recursive
echo "git_describe=$(git describe)"
echo "git_describe=$(git describe)" >> $GITHUB_OUTPUT
- name: Install macOS Build Requirements
run: |
mkdir build
brew install qt@5 fftw binutils create-dmg || true
- name: macOS arm64 Build
# GitHub hosts macOS runners in GitHub's own macOS Cloud:
# 3-core M1 CPU, 14 GB of RAM memory, 7 GB of SSD disk space
working-directory: ${{github.workspace}}/build
run: |
cp ../CHANGELOG changelog
cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_PREFIX_PATH=$(brew --prefix qt@5)
make -j12
sudo make -j12 package
if test -d openhantek/OpenHantek.app; then
export PATH=$(brew --prefix qt@5)/bin:${PATH}
cd openhantek
macdeployqt OpenHantek.app -always-overwrite -verbose=1
python ../../utils/macdeployqtfix/macdeployqtfix.py \
--quiet OpenHantek.app/Contents/MacOS/OpenHantek $(brew --prefix qt@5)
create-dmg --volname OpenHantek --volicon ../../openhantek/res/images/OpenHantek.icns \
--window-pos 200 120 --window-size 800 400 --icon-size 100 --icon "OpenHantek.app" 200 190 \
--skip-jenkins --hide-extension "OpenHantek.app" --app-drop-link 600 185 \
--eula ../../LICENSE OpenHantek.dmg OpenHantek.app
cd ..
else
true
fi
if test -d openhantek/OpenHantek.app; then
cd openhantek
sudo tar -czf ../packages/openhantek_*_osx_*.tar.gz OpenHantek.app
if test -f OpenHantek.dmg; then
sudo mv OpenHantek.dmg ../packages/$(basename ../packages/openhantek_*_osx_*.tar.gz .tar.gz).dmg
fi
cd ..
ls -l packages
else
true
fi
- name: Upload macOS arm64 Artifacts
uses: actions/upload-artifact@v4
with:
name: openhantek_${{ steps.config_git.outputs.git_describe }}_osx_arm64
path: ${{github.workspace}}/build/packages/*
- name: Upload macOS arm64 Release Assets
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v1
with:
prerelease: true
files: ./build/packages/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# ---------------------------
# --- Windows MINGW steps ---
# ---------------------------
#
windows-mingw_w64:
runs-on: windows-2022
steps:
# --- Clone the latest commit ---
- name: Checkout
uses: actions/checkout@v3
with:
fetch-tags: true
submodules: recursive
fetch-depth: 0
# --- Config git and get the version from "git describe" ---
- name: Config Git
id: config_git
shell: bash
run: |
git config user.email "Ho-Ro@users.noreply.github.com"
git config user.name "Ho-Ro"
git fetch --tags --force || true
git submodule update --init --recursive
echo "git_describe=$(git describe)"
echo "git_describe=$(git describe)" >> $GITHUB_OUTPUT
- name: Install MSYS2 Packages
uses: msys2/setup-msys2@v2
with:
update: true
install: >-
mingw-w64-x86_64-cmake
mingw-w64-x86_64-gcc
mingw-w64-x86_64-qt5-static
mingw-w64-x86_64-fftw
mingw-w64-x86_64-libusb
- name: Start Windows Build
shell: msys2 {0}
run: |
cmake -D CMAKE_PREFIX_PATH=/mingw64/qt5-static -D CMAKE_BUILD_TYPE=$BUILD_TYPE -B build
cmake --build build --parallel 8 --target package
- name: Create Windows Package
# GitHub hosts Windows runners on Standard_DS2_v2 virtual machines in Microsoft Azure:
# 2-core CPU, 7 GB of RAM memory, 14 GB of SSD disk space
working-directory: ${{github.workspace}}/build
shell: bash
run: |
# this ZIP package contains only OpenHantek.exe, just get the name
ZIP=$(basename packages/openhantek_*_mingw_x64.zip)
rm -f packages/openhantek_*_mingw_x64.*
cd openhantek
7z a ../packages/$ZIP *.exe driver documents
ls -l ../packages
- name: Upload Windows Artifacts
uses: actions/upload-artifact@v4
with:
name: openhantek_${{ steps.config_git.outputs.git_describe }}_mingw_x64
path: ./build/packages/*.zip
- name: Upload Windows Release Assets
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v1
with:
prerelease: true
files: ./build/packages/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# --------------------------
# --- Windows MSVC steps ---
# --------------------------
#
windows-msvc_x64:
runs-on: windows-2022
steps:
# --- Clone the latest commit ---
- name: Checkout
uses: actions/checkout@v3
with:
fetch-tags: true
submodules: recursive
fetch-depth: 0
# --- Config git and get the version from "git describe" ---
- name: Config Git
id: config_git
shell: bash
run: |
git config user.email "Ho-Ro@users.noreply.github.com"
git config user.name "Ho-Ro"
git fetch --tags --force || true
git submodule update --init --recursive
echo "git_describe=$(git describe)"
echo "git_describe=$(git describe)" >> $GITHUB_OUTPUT
- name: Install Qt for Windows
uses: jurplel/install-qt-action@v3
- name: Setup Windows MSVC Build
run:
md build &
call "%VCINSTALLDIR%/Auxiliary/Build/vcvars64.bat" &
cmake -G "Visual Studio 17 2022" -A x64 -DCMAKE_PREFIX_PATH=%Qt5_DIR% -DCMAKE_BUILD_TYPE=Release -Bbuild
- name: Windows MSVC Build
# GitHub hosts Windows runners on Standard_DS2_v2 virtual machines in Microsoft Azure:
# 2-core CPU, 7 GB of RAM memory, 14 GB of SSD disk space
working-directory: ${{github.workspace}}/build
shell: bash
run: |
cmake --build . --parallel 8 --config Release --target package
ZIP=$(basename packages/openhantek_*_msvc_x64.zip)
rm -f packages/openhantek_*_msvc_x64.*
cd openhantek/Release
7z a ../../packages/$ZIP *
cd ../..
ls -l packages
- name: Upload Windows MSVC Artifacts
uses: actions/upload-artifact@v4
with:
name: openhantek_${{ steps.config_git.outputs.git_describe }}_msvc_x64
path: ./build/packages/*.zip
- name: Upload Windows MSVC Release Assets
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v1
with:
prerelease: true
files: ./build/packages/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}