LumixEngine/appveyor.yml
2015-12-05 00:07:31 +01:00

47 lines
1.9 KiB
YAML

version: 0.17.{build}
os: Windows Server 2012 R2
configuration: RelWithDebInfo
before_build:
- cd projects
- cmake -G "Visual Studio 12"
- cd ..
build:
project: projects\LumixEngine.sln
verbosity: minimal
test_script:
- ps: >-
git clone --depth=1 https://github.com/nem0/LumixEngine_data.git 2>&1 | % { $_.ToString() }
cd LumixEngine_data
& "..\projects\RelWithDebInfo\unit_tests.exe" | Write-Output
$wc = New-Object Net.WebClient
$url = "https://ci.appveyor.com/api/testresults/nunit/$Env:APPVEYOR_JOB_ID"
$wc.UploadFile($url, (Resolve-Path .\tests.xml))
after_build:
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\RelWithDebInfo\animation.dll
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\RelWithDebInfo\audio.dll
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\RelWithDebInfo\editor.dll
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\RelWithDebInfo\engine.dll
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\RelWithDebInfo\lua_script.dll
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\RelWithDebInfo\physics.dll
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\RelWithDebInfo\renderer.dll
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\RelWithDebInfo\studio.exe
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\RelWithDebInfo\animation.pdb
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\RelWithDebInfo\audio.pdb
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\RelWithDebInfo\editor.pdb
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\RelWithDebInfo\engine.pdb
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\RelWithDebInfo\lua_script.pdb
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\RelWithDebInfo\physics.pdb
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\RelWithDebInfo\renderer.pdb
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\RelWithDebInfo\studio.pdb
artifacts:
- path: tests.xml
name: tests.xml
- path: lumix.zip
name: lumix.zip