fixed battery icon not appearing in non plasma env, use light icon se… #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
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 | |
- 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 | |
# Use the JOM path variable | |
$jomPath = "${{ steps.jom-setup.outputs.jom_path }}" | |
& "$jomPath\jom.exe" | |
- name: Remove source and object files | |
shell: pwsh | |
run: | | |
# Define the directory | |
$buildDir = "build/release" | |
# Check if the directory exists | |
if (Test-Path $buildDir) { | |
# Remove .cpp, .h, .obj, and .res files | |
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: | | |
# Navigate to the directory containing the executable | |
cd build | |
# Use the found path to windeployqt | |
$windeployqtPath = "D:\a\HeadsetControl-Qt\Qt\6.7.2\msvc2019_64\bin\windeployqt6.exe" | |
# Check if the executable exists | |
if (Test-Path $windeployqtPath) { | |
# Run windeployqt with the updated options | |
& $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 | |
run: | | |
$zipFile = "build/HeadsetControl-Qt_msvc_64.zip" | |
$folder = "build/HeadsetControl-Qt" | |
Compress-Archive -Path $folder -DestinationPath $zipFile | |
shell: pwsh | |
- 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_linux_64.zip |