aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormanuc66 <manuc66@gmail.com>2017-07-10 00:06:20 +0200
committerJon Lund Steffensen <jonlst@gmail.com>2017-07-27 12:35:10 -0700
commit18b8cb0a796ec745ff112471a73bfde55b144755 (patch)
tree107403f1c22120a54e7232ef1c4b0a50efcd40dc
parentMerge pull request #426 from Kcchouette/patch-1 (diff)
downloadredshift-ng-18b8cb0a796ec745ff112471a73bfde55b144755.tar.gz
redshift-ng-18b8cb0a796ec745ff112471a73bfde55b144755.tar.bz2
redshift-ng-18b8cb0a796ec745ff112471a73bfde55b144755.tar.xz
Add AppVeyor configuration
-rw-r--r--appveyor.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..b509a2b
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,24 @@
+image:
+- Visual Studio 2015
+
+environment:
+ MSYS_ARCH: x86_64
+
+build:
+ verbosity: detailed
+
+build_script:
+- echo %PATH%
+- set PATH=C:\msys64\usr\bin;C:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64\bin;%PATH%
+- set CC=gcc
+- set MSYSTEM=MINGW64
+- bash -lc "pwd"
+- bash -lc "cd $APPVEYOR_BUILD_FOLDER && ./bootstrap"
+- bash -lc "cd $APPVEYOR_BUILD_FOLDER && ./configure --disable-drm --disable-randr --disable-vidmode --enable-wingdi --disable-geoclue --disable-gui --disable-ubuntu --host=x86_64-w64-mingw32"
+- bash -lc "cd $APPVEYOR_BUILD_FOLDER && make"
+
+after_build:
+- cmd: >-
+ 7z a redshift.zip ./src/redshift.exe COPYING NEWS README.md
+
+ appveyor PushArtifact redshift.zip