From 7c69d3b8c55d164c7dea67a6eaa4e8317f4e5f63 Mon Sep 17 00:00:00 2001 From: Jay Two Date: Wed, 11 Dec 2019 21:43:53 +0900 Subject: [PATCH] Create build.yml - initial commit - testing now --- .github/workflows/build.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..cb62510 --- /dev/null +++ b/.github/workflows/build.yml @@ -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 + +