File: .appveyor.yml

package info (click to toggle)
libmodbus 3.1.6-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 904 kB
  • sloc: ansic: 5,157; makefile: 170; sh: 24
file content (24 lines) | stat: -rw-r--r-- 457 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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'