From f9a39580e28866146385175e62517b992468c3be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tur=C3=A1nszki=20J=C3=A1nos?= Date: Mon, 8 Jul 2019 12:13:04 +0100 Subject: [PATCH] create 32-bit builds with appveyor --- appveyor.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 5370ec622..858a157eb 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -4,17 +4,27 @@ branches: - master image: Visual Studio 2017 configuration: Release -platform: x64 +platform: +- x64 +- x86 build: parallel: true verbosity: minimal after_build: - cmd: move %APPVEYOR_BUILD_FOLDER%\x64\Release\Editor.exe %APPVEYOR_BUILD_FOLDER%\Editor - cmd: 7z a WickedEngineEditor.zip WickedEngine\shaders\ WickedEngine\fonts\ images\ models\ scripts\ shadercompilers\ Documentation\ *.py *.txt *.md Editor\Editor.exe Editor\images\ Editor\sound\ Editor\*.ini Editor\*.ico Editor\*.lua +- cmd: move %APPVEYOR_BUILD_FOLDER%\Win32\Release\Editor.exe %APPVEYOR_BUILD_FOLDER%\Editor_32bit +- cmd: 7z a WickedEngineEditor_32bit.zip WickedEngine\shaders\ WickedEngine\fonts\ images\ models\ scripts\ shadercompilers\ Documentation\ *.py *.txt *.md Editor\Editor.exe Editor\images\ Editor\sound\ Editor\*.ini Editor\*.ico Editor\*.lua - cmd: move %APPVEYOR_BUILD_FOLDER%\x64\Release\Tests.exe %APPVEYOR_BUILD_FOLDER%\Tests - cmd: 7z a WickedEngineTests.zip WickedEngine\shaders\ WickedEngine\fonts\ images\ models\ scripts\ shadercompilers\ Documentation\ *.py *.txt *.md Tests\Tests.exe Tests\images\ Tests\sound\ Tests\*.ini Tests\*.ico Tests\*.lua Tests\*.ttf +- cmd: move %APPVEYOR_BUILD_FOLDER%\Win32\Release\Tests.exe %APPVEYOR_BUILD_FOLDER%\Tests_32bit +- cmd: 7z a WickedEngineTests_32bit.zip WickedEngine\shaders\ WickedEngine\fonts\ images\ models\ scripts\ shadercompilers\ Documentation\ *.py *.txt *.md Tests\Tests.exe Tests\images\ Tests\sound\ Tests\*.ini Tests\*.ico Tests\*.lua Tests\*.ttf artifacts: - path: WickedEngineEditor.zip name: Editor +- path: WickedEngineEditor_32bit.zip + name: Editor_32bit - path: WickedEngineTests.zip name: Tests +- path: WickedEngineTests_32bit.zip + name: Tests_32bit