mirror of
https://github.com/open62541/open62541.git
synced 2025-06-03 04:00:21 +00:00
65 lines
2.2 KiB
YAML
65 lines
2.2 KiB
YAML
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" |