Commit c409cf9a44c92c6e3aac891b023802b72d4c19eb

Authored by Guy Taylor
Committed by Stéphane Raimbault
1 parent 170bce65

Add appveyor.com config

Add a .appveyor.yml config to enable Win32 CI testing. At current this
only runs a cygwin64 build on a recent version of Cygwin/Windows.
Showing 1 changed file with 24 additions and 0 deletions
.appveyor.yml 0 → 100644
  1 +## Operating System (VM environment) ##
  2 +platform: x64
  3 +image: Visual Studio 2017
  4 +
  5 +## Install Script ##
  6 +install:
  7 + - set CYGWIN_ROOT=C:\cygwin64
  8 + - set PATH=%CYGWIN_ROOT%\bin;%PATH%
  9 + - bash --version
  10 + - bash -c 'autoreconf --version'
  11 + - bash -c 'make --version'
  12 +
  13 +## Disable MSBuild (default) ##
  14 +build: off
  15 +
  16 +## Build Script ##
  17 +build_script:
  18 + - bash autogen.sh
  19 + - bash configure
  20 + - bash -c 'make'
  21 +
  22 +## Test Script ##
  23 +test_script:
  24 + - bash -c 'make check'
... ...