commit f3939e09e466aa079b8bbda46eef1c2c35ff1b49
Author: Christian Ehringfeld <c.ehringfeld@t-online.de>
Date:   Sun Sep 27 20:20:31 2015 +0200

    ci

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..5cc57be
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,37 @@
+#
+# GitLab CI configuration for QOwnNotes
+# https://ci.gitlab.com/lint
+#
+# you need a runner for OS X
+# https://gitlab.com/gitlab-org/gitlab-ci-multi-runner
+#
+# execute: gitlab-ci-multi-runner run
+#
+# set the GITHUB_ACCESS_TOKEN with your GitHub securitry token for release deployment
+#
+
+before_script:
+    - PATH="/Applications/Qt/5.4/clang_64/bin:$PATH"
+    - QTDIR="/Applications/Qt/5.4/clang_64"
+    # http://doc.gitlab.com/ci/variables/README.html
+    #- echo "#define BUILD ""$CI_BUILD_ID" > build_number.h
+    - qmake -project
+    - qmake QOwnNotes.pro -r -spec macx-clang CONFIG+=x86_64
+    - make
+    - make check
+
+build_job:
+  type: build
+  script:
+    - echo do some testing...
+  only:
+    - develop
+    - master
+
+deployment_job:
+  type: deploy
+  script:
+
+
+  only:
+    - master
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..940eeba
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,27 @@
+# AppVeyor build configuration
+# http://www.appveyor.com/docs/build-configuration
+os: unstable
+
+install:
+  - set QTDIR=C:\Qt\5.4\mingw491_32
+  - set PATH=%PATH%;%QTDIR%\bin;C:\MinGW\bin
+  - set RELEASE_PATH=appveyor\release
+
+build_script:
+  # using a header file without MemoryBarrier, that causes the build to fail
+  - qmake CuteEntityManager.pro -r -spec win32-g++
+#  - qmake QOwnNotes.pro -r -spec win32-g++ "CONFIG+=debug"
+  - mingw32-make
+  # creating the release path
+  - md ..\%RELEASE_PATH%
+  # copy the binary to our release path
+  #- copy release\CuteEntityManager.dll ..\%RELEASE_PATH%
+  #- cd ..\%RELEASE_PATH%
+  # fetching dependencies of QT app
+  # http://doc.qt.io/qt-5/windows-deployment.html
+  #- windeployqt --release CuteEntityManager
+  # this dll was missed by windeployqt
+#  - copy ..\libwinpthread-1.dll . /y
+  # this dll didn't work when released by windeployqt
+#  - copy "..\libstdc++-6.dll" . /y
+
