mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-24 12:14:26 +00:00
Move logic from travis.yml to a Python script
This commit is contained in:
parent
dd2e8b98de
commit
2ced92529d
37
appveyor.yml
37
appveyor.yml
@ -1,49 +1,42 @@
|
||||
environment:
|
||||
CTEST_OUTPUT_ON_FAILURE: 1
|
||||
matrix:
|
||||
- Build: msvc
|
||||
Config: Debug
|
||||
- Build: msvc
|
||||
Config: Release
|
||||
- Build: mingw
|
||||
Config: Debug
|
||||
- Build: mingw
|
||||
Config: Release
|
||||
- BUILD: msvc
|
||||
CONFIG: Debug
|
||||
- BUILD: msvc
|
||||
CONFIG: Release
|
||||
- BUILD: mingw
|
||||
CONFIG: Debug
|
||||
- BUILD: mingw
|
||||
CONFIG: Release
|
||||
|
||||
install:
|
||||
- ps: |
|
||||
if ($env:Build -eq "mingw") {
|
||||
if ($env:BUILD -eq "mingw") {
|
||||
# Install MinGW.
|
||||
$url = "http://sourceforge.net/projects/mingw-w64/files/"
|
||||
$url += "Toolchains%20targetting%20Win64/Personal%20Builds/"
|
||||
$url += "Toolchains%20targetting%20Win64/Personal%20BUILDs/"
|
||||
$url += "mingw-builds/4.9.0/threads-win32/seh/"
|
||||
$url += "x86_64-4.9.0-release-win32-seh-rt_v3-rev2.7z/download"
|
||||
Invoke-WebRequest -UserAgent wget -Uri $url -OutFile mingw.7z
|
||||
&7z x -oC:\ mingw.7z > $null
|
||||
}
|
||||
- set PATH=C:\Program Files (x86)\MSBuild\12.0\bin\;%PATH%;C:\mingw64\bin
|
||||
- set PATH=C:\Program Files (x86)\MSBUILD\12.0\bin\;%PATH%;C:\mingw64\bin
|
||||
|
||||
before_build:
|
||||
- ps: |
|
||||
if ($env:Build -eq "mingw") {
|
||||
# Remove path to Git bin directory from PATH because it breaks MinGW config.
|
||||
$env:PATH = $env:PATH -replace "C:\\Program Files \(x86\)\\Git\\bin",""
|
||||
$generator = "-GMinGW Makefiles"
|
||||
}
|
||||
- echo "-DCMAKE_BUILD_TYPE=$env:Config"
|
||||
- cmake -DFMT_EXTRA_TESTS=ON "-DCMAKE_BUILD_TYPE=$env:Config" "$generator" .
|
||||
- python support/build.py
|
||||
|
||||
build_script:
|
||||
- ps: |
|
||||
if ($env:Build -eq "mingw") {
|
||||
if ($env:BUILD -eq "mingw") {
|
||||
mingw32-make -j4
|
||||
} else {
|
||||
msbuild /m:4 /p:Config=$env:Config FORMAT.sln
|
||||
msbuild /m:4 /p:Config=$env:CONFIG FORMAT.sln
|
||||
}
|
||||
|
||||
test_script:
|
||||
- ps: |
|
||||
if ($env:Build -eq "mingw") {
|
||||
if ($env:BUILD -eq "mingw") {
|
||||
mingw32-make test
|
||||
} else {
|
||||
msbuild RUN_TESTS.vcxproj
|
||||
|
13
support/build.py
Executable file
13
support/build.py
Executable file
@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env python
|
||||
# Build the project on AppVeyor.
|
||||
|
||||
from subprocess import check_call
|
||||
import os
|
||||
|
||||
env = os.environ
|
||||
build = env['BUILD']
|
||||
if build == 'mingw':
|
||||
# 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', '')
|
||||
generator = ['-GMinGW Makefiles']
|
||||
check_call(['cmake', '-DFMT_EXTRA_TESTS=ON', '-DCMAKE_BUILD_TYPE=' + env['CONFIG']] + generator, env=env)
|
Loading…
Reference in New Issue
Block a user