forked from virtuallynathan/qpep
-
Notifications
You must be signed in to change notification settings - Fork 2
437 lines (371 loc) · 12.6 KB
/
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
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
name: Release
on:
workflow_dispatch:
inputs:
test_release:
description: 'Draft Release'
required: true
type: boolean
default: true
version_tag:
description: 'Version tag'
type: 'string'
required: true
default: '0.6.1'
run-name: Release (version ${{ inputs.version_tag }}, draft ${{ inputs.test_release }}) [${{ github.event_name }}][${{ github.head_ref || github.ref_name }}]
jobs:
check-release-tag:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
show-progress: true
- name: Check tag
uses: mukunku/[email protected]
id: checkTag
with:
tag: 'v${{ github.event.inputs.version_tag }}'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- if: ${{ steps.checkTag.outputs.exists == 'true' }}
name: Fail build
run: exit 1
- name: Prepare Changelog
if: ${{ steps.checkTag.outputs.exists == 'false' }}
id: changelog
run: |
set -x
PREV_TAG=$(git tag | { grep -E "^v" || true; } | sort -ud | tac | head -n1)
echo "== Features ==" > changelog.txt
git log ${PREV_TAG}..HEAD --pretty=format:"%s" | uniq | { grep -E "^feat" || true; } >> changelog.txt
echo "" >> changelog.txt
echo "== Fix ==" >> changelog.txt
git log ${PREV_TAG}..HEAD --pretty=format:"%s" | uniq | { grep -E "^bug|^fix" || true; } >> changelog.txt
echo "" >> changelog.txt
- name: Upload Changelog
uses: actions/upload-artifact@v4
if: ${{ steps.checkTag.outputs.exists == 'false' }}
with:
name: changelog_v${{ github.event.inputs.version_tag }}
path: changelog.txt
user-manual:
needs: check-release-tag
runs-on: ubuntu-latest
defaults:
run:
shell: bash
env:
GO_VERSION: 1.20.14
PANDOC_VERSION: 3.3
steps:
- uses: actions/checkout@v4
with:
clean: true
submodules: false
- name: Install Pandoc
uses: pandoc/actions/[email protected]
with:
version: ${{ env.PANDOC_VERSION }}
- name: Install TeXlive
run: sudo apt-get update && sudo apt-get install texlive-full
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Generate PDF
run: |
cd docs/
CURDATE=$(date '+%x %T')
sed -i -E -e 's|subtitle:.+|subtitle: "User Manual - version ${{ github.event.inputs.version_tag }}"|' -e "s|date:.+|date: \"$CURDATE\"|" user-manual.md
sed -i -E -e 's|page-background:\s*resources/draft.png||' user-manual.md
go generate
- uses: actions/upload-artifact@v4
with:
name: qpep_user_manual_v${{ github.event.inputs.version_tag }}
path: "docs/*.pdf"
- name: Auto-cancel workflow on error
if: failure()
uses: andymckay/[email protected]
build-mac-os:
needs: check-release-tag
runs-on: macos-latest
env:
GO_VERSION: 1.20.14
CMAKE_VERSION: '3.22.x'
GOARCH: arm64
GOOS: darwin
CGO_ENABLED: 1
GOPATH: ${{ github.workspace }}/.go
CMAKE_BUILD_PARALLEL_LEVEL: 4
IGNORE_PACKAGES: 'tray|docker|docs|version|webgui|workers$'
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
clean: true
submodules: true
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Set up CMake
uses: jwlawson/[email protected]
with:
cmake-version: ${{ env.CMAKE_VERSION }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Prepare
run: |
go clean -cache -x
mkdir -p $GOPATH/bin
pip install dmgbuild
- name: Build Backends
run: |
export CPP=${CXX}
export PATH=$GOPATH/bin:$GOPATH/bin/${GOOS}_${GOARCH}:$PATH
cd backend/
go generate
- name: Build Executable
run: |
go build -v -o build/qpep
- name: Build QPep Tray 64bits
run: |
pushd qpep-tray
go build -v -o ../build/qpep-tray
popd
- name: Build MacOS installer
run: |
bash ./installer_osx.sh "${{ github.event.inputs.version_tag }}"
- uses: actions/upload-artifact@v4
with:
name: qpep_macos_v${{ github.event.inputs.version_tag }}
path: installer-osx/QPep*.pkg
- name: Auto-cancel workflow on error
if: failure()
uses: andymckay/[email protected]
build-linux:
needs: check-release-tag
runs-on: ubuntu-latest
env:
GO_VERSION: 1.20.14
CMAKE_VERSION: '3.22.x'
GOARCH: amd64
GOOS: linux
CGO_ENABLED: 1
CMAKE_BUILD_PARALLEL_LEVEL: 4
IGNORE_PACKAGES: 'tray|docker|docs|version|webgui'
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
clean: true
submodules: true
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Set up CMake
uses: jwlawson/[email protected]
with:
cmake-version: ${{ env.CMAKE_VERSION }}
- name: Prepare
run: |
sudo apt-get install -y pkg-config libgtk-3-dev libayatana-appindicator-dev
go clean -cache -x
- name: Build Backends
run: |
cd backend/
go generate
- name: Build QPep
run: |
go build -v -o build/qpep
- name: Build QPep Tray
run: |
pushd qpep-tray
go build -o ../build/qpep-tray
popd
- uses: actions/upload-artifact@v4
with:
name: qpep_linux_v${{ github.event.inputs.version_tag }}
path: build/
- name: Auto-cancel workflow on error
if: failure()
uses: andymckay/[email protected]
build-windows:
needs: check-release-tag
runs-on: windows-latest
env:
GO_VERSION: 1.20.14
CMAKE_VERSION: '3.22.x'
GOARCH: amd64
GOOS: windows
CGO_ENABLED: 1
QPEP_CI_ENV: 1
CMAKE_BUILD_PARALLEL_LEVEL: 4
IGNORE_PACKAGES: 'tray|docker|docs|version|webgui'
MINGW_BASEDIR: 'C:\ProgramData\chocolatey\lib\mingw\tools\install\mingw64\bin'
defaults:
run:
shell: cmd
steps:
- uses: actions/checkout@v4
with:
clean: true
submodules: true
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Install Wix
uses: actions/checkout@v2
with:
repository: fbarresi/wix
path: wix
- name: Install MSBuild
uses: microsoft/[email protected]
- name: Set up MinGW
uses: egor-tensin/setup-mingw@v2
with:
platform: x64
static: true
version: 11.1.0
- name: Set up CMake
uses: jwlawson/[email protected]
with:
cmake-version: ${{ env.CMAKE_VERSION }}
- name: Prepare
run: |
@echo on
MKDIR build
MKDIR build\64bits
MKDIR build\32bits
COPY /Y windivert\LICENSE build\LICENSE.windivert
COPY /Y LICENSE build\LICENSE
go clean -cache -x
COPY /Y windivert\x64\* build\64bits
COPY /y "%MINGW_BASEDIR%\libgcc_s_seh-1.dll" build\64bits
COPY /y "%MINGW_BASEDIR%\libwinpthread-1.dll" build\64bits
COPY /y "%MINGW_BASEDIR%\libstdc++-6.dll" build\64bits
- name: Build Backends
run: |
cd backend/
go generate
- name: Build QPep
run: |
go build -o build\64bits\qpep.exe
- name: Build QPep Tray
run: |
pushd qpep-tray
set CGO_ENABLED=0
go build -ldflags -H=windowsgui -o ..\build\64bits\qpep-tray.exe
popd
- name: Build QPep Installer
run: |
sed -E 's/Version="[^"]+"/Version="1.${{ github.event.inputs.version_tag }}"/' installer/installer.wxs > installer/installer.wxs
sed -E 's/FileVersion:\s*"[^"]+"/FileVersion:\s*"v0.${{ github.event.inputs.version_tag }}"/' version/versioninfo.json > version/versioninfo.json
sed -E 's/ProductVersion:\s*"[^"]+"/ProductVersion:\s*"v${{ github.event.inputs.version_tag }}"/' version/versioninfo.json > version/versioninfo.json
set PATH=${{ github.workspace }}\wix\tools;%PATH%
msbuild installer\installer.sln
- uses: actions/upload-artifact@v4
with:
name: qpep_windows_v${{ github.event.inputs.version_tag }}
path: build/installer.msi
- name: Auto-cancel workflow on error
if: failure()
uses: andymckay/[email protected]
create-release-tag:
needs: [ build-windows, build-linux, build-mac-os, user-manual ]
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Download Changelog
uses: actions/download-artifact@v4
with:
name: changelog_v${{ github.event.inputs.version_tag }}
- name: Download Windows Artifact
uses: actions/download-artifact@v4
with:
name: qpep_windows_v${{ github.event.inputs.version_tag }}
- name: Download Linux Artifact
uses: actions/download-artifact@v4
with:
name: qpep_linux_v${{ github.event.inputs.version_tag }}
- name: Download MacOS Artifact
uses: actions/download-artifact@v4
with:
name: qpep_macos_v${{ github.event.inputs.version_tag }}
- name: Download UserManual Artifact
uses: actions/download-artifact@v4
with:
name: qpep_user_manual_v${{ github.event.inputs.version_tag }}
- name: Prepare archives
run: |
cd ${{ github.workspace }}
7z a -tzip qpep_windows.zip ${{ github.workspace }}/installer.msi
7z a -tzip qpep_linux.zip ${{ github.workspace }}/qpep
7z a -tzip qpep_macos.zip ${{ github.workspace }}/*.pkg
7z a -tzip qpep_user_manual.zip ${{ github.workspace }}/user-manual.pdf
- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ github.event.inputs.version_tag }}
release_name: Release v${{ github.event.inputs.version_tag }}
body_path: changelog.txt
draft: ${{ inputs.test_release }}
prerelease: false
- name: Attach Windows Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: qpep_windows.zip
asset_name: qpep_windows_v${{ github.event.inputs.version_tag }}.zip
asset_content_type: application/zip
- name: Attach Linux Release Asset
id: upload-linux-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: qpep_linux.zip
asset_name: qpep_linux_v${{ github.event.inputs.version_tag }}.zip
asset_content_type: application/zip
- name: Attach MacOS Release Asset
id: upload-macos-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: qpep_macos.zip
asset_name: qpep_macos_v${{ github.event.inputs.version_tag }}.zip
asset_content_type: application/zip
- name: Attach UserManual Release Asset
id: upload-usermanual-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: qpep_user_manual.zip
asset_name: qpep_user_manual_v${{ github.event.inputs.version_tag }}.zip
asset_content_type: application/zip