forked from premiere/premiere-libtorrent
107 lines
3.7 KiB
YAML
107 lines
3.7 KiB
YAML
version: 1.0.{build}
|
|
branches:
|
|
only:
|
|
- master
|
|
- RC_1_1
|
|
- RC_1_0
|
|
os: Visual Studio 2015
|
|
clone_depth: 1
|
|
environment:
|
|
matrix:
|
|
- variant: test_debug
|
|
compiler: msvc-14.0
|
|
model: 64
|
|
sim: 1
|
|
linkflags: '"/LIBPATH:C:\\openssl-1.0.1p-vs2015\\lib64"'
|
|
include: '"c:\\openssl-1.0.1p-vs2015\\include"'
|
|
- variant: test_debug
|
|
compiler: msvc-14.0
|
|
model: 32
|
|
linkflags: '"/LIBPATH:C:\\openssl-1.0.1p-vs2015\\lib"'
|
|
include: '"c:\\openssl-1.0.1p-vs2015\\include"'
|
|
- variant: test_release
|
|
compiler: msvc-14.0
|
|
model: 64
|
|
linkflags: '"/LIBPATH:C:\\openssl-1.0.1p-vs2015\\lib"'
|
|
include: '"c:\\openssl-1.0.1p-vs2015\\include"'
|
|
|
|
# mingw and boost.random don't like each other. Comment this back in once there
|
|
# is support
|
|
|
|
# - variant: test_debug
|
|
# compiler: gcc
|
|
# linkflags: '"-LC:\\OpenSSL-Win32\\lib"'
|
|
|
|
install:
|
|
- if defined sim ( git submodule update --init --recursive )
|
|
- set ROOT_DIRECTORY=%CD%
|
|
- cd %ROOT_DIRECTORY%
|
|
- if %compiler% == msvc-14.0 (
|
|
if not exist openssl-1.0.1p-vs2015.7z (
|
|
echo downloading openssl-2015
|
|
& appveyor DownloadFile "http://www.npcglib.org/~stathis/downloads/openssl-1.0.1p-vs2015.7z"
|
|
)
|
|
)
|
|
- if %compiler% == msvc-14.0 (
|
|
echo extracting openssl-2015
|
|
& 7z x -oc:\ -aoa openssl-1.0.1p-vs2015.7z > nul
|
|
& copy c:\openssl-1.0.1p-vs2015\lib64\ssleay32MT.lib c:\openssl-1.0.1p-vs2015\lib64\ssleay32.lib
|
|
& copy c:\openssl-1.0.1p-vs2015\lib64\libeay32MT.lib c:\openssl-1.0.1p-vs2015\lib64\libeay32.lib
|
|
& copy c:\openssl-1.0.1p-vs2015\lib\ssleay32MT.lib c:\openssl-1.0.1p-vs2015\lib\ssleay32.lib
|
|
& copy c:\openssl-1.0.1p-vs2015\lib\libeay32MT.lib c:\openssl-1.0.1p-vs2015\lib\libeay32.lib
|
|
)
|
|
- cd %ROOT_DIRECTORY%
|
|
- set BOOST_ROOT=c:\Libraries\boost_1_59_0
|
|
- set BOOST_BUILD_PATH=%BOOST_ROOT%\tools\build
|
|
- echo %BOOST_ROOT%
|
|
- echo %BOOST_BUILD_PATH%
|
|
- set PATH=%PATH%;%BOOST_BUILD_PATH%\src\engine\bin.ntx86
|
|
- 'echo using msvc : 12.0 ; >%HOMEDRIVE%%HOMEPATH%/user-config.jam'
|
|
- 'echo using msvc : 14.0 ; >>%HOMEDRIVE%%HOMEPATH%/user-config.jam'
|
|
- type %HOMEDRIVE%%HOMEPATH%\user-config.jam
|
|
- cd %ROOT_DIRECTORY%
|
|
- set PATH=%PATH%;c:\Mingw\bin
|
|
- g++ --version
|
|
- python --version
|
|
- echo %ROOT_DIRECTORY%
|
|
- cd %BOOST_BUILD_PATH%\src\engine
|
|
- build.bat >nul
|
|
- cd %ROOT_DIRECTORY%
|
|
|
|
cache:
|
|
- openssl-1.0.1p-vs2015.7z
|
|
|
|
build_script:
|
|
# examples
|
|
- cd %ROOT_DIRECTORY%\examples
|
|
- b2.exe --hash warnings-as-errors=on -j2 %compiler% address-model=%model% variant=%variant% linkflags=%linkflags% include=%include% link=shared
|
|
|
|
# test
|
|
- cd %ROOT_DIRECTORY%\test
|
|
- b2.exe --hash -j2 warnings-as-errors=on address-model=%model% win-tests %compiler% variant=%variant% link=shared linkflags=%linkflags% include=%include% testing.execute=off
|
|
|
|
# python binding
|
|
- cd %ROOT_DIRECTORY%\bindings\python
|
|
# 64 bit python module builds don't work
|
|
- if %model% == 32 ( b2.exe --hash -j2 %compiler% address-model=%model% stage_module install-dependencies=on variant=%variant% libtorrent-link=shared linkflags=%linkflags% include=%include% )
|
|
- if defined python_package ( python setup.py --bjam bdist_msi )
|
|
|
|
# simulations
|
|
- if defined sim (
|
|
cd %ROOT_DIRECTORY%\simulation
|
|
& b2.exe --hash -j2 link=shared crypto=built-in %compiler% address-model=%model% testing.execute=off
|
|
)
|
|
|
|
test_script:
|
|
- cd %ROOT_DIRECTORY%\test
|
|
- b2.exe --hash -j2 address-model=%model% win-tests %compiler% variant=%variant% link=shared linkflags=%linkflags% include=%include%
|
|
- cd %ROOT_DIRECTORY%\bindings\python
|
|
# 64 bit python module builds don't work
|
|
- if %model% == 32 ( python test.py )
|
|
- cd %ROOT_DIRECTORY%\simulation
|
|
- if defined sim ( b2.exe --hash -j2 link=shared crypto=built-in %compiler% address-model=%model% )
|
|
|
|
artifacts:
|
|
- path: bindings\python\dist\*.msi
|
|
name: python-binding-win32
|