فهرست منبع

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.
Guy Taylor 6 سال پیش
والد
کامیت
c409cf9a44
1فایلهای تغییر یافته به همراه24 افزوده شده و 0 حذف شده
  1. 24 0
      .appveyor.yml

+ 24 - 0
.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'