mirror of
https://github.com/fmtlib/fmt.git
synced 2025-01-26 12:35:32 +00:00
Use preinstalled mingw on appveyor
This commit is contained in:
parent
8c8826f749
commit
f9e1c2bd59
@ -2,28 +2,18 @@
|
||||
# Build the project on AppVeyor.
|
||||
|
||||
import os
|
||||
from download import Downloader
|
||||
from subprocess import check_call
|
||||
|
||||
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']
|
||||
config = os.environ['CONFIG']
|
||||
cmake_command = ['cmake', '-DFMT_EXTRA_TESTS=ON', '-DCMAKE_BUILD_TYPE=' + config]
|
||||
if build == 'mingw':
|
||||
# Install MinGW.
|
||||
mingw_url = 'http://ufpr.dl.sourceforge.net/project/mingw-w64/' + \
|
||||
'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'
|
||||
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.
|
||||
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')
|
||||
build_command = ['mingw32-make', '-j4']
|
||||
test_command = ['mingw32-make', 'test']
|
||||
else:
|
||||
build_command = ['msbuild', '/m:4', '/p:Config=' + config, 'FORMAT.sln']
|
||||
test_command = ['msbuild', 'RUN_TESTS.vcxproj']
|
||||
|
||||
check_call(cmake_command)
|
||||
check_call(build_command)
|
||||
|
Loading…
x
Reference in New Issue
Block a user