mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-02 11:28:20 +00:00
44 lines
1.0 KiB
YAML
44 lines
1.0 KiB
YAML
environment:
|
|
matrix:
|
|
- build: msvc
|
|
generator:
|
|
- build: mingw
|
|
generator: -G "MinGW Makefiles"
|
|
|
|
configuration:
|
|
- Debug
|
|
- Release
|
|
|
|
install:
|
|
# Install MinGW.
|
|
- set generator
|
|
- ps: |
|
|
if ($env:build -eq "mingw") {
|
|
Invoke-WebRequest -UserAgent wget -Uri http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/4.9.0/threads-win32/seh/x86_64-4.9.0-release-win32-seh-rt_v3-rev2.7z/download -OutFile mingw.7z
|
|
7z x -oC:\ mingw.7z > nul
|
|
}
|
|
- set PATH=C:\Program Files (x86)\MSBuild\12.0\bin\;%PATH%;C:\wingw64\bin
|
|
|
|
before_build:
|
|
- cmake -DFMT_EXTRA_TESTS=ON $generator .
|
|
|
|
build_script:
|
|
- ps: |
|
|
if ($env:build -eq "mingw") {
|
|
mingw32-make -j4
|
|
} else {
|
|
msbuild /m:4 FORMAT.sln
|
|
}
|
|
|
|
test_script:
|
|
- ps: |
|
|
if ($env:build -eq "mingw") {
|
|
mingw32-make test
|
|
} else {
|
|
msbuild RUN_TESTS.vcxproj
|
|
}
|
|
|
|
on_failure:
|
|
- appveyor PushArtifact Testing/Temporary/LastTest.log
|
|
- appveyor AddTest test
|