Move the code from appveyor config to a Python script

No more PowerShell rubbish, yay!
This commit is contained in:
Victor Zverovich
2015-02-12 17:53:39 -08:00
parent 86fee707fb
commit c110f7b8d3
4 changed files with 104 additions and 36 deletions

View File

@@ -1,14 +1,30 @@
#!/usr/bin/env python
# Build the project on AppVeyor.
from subprocess import check_call
import os
from download import Downloader
from subprocess import check_call
env = os.environ
build = env['BUILD']
cmake_command = ['cmake', '-DFMT_EXTRA_TESTS=ON', '-DCMAKE_BUILD_TYPE=' + env['CONFIG']]
build = os.environ['BUILD']
cmake_command = ['cmake', '-DFMT_EXTRA_TESTS=ON', '-DCMAKE_BUILD_TYPE=' + os.environ['CONFIG']]
build_command = ['msbuild', '/m:4', '/p:Config=' + os.environ['CONFIG'], 'FORMAT.sln']
test_command = ['msbuild', 'RUN_TESTS.vcxproj']
if build == 'mingw':
# Install MinGW.
mingw_url = 'http://sourceforge.net/projects/mingw-w64/files/' + \
'Toolchains%20targetting%20Win64/Personal%20Builds/' + \
'mingw-builds/4.9.2/threads-win32/seh/' + \
'x86_64-4.9.2-release-win32-seh-rt_v3-rev1.7z/download'
with Downloader().download(mingw_url) as f:
check_call(['7z', 'x', '-oC:\\', f])
# Remove path to Git bin directory from $PATH because it breaks MinGW config.
env['PATH'] = env['PATH'].replace(r'C:\Program Files (x86)\Git\bin', '')
path = os.environ['PATH'].replace(r'C:\Program Files (x86)\Git\bin', '')
os.environ['PATH'] = r'C:\Program Files (x86)\MSBUILD\12.0\bin\;' + path + r';C:\mingw64\bin'
cmake_command.append('-GMinGW Makefiles')
check_call(cmake_command, env=env)
build_command = ['mingw32-make', '-j4']
test_command = ['mingw32-make', 'test']
check_call(cmake_command)
check_call(build_command)