From 823b42e0282825b71ee2bff5d3c5f8c24d59cff4 Mon Sep 17 00:00:00 2001 From: Nelson Chen Date: Mon, 8 Jul 2019 22:04:07 -0700 Subject: [PATCH 1/3] Pin Inno Setup to Version 6.0.2 on Azure Pipelines Signed-off-by: Dom Rodriguez --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e34a3bc5..99ee4272 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -49,7 +49,7 @@ jobs: inputs: pathtoPublish: $(Build.ArtifactStagingDirectory)\$(CI_ENV_BUILD_TYPE).zip artifactName: Windows $(CI_ENV_BUILD_TYPE) - - script: choco install innosetup --version 5.6.1.20190126 --allow-downgrade + - script: choco install innosetup --version 6.0.2 --allow-downgrade displayName: Ensure desired version of Inno Setup is installed. condition: eq(variables['CI_ENV_BUILD_TYPE'], 'Release') - script: build_installer.bat From bbf142cbc41e0e43f74f7da8a1de76efbe784c88 Mon Sep 17 00:00:00 2001 From: Nelson Chen Date: Mon, 8 Jul 2019 20:11:10 -0700 Subject: [PATCH 2/3] Build with Inno Setup 6 Signed-off-by: Dom Rodriguez --- build_installer.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_installer.bat b/build_installer.bat index 9c204ccf..c1e418b8 100644 --- a/build_installer.bat +++ b/build_installer.bat @@ -1,5 +1,5 @@ @echo off -set INNO_ROOT=C:\Program Files (x86)\Inno Setup 5 +set INNO_ROOT=C:\Program Files (x86)\Inno Setup 6 set savedir=%cd% cd /d %~dp0 From d6291513deb86d7d30af1465358336a8ee13eb13 Mon Sep 17 00:00:00 2001 From: Dom Rodriguez Date: Sat, 6 Nov 2021 21:20:32 +0000 Subject: [PATCH 3/3] Bump Inno Setup version to 6.2.0 from 6.0.2 Signed-off-by: Dom Rodriguez --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 99ee4272..dd170def 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -49,7 +49,7 @@ jobs: inputs: pathtoPublish: $(Build.ArtifactStagingDirectory)\$(CI_ENV_BUILD_TYPE).zip artifactName: Windows $(CI_ENV_BUILD_TYPE) - - script: choco install innosetup --version 6.0.2 --allow-downgrade + - script: choco install innosetup --version 6.2.0 --allow-downgrade displayName: Ensure desired version of Inno Setup is installed. condition: eq(variables['CI_ENV_BUILD_TYPE'], 'Release') - script: build_installer.bat