From af444a6932939225416925ccd960d3b629558001 Mon Sep 17 00:00:00 2001 From: Nelson Chen Date: Mon, 8 Jul 2019 20:25:49 -0700 Subject: [PATCH] Ensure Inno Setup 5 is installed in Azure Pipelines --- azure-pipelines.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index cabe88f4..bd773d33 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -49,6 +49,9 @@ 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 + displayName: Ensure desired version of Inno Setup is installed. + condition: eq(variables['CI_ENV_BUILD_TYPE'], 'Release') - script: build_installer.bat displayName: Build Installer condition: eq(variables['CI_ENV_BUILD_TYPE'], 'Release')