From 18b8cb0a796ec745ff112471a73bfde55b144755 Mon Sep 17 00:00:00 2001 From: manuc66 Date: Mon, 10 Jul 2017 00:06:20 +0200 Subject: Add AppVeyor configuration --- appveyor.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 appveyor.yml 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 -- cgit v1.2.3-70-g09d2 From 72a8fcbe054300f20ff05de01f288226fd8274f9 Mon Sep 17 00:00:00 2001 From: Jon Lund Steffensen Date: Thu, 27 Jul 2017 12:35:26 -0700 Subject: README: Link to AppVeyor Windows build --- README.md | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 244a3c2..0bb9b5a 100644 --- a/README.md +++ b/README.md @@ -18,15 +18,15 @@ Build status ------------ [![Build Status](https://travis-ci.org/jonls/redshift.svg?branch=master)](https://travis-ci.org/jonls/redshift) - -Building from source --------------------- - -See the file [HACKING](HACKING.md) for more details on building from source. +[![Build Status](https://ci.appveyor.com/api/projects/status/github/jonls/redshift?branch=master&svg=true)](https://ci.appveyor.com/project/jonls/redshift) FAQ --- +**How do I install Redshift?** + +Use the packages provided by your distribution, e.g. for Ubuntu: `apt-get install redshift` or `apt-get install redshift-gtk`. For developers, please see _Building from source_ and _Latest builds from master branch_ below. + **Where can I find my coordinates to put in the configuration file?** There are multiple web sites that provide coordinates for map locations, for @@ -91,7 +91,13 @@ Please go to [the issue tracker](https://github.com/jonls/redshift/issues) and check if your issue has already been reported. If not, please open a new issue describing you problem. -Donations ---------- +Latest builds from master branch +-------------------------------- + +- [Ubuntu PPA](https://launchpad.net/~dobey/+archive/ubuntu/redshift-daily/+packages) (`sudo add-apt-repository ppa:dobey/redshift-daily`) +- [Windows x64](https://ci.appveyor.com/api/projects/jonls/redshift/artifacts/redshift.zip?branch=master) + +Building from source +-------------------- -[![Flattr](http://api.flattr.com/button/flattr-badge-large.png)](https://flattr.com/thing/57936/Redshift) +See the file [HACKING](HACKING.md) for more details on building from source. -- cgit v1.2.3-70-g09d2