2016-01-04 10:26:03 +01:00
|
|
|
version: 0.19.{build}
|
2015-02-26 00:03:49 +01:00
|
|
|
os: Windows Server 2012 R2
|
2015-12-05 00:07:31 +01:00
|
|
|
configuration: RelWithDebInfo
|
2015-07-27 21:56:42 +02:00
|
|
|
before_build:
|
|
|
|
- cd projects
|
2016-01-07 20:50:52 +01:00
|
|
|
- genie_vs13.bat
|
2015-07-27 21:56:42 +02:00
|
|
|
- cd ..
|
2015-02-26 00:03:49 +01:00
|
|
|
build:
|
2015-12-09 20:32:19 +01:00
|
|
|
project: projects\tmp\LumixEngine.sln
|
2015-02-26 00:03:49 +01:00
|
|
|
verbosity: minimal
|
2015-07-29 00:35:45 +02:00
|
|
|
test_script:
|
|
|
|
- ps: >-
|
|
|
|
git clone --depth=1 https://github.com/nem0/LumixEngine_data.git 2>&1 | % { $_.ToString() }
|
|
|
|
|
|
|
|
cd LumixEngine_data
|
2016-01-09 10:14:59 +01:00
|
|
|
|
|
|
|
& "..\projects\tmp\bin\RelWithDebInfo\unit_tests.exe" | Write-Output
|
2015-07-29 00:35:45 +02:00
|
|
|
|
|
|
|
$wc = New-Object Net.WebClient
|
|
|
|
$url = "https://ci.appveyor.com/api/testresults/nunit/$Env:APPVEYOR_JOB_ID"
|
|
|
|
$wc.UploadFile($url, (Resolve-Path .\tests.xml))
|
2015-02-26 00:03:49 +01:00
|
|
|
|
2016-01-09 10:14:59 +01:00
|
|
|
- ps: >-
|
|
|
|
& "..\projects\tmp\bin\RelWithDebInfo\render_test.exe" | Write-Output
|
|
|
|
|
2015-07-27 23:15:20 +02:00
|
|
|
after_build:
|
2015-12-09 21:04:01 +01:00
|
|
|
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\bin\RelWithDebInfo\animation.dll
|
|
|
|
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\bin\RelWithDebInfo\audio.dll
|
|
|
|
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\bin\RelWithDebInfo\editor.dll
|
|
|
|
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\bin\RelWithDebInfo\engine.dll
|
|
|
|
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\bin\RelWithDebInfo\lua_script.dll
|
|
|
|
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\bin\RelWithDebInfo\physics.dll
|
|
|
|
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\bin\RelWithDebInfo\renderer.dll
|
2015-12-24 14:48:32 +01:00
|
|
|
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\bin\RelWithDebInfo\studio_lib.dll
|
2015-12-09 21:04:01 +01:00
|
|
|
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\bin\RelWithDebInfo\studio.exe
|
|
|
|
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\bin\RelWithDebInfo\animation.pdb
|
|
|
|
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\bin\RelWithDebInfo\audio.pdb
|
|
|
|
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\bin\RelWithDebInfo\editor.pdb
|
|
|
|
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\bin\RelWithDebInfo\engine.pdb
|
|
|
|
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\bin\RelWithDebInfo\lua_script.pdb
|
|
|
|
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\bin\RelWithDebInfo\physics.pdb
|
|
|
|
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\bin\RelWithDebInfo\renderer.pdb
|
|
|
|
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\bin\RelWithDebInfo\studio.pdb
|
2015-12-24 14:48:32 +01:00
|
|
|
- 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\bin\RelWithDebInfo\studio_lib.pdb
|
2015-07-27 23:21:46 +02:00
|
|
|
|
2015-02-26 00:03:49 +01:00
|
|
|
artifacts:
|
2015-07-29 00:35:45 +02:00
|
|
|
- path: tests.xml
|
|
|
|
name: tests.xml
|
2015-07-27 23:15:20 +02:00
|
|
|
|
|
|
|
- path: lumix.zip
|
2015-07-28 00:46:39 +02:00
|
|
|
name: lumix.zip
|
|
|
|
|