Skip to content

Commit 6021e22

Browse files
committed
Distinguish x86 and x64 Outputs from AppVeyor
1 parent c4d8bd2 commit 6021e22

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

appveyor.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ environment:
66
QT_PATH: C:\Qt\5.7\msvc2015
77
SSL_BUILD: jjlsys3xhwn410sw
88
INNO_ARGS:
9+
ARTIFACT_SUFFIX: _x86
910
- VC_ARCH: amd64
1011
QT_PATH: C:\Qt\5.7\msvc2015_64
1112
SSL_BUILD: r2cuqxx95y9bcrwk
@@ -43,13 +44,13 @@ build_script:
4344
4445
copy ssleay32.dll build-Windows\
4546
46-
pushd build-Windows & 7z a -tzip ..\OpenRCT2Launcher-win.zip * & popd
47+
pushd build-Windows & 7z a -tzip ..\OpenRCT2Launcher-win%ARTIFACT_SUFFIX%.zip * & popd
4748
4849
iscc %INNO_ARGS% installer.iss
4950
artifacts:
50-
- path: OpenRCT2Launcher-win.zip
51+
- path: OpenRCT2Launcher-win*.zip
5152
name: zip-archive
52-
- path: OpenRCT2Launcher-win.exe
53+
- path: OpenRCT2Launcher-win*.exe
5354
name: exe-installer
5455
deploy:
5556
- provider: GitHub

installer.iss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,16 @@ AppPublisherURL={#MyAppURL}
2626
DefaultDirName={pf}\{#MyAppName}
2727
DisableProgramGroupPage=yes
2828
OutputDir=.
29-
OutputBaseFilename=OpenRCT2Launcher-win
3029
Compression=lzma
3130
SolidCompression=yes
3231

3332
#ifdef BUILD64
33+
OutputBaseFilename=OpenRCT2Launcher-win
3434
ArchitecturesInstallIn64BitMode=x64
3535
ArchitecturesAllowed=x64
3636
#else
37+
OutputBaseFilename=OpenRCT2Launcher-win-x86
38+
3739
[Code]
3840
function InitializeSetup(): Boolean;
3941
begin

0 commit comments

Comments
 (0)