From a0cdb9cda5d0bcd86c06ae7a73fa45682cf90dea Mon Sep 17 00:00:00 2001 From: Rahul Pandey <103115900+rp9-next@users.noreply.github.com> Date: Wed, 6 Mar 2024 11:50:40 +0000 Subject: [PATCH] ICU-22597 Add MSVC build bot to build ICU4C without exceptions See #2829 --- .ci-builds/.azure-pipelines-icu4c.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.ci-builds/.azure-pipelines-icu4c.yml b/.ci-builds/.azure-pipelines-icu4c.yml index ba417a78147..a749764931e 100644 --- a/.ci-builds/.azure-pipelines-icu4c.yml +++ b/.ci-builds/.azure-pipelines-icu4c.yml @@ -636,3 +636,30 @@ jobs: inputs: PathtoPublish: 'icuexportdata_tag-goes-here.zip' ArtifactName: 'icuexportdata_output' +#------------------------------------------------------------------------- +# Builds MSVC with cpp exceptions turned off +- job: ICU4C_MSVC_x64_Release_NoExceptions + displayName: 'C: MSVC 64-bit Release No Exceptions' + timeoutInMinutes: 30 + pool: + vmImage: 'windows-2022' + demands: + - msbuild + - visualstudio + - Cmd + steps: + - checkout: self + lfs: true + fetchDepth: 10 + - task: VSBuild@1 + displayName: 'Build Solution' + inputs: + solution: icu4c/source/allinone/allinone.sln + platform: x64 + configuration: Release + msbuildArgs: '/p:_HAS_EXCEPTIONS=0' + - task: BatchScript@1 + displayName: 'Run Tests (icucheck.bat)' + inputs: + filename: icu4c/source/allinone/icucheck.bat + arguments: 'x64 Release'