-
-
Notifications
You must be signed in to change notification settings - Fork 88
54 lines (44 loc) · 992 Bytes
/
build_windows.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
name: Windows
on:
push:
branches:
- "windows-ci"
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
BuildType: [Debug, Release]
defaults:
run:
shell: cmd
env:
QT_VERSION: 5.15.2
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
submodules: recursive
fetch-tags: true
- uses: msys2/setup-msys2@v2
with:
msystem: mingw32
release: true
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: ${{ env.QT_VERSION }}
aqtversion: ==3.1.*
host: windows
target: desktop
arch: win32_mingw81
dir: ${{ runner.temp }}
modules: qtcharts
setup-python: true
- name: install jom
run: |
choco install jom
- name: Build
run: |
qmake -r QOpenHD.pro
jom