ICU-22740 Add -Wctad-maybe-unsupported to CI jobs that use -Wall -Wextra.

This modifies the following jobs:

C: Linux Clang-16 WarningsAsErrors (Ubuntu 20.04)
C: macOS(Latest) Clang WarningsAsErrors
This commit is contained in:
Tim Chevalier 2024-04-22 11:53:09 -07:00 committed by Elango Cheran
parent db0694e8ab
commit 084af5c2b6

View file

@ -164,7 +164,7 @@ jobs:
displayName: 'Build only (WarningsAsErrors)'
env:
CC: clang-16
CPPFLAGS: '-Werror -Wno-strict-prototypes -Wall -Wextra -Wextra-semi -Wundef -Wnon-virtual-dtor -Wsuggest-override'
CPPFLAGS: '-Werror -Wno-strict-prototypes -Wall -Wextra -Wextra-semi -Wundef -Wnon-virtual-dtor -Wsuggest-override -Wctad-maybe-unsupported'
CXX: clang++-16
#-------------------------------------------------------------------------
- job: ICU4C_Clang16_Cpp20_Ubuntu_2004
@ -555,7 +555,7 @@ jobs:
lfs: true
fetchDepth: 10
- script: |
export CPPFLAGS="-Werror -Wall -Wextra -Wextra-semi -Wundef -Wnon-virtual-dtor" && cd icu4c/source && ./runConfigureICU MacOSX && make -j -l2.5 check
export CPPFLAGS="-Werror -Wall -Wextra -Wextra-semi -Wundef -Wnon-virtual-dtor -Wctad-maybe-unsupported" && cd icu4c/source && ./runConfigureICU MacOSX && make -j -l2.5 check
displayName: 'Build and Test (WarningsAsErrors)'
env:
CC: clang