2015-10-23 01:32:00 +02:00
|
|
|
version: build-{build}
|
|
|
|
|
2018-02-13 10:42:02 +01:00
|
|
|
shallow_clone: true
|
2015-10-23 01:32:00 +02:00
|
|
|
|
|
|
|
skip_tags: true
|
|
|
|
|
2018-04-30 17:04:53 +02:00
|
|
|
os: Visual Studio 2013
|
2015-10-23 01:32:00 +02:00
|
|
|
|
|
|
|
environment:
|
2018-04-30 17:04:53 +02:00
|
|
|
CMAKE_GENERATOR: "Visual Studio 12 2013"
|
|
|
|
MSVCVERSION: "v120"
|
|
|
|
MSVCYEAR: "vs2013"
|
2015-10-23 16:13:53 +02:00
|
|
|
matrix:
|
2018-05-23 16:07:22 +02:00
|
|
|
- platform: Win32
|
|
|
|
configuration: Release
|
|
|
|
WITH_LIBSODIUM: OFF # unavailable build files for VS2008
|
|
|
|
ENABLE_CURVE: ON
|
|
|
|
CMAKE_GENERATOR: "Visual Studio 9 2008"
|
|
|
|
MSVCVERSION: "v90"
|
|
|
|
MSVCYEAR: "vs2008"
|
|
|
|
- platform: Win32
|
|
|
|
configuration: Release
|
|
|
|
WITH_LIBSODIUM: ON
|
|
|
|
ENABLE_CURVE: ON
|
|
|
|
CMAKE_GENERATOR: "Visual Studio 10 2010"
|
|
|
|
MSVCVERSION: "v100"
|
|
|
|
MSVCYEAR: "vs2010"
|
2015-10-23 16:13:53 +02:00
|
|
|
- platform: Win32
|
|
|
|
configuration: Release
|
2017-04-05 08:53:00 +02:00
|
|
|
WITH_LIBSODIUM: ON
|
|
|
|
ENABLE_CURVE: ON
|
2018-05-23 11:52:07 +02:00
|
|
|
- platform: Win32
|
|
|
|
configuration: Release
|
|
|
|
POLLER: epoll
|
2018-05-26 17:10:08 +02:00
|
|
|
API_POLLER: poll
|
2018-05-23 11:52:07 +02:00
|
|
|
WITH_LIBSODIUM: ON
|
|
|
|
ENABLE_CURVE: ON
|
2015-10-23 16:13:53 +02:00
|
|
|
- platform: Win32
|
2015-10-25 01:12:31 +02:00
|
|
|
configuration: Debug
|
2017-04-05 08:53:00 +02:00
|
|
|
WITH_LIBSODIUM: ON
|
|
|
|
ENABLE_CURVE: ON
|
2015-10-23 16:13:53 +02:00
|
|
|
- platform: x64
|
|
|
|
configuration: Debug
|
2017-04-05 08:53:00 +02:00
|
|
|
WITH_LIBSODIUM: ON
|
|
|
|
ENABLE_CURVE: ON
|
2015-10-23 16:13:53 +02:00
|
|
|
- platform: Win32
|
|
|
|
configuration: Release
|
2017-04-05 08:53:00 +02:00
|
|
|
WITH_LIBSODIUM: OFF
|
|
|
|
ENABLE_CURVE: OFF
|
2017-11-22 14:31:43 +01:00
|
|
|
- platform: Win32
|
|
|
|
configuration: Release
|
|
|
|
WITH_LIBSODIUM: ON
|
|
|
|
ENABLE_CURVE: ON
|
2018-04-30 17:04:53 +02:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
|
|
|
CMAKE_GENERATOR: "Visual Studio 14 2015"
|
|
|
|
MSVCVERSION: "v140"
|
|
|
|
MSVCYEAR: "vs2015"
|
2017-11-22 14:31:43 +01:00
|
|
|
- platform: Win32
|
|
|
|
configuration: Release
|
|
|
|
WITH_LIBSODIUM: ON
|
|
|
|
ENABLE_CURVE: ON
|
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
|
|
CMAKE_GENERATOR: "Visual Studio 15 2017"
|
|
|
|
MSVCVERSION: "v141"
|
|
|
|
MSVCYEAR: "vs2017"
|
2015-10-23 01:32:00 +02:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
fast_finish: false
|
|
|
|
|
|
|
|
init:
|
2018-05-26 17:10:08 +02:00
|
|
|
- cmd: if "%NO_PR%"=="TRUE" (
|
|
|
|
if "%APPVEYOR_PULL_REQUEST_NUMBER%" NEQ "" (
|
|
|
|
echo "Build is disabled for PRs, aborting" &&
|
|
|
|
appveyor exit
|
|
|
|
)
|
|
|
|
)
|
2015-10-23 01:32:00 +02:00
|
|
|
#- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
|
|
|
- cmake --version
|
|
|
|
- msbuild /version
|
|
|
|
- cmd: reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp" /v UserAuthentication /t REG_DWORD /d 0 /f
|
|
|
|
|
2018-04-25 22:17:32 +02:00
|
|
|
cache:
|
|
|
|
- C:\projects\libsodium
|
|
|
|
|
2015-10-23 01:32:00 +02:00
|
|
|
install:
|
|
|
|
- cmd: if "%Platform%"=="x64" set "CMAKE_GENERATOR=%CMAKE_GENERATOR% Win64"
|
|
|
|
- cmd: echo "Generator='%CMAKE_GENERATOR%'"
|
|
|
|
- cmd: echo "Platform='%Platform%'"
|
2017-11-22 19:59:29 +01:00
|
|
|
- cmd: if "%WITH_LIBSODIUM%"=="ON" set LIBSODIUMDIR=C:\projects\libsodium
|
2018-04-25 22:17:32 +02:00
|
|
|
- if "%WITH_LIBSODIUM%"=="ON" (
|
|
|
|
if not exist "%LIBSODIUMDIR%" (
|
|
|
|
git clone --branch stable --depth 1 --quiet "https://github.com/jedisct1/libsodium.git" %LIBSODIUMDIR%
|
|
|
|
) else (
|
|
|
|
cd "%LIBSODIUMDIR%" &&
|
|
|
|
git pull
|
|
|
|
)
|
|
|
|
)
|
2017-11-22 19:59:29 +01:00
|
|
|
- cmd: if "%WITH_LIBSODIUM%"=="ON" msbuild /v:minimal /maxcpucount:%NUMBER_OF_PROCESSORS% /p:Configuration=%Configuration%DLL %LIBSODIUMDIR%\builds\msvc\%MSVCYEAR%\libsodium\libsodium.vcxproj
|
|
|
|
- cmd: if "%WITH_LIBSODIUM%"=="ON" set SODIUM_LIBRARY_DIR="%LIBSODIUMDIR%\bin\%Platform%\%Configuration%\%MSVCVERSION%\dynamic"
|
|
|
|
- cmd: if "%WITH_LIBSODIUM%"=="ON" set SODIUM_INCLUDE_DIR="%LIBSODIUMDIR%\src\libsodium\include"
|
2018-04-25 22:17:32 +02:00
|
|
|
- ps: if (${env:WITH_LIBSODIUM} -eq "ON") { Copy-Item "C:\projects\libsodium\bin\${env:Platform}\${env:Configuration}\${env:MSVCVERSION}\dynamic\libsodium.lib" -Destination "C:\projects\libsodium\bin\${env:Platform}\${env:Configuration}\${env:MSVCVERSION}\dynamic\sodium.lib" }
|
2015-10-23 01:32:00 +02:00
|
|
|
|
|
|
|
clone_folder: C:\projects\libzmq
|
|
|
|
|
|
|
|
before_build:
|
2018-05-16 09:12:26 +02:00
|
|
|
- cmd: set LIBZMQ_SRCDIR=%cd%
|
2015-10-23 01:32:00 +02:00
|
|
|
- cmd: set LIBZMQ_BUILDDIR=C:\projects\build_libzmq
|
2018-05-16 09:12:26 +02:00
|
|
|
# TODO this does not work with sonarcloud.io, as it misses the sonar-cxx plugin
|
|
|
|
# - cmd: curl -L https://sonarsource.bintray.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-3.1.0.1141-windows.zip -o sonar-scanner-cli-3.1.0.1141-windows.zip
|
|
|
|
# - cmd: unzip sonar-scanner-cli-3.1.0.1141-windows.zip
|
|
|
|
# - cmd: set BUILDLOG="%LIBZMQ_SRCDIR%\build.log"
|
2015-10-23 01:32:00 +02:00
|
|
|
- cmd: md "%LIBZMQ_BUILDDIR%"
|
|
|
|
- cd "%LIBZMQ_BUILDDIR%"
|
2018-05-16 09:12:26 +02:00
|
|
|
- cmd: cmake -D CMAKE_INCLUDE_PATH="%SODIUM_INCLUDE_DIR%" -D CMAKE_LIBRARY_PATH="%SODIUM_LIBRARY_DIR%" -D WITH_LIBSODIUM="%WITH_LIBSODIUM%" -D ENABLE_DRAFTS="ON" -D ENABLE_ANALYSIS="%ENABLE_ANALYSIS%" -D ENABLE_CURVE="%ENABLE_CURVE%" -D API_POLLER="%API_POLLER%" -D POLLER="%POLLER%" -D CMAKE_C_FLAGS_RELEASE="/MT" -D CMAKE_C_FLAGS_DEBUG="/MTd" -D WITH_LIBSODIUM="%WITH_LIBSODIUM%" -G "%CMAKE_GENERATOR%" "%APPVEYOR_BUILD_FOLDER%"
|
|
|
|
- cmd: cd "%LIBZMQ_SRCDIR%"
|
2015-10-23 01:32:00 +02:00
|
|
|
|
2018-05-23 16:07:22 +02:00
|
|
|
build_script:
|
2018-05-26 17:17:17 +02:00
|
|
|
- cmd: if "%MSVCYEAR%"=="vs2008" (
|
|
|
|
cmake --build %LIBZMQ_BUILDDIR% --config %configuration% --target install
|
|
|
|
) else (
|
|
|
|
cmake --build %LIBZMQ_BUILDDIR% --config %configuration% --target install -- -verbosity:Minimal -maxcpucount -logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|
|
|
|
)
|
2015-10-23 01:32:00 +02:00
|
|
|
|
2018-05-16 09:12:26 +02:00
|
|
|
# TODO this does not work with sonarcloud.io, as it misses the sonar-cxx plugin
|
|
|
|
# build_script:
|
|
|
|
# - cmd: msbuild %LIBZMQ_BUILDDIR%\ZeroMQ.sln /verbosity:detailed >%BUILDLOG%
|
|
|
|
|
2015-10-23 01:32:00 +02:00
|
|
|
after_build:
|
2018-05-16 09:12:26 +02:00
|
|
|
# TODO this does not work with sonarcloud.io, as it misses the sonar-cxx plugin
|
|
|
|
# - cmd: cd "%LIBZMQ_SRCDIR%"
|
|
|
|
# - cmd: dir
|
|
|
|
# - cmd: sonar-scanner-3.1.0.1141-windows\bin\sonar-scanner
|
|
|
|
# -Dsonar.scm.provider=git
|
|
|
|
# -Dsonar.projectKey=libzmq-msvc
|
|
|
|
# -Dsonar.organization=sigiesec-github
|
|
|
|
# -Dsonar.sources=include,src,tests,unittests
|
|
|
|
# -Dsonar.host.url=https://sonarcloud.io
|
|
|
|
# -Dsonar.login=%SONARQUBE_TOKEN%
|
|
|
|
# -Dsonar.cxx.compiler.parser="Visual C++"
|
|
|
|
# -Dsonar.cxx.compiler.reportPath=build.log
|
|
|
|
# -Dsonar.cxx.compiler.charset=UTF-8
|
|
|
|
# -Dsonar.cxx.compiler.regex=^(?<filename>.*)\\((?<line>[0-9]+)\\):\\x20warning\\x20(?<id>C\\d\\d\\d\\d):(?<message>.*)$
|
2015-10-23 01:32:00 +02:00
|
|
|
- cmd: cd %LIBZMQ_BUILDDIR%\bin\%Configuration%"
|
2017-11-22 19:59:29 +01:00
|
|
|
- cmd: if "%WITH_LIBSODIUM%"=="ON" copy "%SODIUM_LIBRARY_DIR%\libsodium.dll" .
|
2015-10-23 01:32:00 +02:00
|
|
|
- cmd: 7z a -y -bd -mx=9 libzmq.zip *.exe *.dll
|
|
|
|
- ps: Push-AppveyorArtifact "libzmq.zip" -Filename "libzmq-${env:Platform}-${env:Configuration}.zip"
|
2015-10-23 16:13:53 +02:00
|
|
|
|
|
|
|
test_script:
|
2015-10-23 01:32:00 +02:00
|
|
|
- cmd: cd "%LIBZMQ_BUILDDIR%"
|
2018-05-25 21:56:58 +02:00
|
|
|
# TODO run tests in parallel only on selected platforms, since they fail on others, see https://github.com/zeromq/libzmq/issues/3123
|
|
|
|
- cmd: if "%CMAKE_GENERATOR%"=="Visual Studio 12 2013" set PARALLELIZE=ON
|
|
|
|
- cmd: if "%CMAKE_GENERATOR%"=="Visual Studio 14 2015" set PARALLELIZE=ON
|
|
|
|
- cmd: if "%CMAKE_GENERATOR%"=="Visual Studio 12 2013 Win64" set PARALLELIZE=ON
|
|
|
|
- cmd: if "%CMAKE_GENERATOR%"=="Visual Studio 14 2015 Win64" set PARALLELIZE=ON
|
|
|
|
- cmd: if "%PARALLELIZE%"=="ON" (
|
|
|
|
echo "Running tests in parallel" &&
|
|
|
|
set TEST_OPTIONS=-j5
|
|
|
|
)
|
|
|
|
- cmd: ctest -C "%Configuration%" -V %TEST_OPTIONS%
|
2015-10-23 01:32:00 +02:00
|
|
|
|
2018-05-26 17:10:08 +02:00
|
|
|
# the analysis build is repeated; apparently appveyor only uses the first section that matches some branch
|
2018-05-24 09:44:52 +02:00
|
|
|
for:
|
|
|
|
-
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
2018-05-26 17:10:08 +02:00
|
|
|
environment:
|
|
|
|
matrix:
|
|
|
|
- platform: Win32
|
|
|
|
configuration: Release
|
|
|
|
API_POLLER: poll
|
|
|
|
WITH_LIBSODIUM: ON
|
|
|
|
ENABLE_CURVE: ON
|
|
|
|
NO_PR: TRUE
|
|
|
|
- platform: x64
|
|
|
|
configuration: Release
|
|
|
|
WITH_LIBSODIUM: ON
|
|
|
|
ENABLE_CURVE: ON
|
|
|
|
NO_PR: TRUE
|
|
|
|
- platform: Win32
|
|
|
|
configuration: Release
|
|
|
|
WITH_LIBSODIUM: ON
|
|
|
|
ENABLE_CURVE: ON
|
|
|
|
NO_PR: TRUE
|
|
|
|
- platform: Win32
|
|
|
|
configuration: Release
|
|
|
|
WITH_LIBSODIUM: ON
|
|
|
|
ENABLE_CURVE: ON
|
|
|
|
ENABLE_ANALYSIS: ON
|
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
|
|
CMAKE_GENERATOR: "Visual Studio 15 2017"
|
|
|
|
MSVCVERSION: "v141"
|
|
|
|
MSVCYEAR: "vs2017"
|
|
|
|
NO_PR: TRUE
|
|
|
|
-
|
|
|
|
branches:
|
|
|
|
only:
|
2018-05-24 09:44:52 +02:00
|
|
|
- /.*analyze$/
|
|
|
|
environment:
|
|
|
|
matrix:
|
|
|
|
- platform: Win32
|
|
|
|
configuration: Release
|
|
|
|
WITH_LIBSODIUM: ON
|
|
|
|
ENABLE_CURVE: ON
|
|
|
|
ENABLE_ANALYSIS: ON
|
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
|
|
CMAKE_GENERATOR: "Visual Studio 15 2017"
|
|
|
|
MSVCVERSION: "v141"
|
|
|
|
MSVCYEAR: "vs2017"
|
2018-05-26 17:10:08 +02:00
|
|
|
NO_PR: TRUE
|