7e4a718ba3
Some checks failed
rpcrypto-build / build (Debug, hisiv500.toolchain.cmake) (push) Waiting to run
rpcrypto-build / build (Debug, hisiv510.toolchain.cmake) (push) Waiting to run
rpcrypto-build / build (Debug, host-afl.toolchain.cmake) (push) Waiting to run
rpcrypto-build / build (Debug, host.toolchain.cmake) (push) Waiting to run
rpcrypto-build / build (Debug, mips64el-linux-gnuabi64.toolchain.cmake) (push) Waiting to run
rpcrypto-build / build (Debug, mipsel-openwrt-linux-musl.toolchain.cmake) (push) Waiting to run
rpcrypto-build / build (Debug, mipsel-openwrt-linux.toolchain.cmake) (push) Waiting to run
rpcrypto-build / build (Release, himix200.toolchain.cmake) (push) Waiting to run
rpcrypto-build / build (Release, hisiv500.toolchain.cmake) (push) Waiting to run
rpcrypto-build / build (Release, hisiv510.toolchain.cmake) (push) Waiting to run
rpcrypto-build / build (Release, host-afl.toolchain.cmake) (push) Waiting to run
rpcrypto-build / build (Release, host.toolchain.cmake) (push) Waiting to run
rpcrypto-build / build (Release, mips64el-linux-gnuabi64.toolchain.cmake) (push) Waiting to run
rpcrypto-build / build (Release, mipsel-openwrt-linux-musl.toolchain.cmake) (push) Waiting to run
rpcrypto-build / build (Release, mipsel-openwrt-linux.toolchain.cmake) (push) Waiting to run
rpcrypto-build / build (Debug, himix200.toolchain.cmake) (push) Failing after 39s
34 lines
1.2 KiB
Python
Executable File
34 lines
1.2 KiB
Python
Executable File
#!/usr/bin/env python
|
|
# Build the project on AppVeyor.
|
|
|
|
import os
|
|
from subprocess import check_call
|
|
|
|
build = os.environ['BUILD']
|
|
config = os.environ['CONFIGURATION']
|
|
platform = os.environ.get('PLATFORM')
|
|
path = os.environ['PATH']
|
|
cmake_command = ['cmake', '-DFMT_PEDANTIC=ON', '-DCMAKE_BUILD_TYPE=' + config]
|
|
if build == 'mingw':
|
|
cmake_command.append('-GMinGW Makefiles')
|
|
build_command = ['mingw32-make', '-j4']
|
|
test_command = ['mingw32-make', 'test']
|
|
# Remove the path to Git bin directory from $PATH because it breaks
|
|
# MinGW config.
|
|
path = path.replace(r'C:\Program Files (x86)\Git\bin', '')
|
|
os.environ['PATH'] = r'C:\MinGW\bin;' + path
|
|
else:
|
|
# Add MSBuild 14.0 to PATH as described in
|
|
# http://help.appveyor.com/discussions/problems/2229-v140-not-found-on-vs2105rc.
|
|
os.environ['PATH'] = r'C:\Program Files (x86)\MSBuild\14.0\Bin;' + path
|
|
generator = 'Visual Studio 14 2015'
|
|
if platform == 'x64':
|
|
generator += ' Win64'
|
|
cmake_command.append('-G' + generator)
|
|
build_command = ['cmake', '--build', '.', '--config', config, '--', '/m:4']
|
|
test_command = ['ctest', '-C', config]
|
|
|
|
check_call(cmake_command)
|
|
check_call(build_command)
|
|
check_call(test_command)
|