Add polar.sh to FUNDING
[libmodbus.git] / .appveyor.yml
blobab37b77ca3eb42c3337613eebbf0ede40c7b5a32
1 ## Operating System (VM environment) ##
2 platform: x64
3 image: Visual Studio 2017
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'
13 ## Disable MSBuild (default) ##
14 build: off
16 ## Build Script ##
17 build_script:
18   - bash autogen.sh
19   - bash configure
20   - bash -c 'make'
22 ## Test Script ##
23 test_script:
24   - bash -c 'make check'