1
0
mirror of https://github.com/QtExcel/QXlsx.git synced 2025-01-30 05:02:52 +08:00

Create build.yml

- initial commit
- testing now
This commit is contained in:
Jay Two 2019-12-11 21:43:53 +09:00 committed by GitHub
parent fd4c90e2ff
commit 7c69d3b8c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

34
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,34 @@
name: C/C++ CI
on: [push]
jobs:
build:
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Prepare
working-directory: build
run: |
curl -vLo qt-unified-windows-x86-online.exe http://download.qt.io/official_releases/online_installers/qt-unified-windows-x86-online.exe
qt-unified-windows-x86-online.exe --verbose --script ..\ci\qt.qs
- name: Configure
working-directory: build
run: cmake -DCPACK_IFW_ROOT=Qt/Tools/QtInstallerFramework/3.1 -DCMAKE_BUILD_TYPE=Release -G"Visual Studio 16 2019" ..
- name: Compile
working-directory: build
run:
cd QXlsx
qmake QXlsx.pro
nmake
- name: Test
working-directory: build
run:
cd TestExcel
qmake TestExcel.pro
nmake