2015-02-12 23:34:38 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# Build the project on AppVeyor.
|
|
|
|
|
|
|
|
import os
|
2015-02-13 01:53:39 +00:00
|
|
|
from subprocess import check_call
|
2015-02-12 23:34:38 +00:00
|
|
|
|
2015-02-13 01:53:39 +00:00
|
|
|
build = os.environ['BUILD']
|
2015-03-10 15:52:39 +00:00
|
|
|
config = os.environ['CONFIG']
|
|
|
|
cmake_command = ['cmake', '-DFMT_EXTRA_TESTS=ON', '-DCMAKE_BUILD_TYPE=' + config]
|
2015-02-12 23:34:38 +00:00
|
|
|
if build == 'mingw':
|
2015-02-12 23:41:30 +00:00
|
|
|
cmake_command.append('-GMinGW Makefiles')
|
2015-02-13 01:53:39 +00:00
|
|
|
build_command = ['mingw32-make', '-j4']
|
|
|
|
test_command = ['mingw32-make', 'test']
|
2015-03-10 16:18:31 +00:00
|
|
|
# Remove the path to Git bin directory from $PATH because it breaks MinGW config.
|
|
|
|
path = os.environ['PATH'].replace(r'C:\Program Files (x86)\Git\bin', '')
|
2015-03-10 15:52:39 +00:00
|
|
|
else:
|
|
|
|
build_command = ['msbuild', '/m:4', '/p:Config=' + config, 'FORMAT.sln']
|
|
|
|
test_command = ['msbuild', 'RUN_TESTS.vcxproj']
|
2015-02-13 01:53:39 +00:00
|
|
|
|
|
|
|
check_call(cmake_command)
|
|
|
|
check_call(build_command)
|
2015-03-01 23:21:33 +00:00
|
|
|
check_call(test_command)
|