Skip to content

Commit c409cf9

Browse files
TheBiggerGuystephane
authored andcommitted
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.
1 parent 170bce6 commit c409cf9

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.appveyor.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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'

0 commit comments

Comments
 (0)