aboutsummaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-10-05 12:28:23 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2018-10-05 14:50:16 +0200
commit872b876192637737c22172698ac9a0006901932c (patch)
tree354a34d7c2aa6004304ff663cff6897bdc9dc52e /windows
parentdownloads: only show preview on images (diff)
downloadsmolbote-872b876192637737c22172698ac9a0006901932c.tar.xz
Add appveyor.yml
Diffstat (limited to 'windows')
-rw-r--r--windows/appveyor/appveyor.yml64
1 files changed, 64 insertions, 0 deletions
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