forked from MaikoTan/GlosSI
-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (44 loc) · 1.06 KB
/
build.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
55
56
name: Build
on:
- push
- pull_request
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
fetch-tags: true
- name: Setup 7-Zip
uses: milliewalky/setup-7-zip@v1
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '6.3.1'
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: '3.16.x'
- name: Setup MSVC dev cmd
uses: ilammy/msvc-dev-cmd@v1
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
- name: Prebuild
shell: pwsh
run: |
.\prebuild.ps1
- name: Build
shell: pwsh
run: |
.\build.ps1
- name: Bundle
shell: pwsh
run: |
.\bundle-zip.ps1
- name: Upload to Artifact
uses: actions/upload-artifact@v4
with:
path: ./x64/Release/GlosSI-snapshot.zip
retention-days: 5