From 872b876192637737c22172698ac9a0006901932c Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Fri, 5 Oct 2018 12:28:23 +0200 Subject: Add appveyor.yml --- windows/appveyor/appveyor.yml | 64 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 windows/appveyor/appveyor.yml (limited to 'windows') diff --git a/windows/appveyor/appveyor.yml b/windows/appveyor/appveyor.yml new file mode 100644 index 0000000..55c5ed9 --- /dev/null +++ b/windows/appveyor/appveyor.yml @@ -0,0 +1,64 @@ +# version format +version: '{branch}-{build}' + +# branches to build +branches: + only: + - master + +# only build commits with a particular message +only_commits: + message: /build-appveyor/ + author: aqua@iserlohn-fortress.net + +# --- environment configuration --- + +image: Visual Studio 2017 + +# scripts that are called at very beginning, before repo cloning +init: + - git config --global core.autocrlf input + +# We use commit count as a version, so we can't do a shallow clone +#shallow_clone: true +clone_folder: C:\projects\smolbote.git + +environment: + source_dir: C:\projects\smolbote.git + install_dir: C:\projects\smolbote.install + matrix: + - arch: x64 + compiler: msvc2017 + generator: '"Visual Studio 15 2017 Win64"' + +# --- build --- +# script to run after repository is cloned +install: +- cmd: if %arch%==x86 (set QT_ROOT=C:\Qt\5.11\%compiler%) else (set QT_ROOT=C:\Qt\5.11\%compiler%_64) +- cmd: set BOOST_ROOT=C:\Libraries\boost_1_67_0 +- cmd: cd %source_dir% +- cmd: git submodule init +- cmd: git submodule update 3rd-party/SingleApplication/SingleApplication.git + +# build script +build_script: +- cmd: echo Building on %arch% with %compiler% +- cmd: cmake -G %generator% -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%install_dir% -DCMAKE_PREFIX_PATH=%QT_ROOT%;%BOOST_ROOT% -DBoost_USE_STATIC_LIBS=On %source_dir% +- cmd: cmake --build . --target poi --config Release +- cmd: cmake --build . --target install --config Release +- cmd: cd %install_dir% +- cmd: call %QT_ROOT%\bin\windeployqt.exe bin\poi.exe +- cmd: 7z a C:\projects\build.7z %install_dir% + +artifacts: +- path: build.7z + name: release + +# --- notifications --- +notifications: + - provider: Email + to: + - aqua@iserlohn-fortress.net + subject: 'smolbote: build {{status}}' + message: 'version {{branch}}:{{commitId}}' + on_build_status_changed: true -- cgit v1.2.1