-
-
Notifications
You must be signed in to change notification settings - Fork 1
231 lines (197 loc) · 6.99 KB
/
build-and-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
name: Build and Release
on:
workflow_dispatch:
jobs:
windows-build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Visual Studio shell
uses: egor-tensin/vs-shell@v2
with:
arch: x64
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '6.7.2'
add-tools-to-path: true
cache: true
- name: Install jom
id: jom-setup
shell: pwsh
run: |
$url = "https://download.qt.io/official_releases/jom/jom_1_1_4.zip"
$outputPath = "jom_1_1_4.zip"
Invoke-WebRequest -Uri $url -OutFile $outputPath
$extractPath = "jom"
if (-not (Test-Path $extractPath)) {
New-Item -ItemType Directory -Path $extractPath | Out-Null
}
Expand-Archive -Path $outputPath -DestinationPath $extractPath
$jomDir = "$(pwd)\jom"
$jomExe = "$jomDir\jom.exe"
if (Test-Path $jomExe) {
Write-Output "JOM Path: $jomDir"
Write-Output "::set-output name=jom_path::$jomDir"
} else {
Write-Error "jom.exe not found in $jomDir"
exit 1
}
- name: Build with qmake and jom
shell: pwsh
run: |
mkdir build
cd build
qmake ..\HeadsetControl-Qt.pro CONFIG+=release
$jomPath = "${{ steps.jom-setup.outputs.jom_path }}"
& "$jomPath\jom.exe"
- name: Remove source and object files
shell: pwsh
run: |
$buildDir = "build/release"
if (Test-Path $buildDir) {
Get-ChildItem -Path $buildDir -Include *.cpp, *.h, *.obj, *.res, *.qrc, *.qm -Recurse | Remove-Item -Force
} else {
Write-Host "Directory not found: $buildDir"
}
- name: Deploy Qt
shell: pwsh
run: |
cd build
$windeployqtPath = "D:\a\HeadsetControl-Qt\Qt\6.7.2\msvc2019_64\bin\windeployqt6.exe"
if (Test-Path $windeployqtPath) {
& $windeployqtPath `
--exclude-plugins qmodernwindowsstyle,qsvgicon,qsvg,qico,qjpeg,qgif,qnetworklistmanager,qtuiotouchplugin `
--no-opengl-sw `
--no-system-dxc-compiler `
--no-compiler-runtime `
--no-translations `
--no-system-d3d-compiler `
D:\a\HeadsetControl-Qt\HeadsetControl-Qt\build\release\HeadsetControl-Qt.exe
} else {
Write-Error "windeployqt not found at the expected path!"
exit 1
}
- name: Rename release folder
shell: pwsh
run: |
$releaseDir = "build/release"
$newDir = "HeadsetControl-Qt"
if (Test-Path $releaseDir) {
Rename-Item -Path $releaseDir -NewName $newDir
} else {
Write-Error "Release folder not found!"
exit 1
}
- name: Zip binaries folder
shell: pwsh
run: |
$zipFile = "build/HeadsetControl-Qt_msvc_64.zip"
$folder = "build/HeadsetControl-Qt"
Compress-Archive -Path $folder -DestinationPath $zipFile
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: HeadsetControl-Qt_msvc_64
path: build/HeadsetControl-Qt_msvc_64.zip
linux-build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '6.4.2'
host: 'linux'
add-tools-to-path: true
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential libgl1-mesa-dev
- name: Build with qmake
run: |
mkdir build
cd build
qmake ../HeadsetControl-Qt.pro CONFIG+=release
make -j$(nproc)
- name: Zip binaries folder
run: |
zip build/HeadsetControl-Qt_linux_64.zip build/HeadsetControl-Qt
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: HeadsetControl-Qt_linux_64
path: build/HeadsetControl-Qt
release:
runs-on: ubuntu-latest
needs: [windows-build, linux-build]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Download Windows artifact
uses: actions/download-artifact@v4
with:
name: HeadsetControl-Qt_msvc_64
- name: Download Linux artifact
uses: actions/download-artifact@v4
with:
name: HeadsetControl-Qt_linux_64
- name: List files in current directory
run: ls -la
- name: Bump version and create release
id: bump_release
run: |
git fetch --tags
# Determine the latest major version tag
LAST_MAJOR_TAG=$(git tag --list 'v*.*.*' | sed -E 's/^v?([0-9]+)\..*/\1/' | sort -nr | head -n 1)
# Increment the major version number
if [ -z "$LAST_MAJOR_TAG" ]; then
NEW_TAG="v1"
else
NEW_TAG="v$(($LAST_MAJOR_TAG + 1))"
fi
# Check if the tag already exists
if git rev-parse "$NEW_TAG" >/dev/null 2>&1; then
echo "Tag '$NEW_TAG' already exists. Incrementing to next major version."
LAST_MAJOR_TAG=$(git tag --list 'v*' | sed -E 's/^v?([0-9]+).*/\1/' | sort -nr | head -n 1)
NEW_TAG="v$(($LAST_MAJOR_TAG + 1))"
fi
echo "New tag is $NEW_TAG"
git tag $NEW_TAG
git push origin $NEW_TAG
echo "new_tag=$NEW_TAG" >> $GITHUB_ENV
- name: Create GitHub release
id: create_release
uses: actions/create-release@v1
with:
tag_name: ${{ env.new_tag }}
release_name: ${{ env.new_tag }}
body: ""
draft: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: List files in directory
run: ls -la
- name: Zip binaries folder
run: |
zip ./HeadsetControl-Qt_linux_64.zip ./HeadsetControl-Qt
- name: Upload Windows release asset
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: HeadsetControl-Qt_msvc_64.zip
asset_name: HeadsetControl-Qt_msvc_64.zip
asset_content_type: application/zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Linux release asset
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: HeadsetControl-Qt_linux_64.zip
asset_name: HeadsetControl-Qt_linux_64.zip
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}