ci: rename appveyor.yml

This commit is contained in:
Leo Yuriev
2017-04-24 16:35:02 +03:00
parent 0d59cd4fe2
commit 1b26de1f44

29
appveyor.yml Normal file
View File

@@ -0,0 +1,29 @@
image: Visual Studio 2015
environment:
matrix:
# - Toolset: v141
- Toolset: v140
- Toolset: v120
- Toolset: v110
- Toolset: v100
platform:
- x86
- x64
configuration:
- Release
- Debug
build:
verbosity: minimal
project: mdbx.sln
test_script:
- ps: |
if (($env:PLATFORM -eq "x86") -and (Test-Path "C:\projects\libmdbx\Win32\$env:CONFIGURATION\test.exe" -PathType Leaf)) {
& "C:\projects\libmdbx\Win32\$env:CONFIGURATION\test.exe" --pathname=tmp.db --dont-cleanup-after basic
} else {
& "C:\projects\libmdbx\$env:PLATFORM\$env:CONFIGURATION\test.exe" --pathname=tmp.db --dont-cleanup-after basic
}