1
0
mirror of https://github.com/QtExcel/QXlsx.git synced 2025-02-06 05:08:22 +08:00
QXlsx/.github/workflows/windows.yml

45 lines
963 B
YAML
Raw Normal View History

2020-01-14 21:11:18 +09:00
# windows.yml
2020-01-14 20:52:50 +09:00
name: Windows
2020-01-13 21:59:57 +09:00
on:
push:
paths-ignore:
2020-01-14 21:02:48 +09:00
- 'Example.md'
- 'HowToSetProject.ko.md'
- 'HowToSetProject.md'
2020-01-14 20:52:50 +09:00
- 'README.ko.md'
2020-01-13 21:59:57 +09:00
- 'README.md'
2020-01-14 21:02:48 +09:00
- 'TestEnv.md'
- 'ToTest.md'
- 'ToUpgrade.md'
- 'Vision.md'
2020-01-14 21:20:21 +09:00
- 'LICENSE'
2020-01-13 21:59:57 +09:00
pull_request:
paths-ignore:
2020-01-14 21:02:48 +09:00
- 'Example.md'
- 'HowToSetProject.ko.md'
- 'HowToSetProject.md'
2020-01-14 20:52:50 +09:00
- 'README.ko.md'
2020-01-13 21:59:57 +09:00
- 'README.md'
2020-01-14 21:02:48 +09:00
- 'TestEnv.md'
- 'ToTest.md'
- 'ToUpgrade.md'
- 'Vision.md'
2020-01-14 21:20:21 +09:00
- 'LICENSE'
jobs:
2020-01-13 21:59:57 +09:00
build:
2020-01-14 21:02:48 +09:00
runs-on: windows-2019
steps:
2020-01-14 20:52:50 +09:00
- name: Install Qt
2021-06-21 20:48:10 +09:00
uses: jurplel/install-qt-action@v2.13.2
2020-01-14 20:52:50 +09:00
- name: Checkout
uses: actions/checkout@v1
- name: Run Visual Studio
shell: cmd
run: |
2020-01-14 21:02:48 +09:00
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
2020-01-14 20:52:50 +09:00
cd TestExcel
qmake
nmake
2020-01-14 21:02:48 +09:00