2018-08-05 22:32:46 +02:00
|
|
|
# FIXME: Add ARM at some point in the future.
|
|
|
|
platform:
|
|
|
|
- x86
|
|
|
|
- x64
|
|
|
|
|
|
|
|
configuration:
|
|
|
|
- Debug
|
|
|
|
- Release
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
fast_finish: true
|
|
|
|
|
|
|
|
environment:
|
|
|
|
PYTHON: "C:\\Python27"
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
|
|
|
GENERATOR: Visual Studio 14 2015
|
|
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
|
|
GENERATOR: Visual Studio 15 2017
|
|
|
|
|
|
|
|
init:
|
|
|
|
- set PATH=%PATH%;%PYTHON%/Scripts/
|
|
|
|
- set ARCH=x86
|
|
|
|
- if %PLATFORM%==x64 (set GENERATOR=%GENERATOR% Win64)
|
|
|
|
- if %PLATFORM%==x64 (set ARCH=x86_64)
|
|
|
|
|
|
|
|
install:
|
|
|
|
- pip.exe install conan --upgrade
|
|
|
|
- conan user # Creates the conan data directory
|
|
|
|
|
|
|
|
before_build:
|
|
|
|
- conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan
|
|
|
|
|
|
|
|
build_script:
|
|
|
|
- mkdir build
|
|
|
|
- cd build
|
|
|
|
- conan install -s arch=%ARCH% -s build_type=%CONFIGURATION% ..
|
2019-07-26 09:43:53 +02:00
|
|
|
- cmake -DBUILD_TESTING=on -DWERROR=ON -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DCMAKE_INSTALL_PREFIX=%CD%/install -G "%GENERATOR%" ..
|
2019-03-23 13:48:40 +01:00
|
|
|
- cmake --build . --config %CONFIGURATION% --target install -- /maxcpucount
|
2019-01-18 14:19:22 +01:00
|
|
|
- cd install/share/CycloneDDS/examples/helloworld
|
|
|
|
- mkdir build
|
|
|
|
- cd build
|
|
|
|
- cmake -DCMAKE_BUILD_TYPE=%CONFIGURATION% -G "%GENERATOR%" ..
|
2019-03-23 13:48:40 +01:00
|
|
|
- cmake --build . --config %CONFIGURATION% -- /maxcpucount
|
2019-01-18 14:19:22 +01:00
|
|
|
- cd ../../../../../..
|
2018-08-05 22:32:46 +02:00
|
|
|
|
|
|
|
test_script:
|
2019-03-23 13:48:40 +01:00
|
|
|
- set "CYCLONEDDS_URI=<CycloneDDS><DDSI2E><Internal><EnableExpensiveChecks>all</EnableExpensiveChecks></Internal></DDSI2E></CycloneDDS>"
|
2018-08-05 22:32:46 +02:00
|
|
|
- ctest --test-action test --build-config %CONFIGURATION%
|