-
Notifications
You must be signed in to change notification settings - Fork 76
53 lines (47 loc) · 1.2 KB
/
windows.yml
File metadata and controls
53 lines (47 loc) · 1.2 KB
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
name: windows-build
on:
push:
paths-ignore:
- 'docs/**'
pull_request:
paths-ignore:
- 'docs/**'
jobs:
windows-headless:
uses: ./.github/workflows/reusable-build.yml
with:
runner: windows-2022
variant: headless
build-testing: true
windows-gui-qt5:
uses: ./.github/workflows/reusable-build.yml
with:
runner: windows-2022
qt-version: '5.15.2'
variant: gui
build-with-python: false
artifact-name: SCIRunWindowsInstaller_qt5
windows-gui-qt6:
uses: ./.github/workflows/reusable-build.yml
with:
runner: windows-2022
qt-version: '6.3.*'
variant: gui
build-with-python: false
artifact-name: SCIRunWindowsInstaller_qt6
windows-gui-python-qt5:
uses: ./.github/workflows/reusable-build.yml
with:
runner: windows-2022
qt-version: '5.15.2'
variant: gui
build-with-python: true
artifact-name: SCIRunWindowsPythonInstaller_qt5
windows-gui-python-qt6:
uses: ./.github/workflows/reusable-build.yml
with:
runner: windows-2022
qt-version: '6.3.*'
variant: gui
build-with-python: true
artifact-name: SCIRunWindowsPythonInstaller_qt6