From 02f8bb3db47f77082244097fd4fd718103771cbc Mon Sep 17 00:00:00 2001 From: Mikulas Florek Date: Sat, 21 Oct 2017 21:58:54 +0200 Subject: [PATCH] vs2017 appveyor --- appveyor.yml | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index eb219c4f4..4db96af7a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,10 +3,10 @@ os: Windows Server 2012 R2 configuration: RelWithDebInfo before_build: - cd projects - - genie_vs15.bat + - genie_vs17.bat - cd .. build: - project: projects\tmp\vs2015\LumixEngine.sln + project: projects\tmp\vs2017\LumixEngine.sln verbosity: minimal test_script: @@ -15,40 +15,40 @@ test_script: cd LumixEngine_data - & "..\projects\tmp\vs2015\bin\RelWithDebInfo\unit_tests.exe" | Write-Output + & "..\projects\tmp\vs2017\bin\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)) - ps: >- - & "..\projects\tmp\vs2015\bin\RelWithDebInfo\studio.exe" -run_script unit_tests/render_tests/compile_shaders.lua | Write-Output + & "..\projects\tmp\vs2017\bin\RelWithDebInfo\studio.exe" -run_script unit_tests/render_tests/compile_shaders.lua | Write-Output - ps: >- - & "..\projects\tmp\vs2015\bin\RelWithDebInfo\studio.exe" -pseudorandom_guid -run_script unit_tests/editor/main.lua | Write-Output + & "..\projects\tmp\vs2017\bin\RelWithDebInfo\studio.exe" -pseudorandom_guid -run_script unit_tests/editor/main.lua | Write-Output - ps: >- - & "..\projects\tmp\vs2015\bin\RelWithDebInfo\app.exe" -window -pipeline pipelines/render_test.lua -script unit_tests/render_tests/main.lua | Write-Output + & "..\projects\tmp\vs2017\bin\RelWithDebInfo\app.exe" -window -pipeline pipelines/render_test.lua -script unit_tests/render_tests/main.lua | Write-Output after_build: - - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2015\bin\RelWithDebInfo\animation.dll - - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2015\bin\RelWithDebInfo\audio.dll - - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2015\bin\RelWithDebInfo\editor.dll - - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2015\bin\RelWithDebInfo\engine.dll - - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2015\bin\RelWithDebInfo\lua_script.dll - - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2015\bin\RelWithDebInfo\navigation.dll - - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2015\bin\RelWithDebInfo\physics.dll - - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2015\bin\RelWithDebInfo\renderer.dll - - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2015\bin\RelWithDebInfo\studio.exe - - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2015\bin\RelWithDebInfo\animation.pdb - - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2015\bin\RelWithDebInfo\audio.pdb - - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2015\bin\RelWithDebInfo\editor.pdb - - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2015\bin\RelWithDebInfo\engine.pdb - - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2015\bin\RelWithDebInfo\lua_script.pdb - - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2015\bin\RelWithDebInfo\navigation.pdb - - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2015\bin\RelWithDebInfo\physics.pdb - - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2015\bin\RelWithDebInfo\renderer.pdb - - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2015\bin\RelWithDebInfo\studio.pdb + - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2017\bin\RelWithDebInfo\animation.dll + - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2017\bin\RelWithDebInfo\audio.dll + - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2017\bin\RelWithDebInfo\editor.dll + - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2017\bin\RelWithDebInfo\engine.dll + - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2017\bin\RelWithDebInfo\lua_script.dll + - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2017\bin\RelWithDebInfo\navigation.dll + - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2017\bin\RelWithDebInfo\physics.dll + - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2017\bin\RelWithDebInfo\renderer.dll + - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2017\bin\RelWithDebInfo\studio.exe + - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2017\bin\RelWithDebInfo\animation.pdb + - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2017\bin\RelWithDebInfo\audio.pdb + - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2017\bin\RelWithDebInfo\editor.pdb + - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2017\bin\RelWithDebInfo\engine.pdb + - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2017\bin\RelWithDebInfo\lua_script.pdb + - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2017\bin\RelWithDebInfo\navigation.pdb + - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2017\bin\RelWithDebInfo\physics.pdb + - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2017\bin\RelWithDebInfo\renderer.pdb + - 7z a lumix.zip %APPVEYOR_BUILD_FOLDER%\projects\tmp\vs2017\bin\RelWithDebInfo\studio.pdb artifacts: - path: tests.xml