forked from troglobit/mdnsd
-
Notifications
You must be signed in to change notification settings - Fork 13
/
appveyor.yml
65 lines (57 loc) · 2.2 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
version: '{build}'
clone_folder: c:\projects\mdnsd
clone_depth: 1
environment:
global:
CYG_ARCH: x86
CYG_ROOT: C:/cygwin
CYG_SETUP_URL: http://cygwin.com/setup-x86.exe
CYG_MIRROR: http://cygwin.mirror.constant.com
CYG_CACHE: C:\cygwin\var\cache\setup
CYG_BASH: C:/cygwin/bin/bash
SHARED: ON
matrix:
- GENERATOR: MinGW Makefiles
FORCE_CXX: OFF
- GENERATOR: Visual Studio 9 2008
FORCE_CXX: ON
- GENERATOR: Visual Studio 12 2013
FORCE_CXX: OFF
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
- GENERATOR: Visual Studio 12 2013 Win64
FORCE_CXX: OFF
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
- GENERATOR: Visual Studio 16 2019
SHARED: ON
FORCE_CXX: OFF
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
- GENERATOR: Visual Studio 16 2019
SHARED: OFF
FORCE_CXX: OFF
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
cache:
- '%CYG_CACHE%'
init:
- git config --global core.autocrlf input # Attempt to ensure we don't try to convert line endings to Win32 CRLF as this will cause build to fail
# Install needed build dependencies
install:
- git submodule update --init --recursive
- if not exist "%CYG_ROOT%" mkdir "%CYG_ROOT%"
- ps: echo "Installing Cygwin from $env:CYG_SETUP_URL to $env:CYG_ROOT/setup-x86.exe"
- appveyor DownloadFile %CYG_SETUP_URL% -FileName %CYG_ROOT%/setup-x86.exe
- ps: echo "Downloaded. Now ready to install."
- cmd: '"%CYG_ROOT%/setup-x86.exe" --quiet-mode --no-shortcuts --only-site -R "%CYG_ROOT%" -s "%CYG_MIRROR%" -l "%CYG_CACHE%" --packages cmake,python'
- cmd: '%CYG_BASH% -lc "cygcheck -dc cygwin"'
before_build:
# use MinGW64
- set PATH=C:\mingw-w64\i686-5.3.0-posix-dwarf-rt_v4-rev0\mingw32\bin;%PATH%
# Workaround for CMake not wanting sh.exe on PATH for MinGW
- set PATH=%PATH:C:\Program Files\Git\usr\bin;=%
build_script:
- cd "%APPVEYOR_BUILD_FOLDER%""
- md build
- cd build
- echo "Testing %GENERATOR%"
- cmake -DMDNSD_COMPILE_AS_CXX:BOOL=%FORCE_CXX% -DBUILD_SHARED_LIBS:BOOL=%SHARED% -G"%GENERATOR%" ..
- cmake --build .
- echo "Build done"