ICU-21600 Increase timeout and separate build/test in Cygwin CI

This commit is contained in:
Daniel Ju 2021-05-14 16:46:34 -07:00 committed by Daniel Ju
parent 6d56429336
commit d64e897679

View file

@ -402,7 +402,7 @@ jobs:
#-------------------------------------------------------------------------
- job: ICU4C_Cygwin_GCC_x86_64_Release
displayName: 'C: Cygwin GCC x86_64 Release'
timeoutInMinutes: 120
timeoutInMinutes: 180
pool:
vmImage: 'windows-2019'
variables:
@ -456,8 +456,14 @@ 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 check"
displayName: 'Build and test'
%CYG_ROOT%\\bin\\bash -lc "cd $(cygpath \"$(Build.SourcesDirectory)\") && cd icu4c/source && ./runConfigureICU Cygwin && make tests"
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"
displayName: 'Run Tests'
env:
CC: gcc
CXX: g++