From 5c17f23f96766c33740dbd52b0b12faf1867b1fd Mon Sep 17 00:00:00 2001 From: Edgar Date: Tue, 30 Jul 2019 14:37:29 +0200 Subject: [PATCH] :construction_worker: Added appveyor --- appveyor.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..aa6f441 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,34 @@ +version: "{build}" +image: Visual Studio 2017 +pull_requests: + do_not_increment_build_number: true +shallow_clone: true + +install: +- cmd: >- + set QTDIR=C:\Qt\5.12\msvc2017_64 + + set PATH=%PATH%;%QTDIR%\bin + + call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 +build_script: +- cmd: >- + dir + + mkdir build + + cd build + + qmake ../fuel.pro + + set cl=/MP + + nmake /S /NOLOGO + + windeployqt release/fuel.exe --release --no-compiler-runtime --no-translations --no-opengl-sw --dir fuel-scm/ + + cp release/fuel.exe fuel-scm/ + +artifacts: +- path: build/fuel-scm + name: fuel-scm