From 4b515504fdee138bbcb5fcabb6ed7ed18f544135 Mon Sep 17 00:00:00 2001 From: Frank Tang Date: Wed, 12 Apr 2023 21:14:02 +0000 Subject: [PATCH] ICU-22349 Build cygwin with -j to run multiple cores See #2421 --- .ci-builds/.azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.ci-builds/.azure-pipelines.yml b/.ci-builds/.azure-pipelines.yml index 115b383797a..8f14ee79837 100644 --- a/.ci-builds/.azure-pipelines.yml +++ b/.ci-builds/.azure-pipelines.yml @@ -546,7 +546,7 @@ jobs: #------------------------------------------------------------------------- - job: ICU4C_Cygwin_GCC_x86_64_Release displayName: 'C: Cygwin GCC x86_64 Release' - timeoutInMinutes: 180 + timeoutInMinutes: 40 pool: vmImage: 'windows-2019' variables: @@ -600,13 +600,13 @@ jobs: %CYG_ROOT%\\bin\\sh -lc 'echo Hello' && %CYG_ROOT%\\bin\\sh -lc 'uname -a' displayName: 'Check Cygwin environment' - script: | - %CYG_ROOT%\\bin\\bash -lc "cd $(cygpath \"$(Build.SourcesDirectory)\") && cd icu4c/source && ./runConfigureICU Cygwin && make tests" + %CYG_ROOT%\\bin\\bash -lc "cd $(cygpath \"$(Build.SourcesDirectory)\") && cd icu4c/source && ./runConfigureICU Cygwin && make tests -j " displayName: 'Build ICU (source and test)' env: CC: gcc CXX: g++ - script: | - %CYG_ROOT%\\bin\\bash -lc "cd $(cygpath \"$(Build.SourcesDirectory)\") && cd icu4c/source && make check" + %CYG_ROOT%\\bin\\bash -lc "cd $(cygpath \"$(Build.SourcesDirectory)\") && cd icu4c/source && make -j check" displayName: 'Run Tests' env: CC: gcc