From c409cf9a44c92c6e3aac891b023802b72d4c19eb Mon Sep 17 00:00:00 2001 From: Guy Taylor Date: Mon, 1 Apr 2019 19:07:43 +0100 Subject: [PATCH] Add appveyor.com config --- .appveyor.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+), 0 deletions(-) create mode 100644 .appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 0000000..ab37b77 --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,24 @@ +## Operating System (VM environment) ## +platform: x64 +image: Visual Studio 2017 + +## Install Script ## +install: + - set CYGWIN_ROOT=C:\cygwin64 + - set PATH=%CYGWIN_ROOT%\bin;%PATH% + - bash --version + - bash -c 'autoreconf --version' + - bash -c 'make --version' + +## Disable MSBuild (default) ## +build: off + +## Build Script ## +build_script: + - bash autogen.sh + - bash configure + - bash -c 'make' + +## Test Script ## +test_script: + - bash -c 'make check' -- libgit2 0.21.4