2020-01-14 21:11:18 +09:00
|
|
|
# windows.yml
|
2020-01-14 20:52:50 +09:00
|
|
|
|
2020-01-11 22:37:41 +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'
|
2020-01-11 22:37:41 +09:00
|
|
|
jobs:
|
2020-01-13 21:59:57 +09:00
|
|
|
build:
|
2020-01-14 21:02:48 +09:00
|
|
|
runs-on: windows-2019
|
2020-01-11 22:37:41 +09:00
|
|
|
steps:
|
2020-01-14 20:52:50 +09:00
|
|
|
- name: Install Qt
|
|
|
|
uses: jurplel/install-qt-action@v2
|
|
|
|
- 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
|
|
|
|