Skip to content

Commit 92c1584

Browse files
committed
add windows job
1 parent b2dcaf0 commit 92c1584

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/main.yml

+22
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,25 @@ jobs:
2727
qbs resolve
2828
qbs build
2929
30+
build-windows:
31+
name: Build on Windows
32+
runs-on: windows-2022
33+
steps:
34+
- uses: actions/checkout@v1
35+
- name: Install Qt
36+
uses: ./.github/actions/download-qt
37+
with:
38+
toolchain: clang_64
39+
- name: Install Qbs
40+
run: brew install qbs
41+
- name: Setup Qbs
42+
run: |
43+
qbs setup-toolchains --detect
44+
qbs setup-qt --detect
45+
qbs config profiles.qt.baseProfile MSVC2022-1-x86_x64
46+
qbs config defaultProfile qt
47+
qbs config --list
48+
- name: Build
49+
run: |
50+
qbs resolve
51+
qbs build

0 commit comments

Comments
 (0)