-
Notifications
You must be signed in to change notification settings - Fork 60
43 lines (41 loc) · 1.2 KB
/
Qt6Git.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
name: Build Qt6 Git
on:
push:
branches:
- master
tags-ignore:
- '*'
env:
QT6_VERSION: "6.6.2"
jobs:
buildLinuxQt6Git:
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v4
with:
repository: mhogomchungu/zuluCrypt
path: Linux
-
name: Install packages
run: |
sudo apt-get update
sudo apt-get -f install tar xz-utils libpwquality-dev libblkid-dev libcryptsetup-dev libgcrypt20-dev libsecret-1-dev libdevmapper-dev uuid-dev libudev-dev
-
name: Install Qt6
uses: jurplel/install-qt-action@v3
with:
version: ${{ env.QT6_VERSION }}
arch: 'gcc_64'
dir: "${{github.workspace}}/qt6"
install-deps: "true"
host: 'linux'
target: 'desktop'
-
name: Configure CMake
env:
CMAKE_PREFIX_PATH: "${{github.workspace}}/qt6/Qt/${{ env.QT6_VERSION }}"
run: cmake -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/zC -DBUILD_WITH_QT6=true -DCMAKE_VERBOSE_MAKEFILE=FALSE -DCMAKE_BUILD_TYPE=RELEASE -S ${{github.workspace}}/Linux/ -B ${{github.workspace}}/Linux/build6
-
name: Build
run: cmake --build ${{github.workspace}}/Linux/build6