From 981057143ceb68bcf6dc6c81a3c279645f98d6a9 Mon Sep 17 00:00:00 2001 From: Fredrik Roubert Date: Wed, 17 Jan 2024 17:40:42 +0900 Subject: [PATCH] ICU-21107 Remove CI jobs using MSVC too old to support C11. Versions before VS 2019 don't have C11 standard library features: https://learn.microsoft.com/en-us/cpp/overview/visual-cpp-language-conformance?view=msvc-170#c-standard-library-features-1 --- .ci-builds/.azure-pipelines.yml | 56 --------------------------------- 1 file changed, 56 deletions(-) diff --git a/.ci-builds/.azure-pipelines.yml b/.ci-builds/.azure-pipelines.yml index af3e8566777..ebcbe731916 100644 --- a/.ci-builds/.azure-pipelines.yml +++ b/.ci-builds/.azure-pipelines.yml @@ -510,62 +510,6 @@ jobs: filename: icu4c/source/allinone/icucheck.bat arguments: 'x86 Debug' #------------------------------------------------------------------------- -# VS2019 using the VS2017 toolset builds -#------------------------------------------------------------------------- -- job: ICU4C_MSVC_x64_Release_VS2017 - displayName: 'C: MSVC 64-bit Release (VS 2017)' - timeoutInMinutes: 30 - pool: - vmImage: 'windows-2019' - 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:DefaultPlatformToolset=v141 - - task: BatchScript@1 - displayName: 'Run Tests (icucheck.bat)' - inputs: - filename: icu4c/source/allinone/icucheck.bat - arguments: 'x64 Release' -#------------------------------------------------------------------------- -# VS2019 using the VS2015 toolset -#------------------------------------------------------------------------- -- job: ICU4C_MSVC_x64_Release_VS2015 - displayName: 'C: MSVC 64-bit Release (VS 2015)' - timeoutInMinutes: 30 - pool: - vmImage: 'windows-2019' - 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:SkipUWP=true /p:DefaultPlatformToolset=v140 /p:AutodetectWin10SDK=true - - task: BatchScript@1 - displayName: 'Run Tests (icucheck.bat)' - inputs: - filename: icu4c/source/allinone/icucheck.bat - arguments: 'x64 Release' -#------------------------------------------------------------------------- - job: ICU4C_MSYS2_GCC_x86_64_Release displayName: 'C: MSYS2 GCC x86_64 Release' timeoutInMinutes: 45