-
Notifications
You must be signed in to change notification settings - Fork 59
37 lines (35 loc) · 984 Bytes
/
LinuxQt6Git.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
name: Linux Qt6 Git
on:
push:
branches:
- master
tags-ignore:
- '*'
env:
QT6_VERSION: "6.6.2"
jobs:
LinuxQt6Git:
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v4
with:
path: Linux
-
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}}/SiriKali -DBUILD_WITH_QT6=true -DSOURCE_PATH=${{github.workspace}}/Linux/ -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