File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -376,10 +376,10 @@ jobs:
376
376
build_flags : ' /p:Configuration=Debug /p:Platform=Win32'
377
377
- test_flags : ' arm Release'
378
378
build_flags : ' /p:Configuration=Release /p:Platform=ARM'
379
+ - test_flags : ' x64 Release cpplatest'
380
+ build_flags : ' /p:OverrideLanguageStandard=stdcpplatest /p:Configuration=Release /p:Platform=x64'
379
381
- test_flags : ' x64 Release'
380
- build_flags : ' /p:LanguageStandard=stdcpplatest /p:Configuration=Release /p:Platform=x64'
381
- - test_flags : ' x64 Release'
382
- build_flags : ' /p:_HAS_EXCEPTIONS=0 /p:Configuration=Release /p:Platform=x64'
382
+ build_flags : ' /p:Configuration=Release /p:Platform=x64'
383
383
steps :
384
384
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
385
385
- name : Set up MSBuild
Original file line number Diff line number Diff line change 97
97
<!-- Enable parallel compilation for faster builds. -->
98
98
<MultiProcessorCompilation >true</MultiProcessorCompilation >
99
99
<!-- Set the C/C++ versions supported. -->
100
- <LanguageStandard >stdcpp17</LanguageStandard >
100
+ <LanguageStandard Condition =" '$(OverrideLanguageStandard)'==''" >stdcpp17</LanguageStandard >
101
+ <LanguageStandard Condition =" '$(OverrideLanguageStandard)'!=''" >$(OverrideLanguageStandard)</LanguageStandard >
101
102
<LanguageStandard_C >stdc11</LanguageStandard_C >
102
103
</ClCompile >
103
104
<ResourceCompile >
Original file line number Diff line number Diff line change 46
46
U_PLATFORM_HAS_WINUWP_API=1;
47
47
</PreprocessorDefinitions >
48
48
<!-- Set the C/C++ versions supported. -->
49
- <LanguageStandard >stdcpp17</LanguageStandard >
49
+ <LanguageStandard Condition =" '$(OverrideLanguageStandard)'==''" >stdcpp17</LanguageStandard >
50
+ <LanguageStandard Condition =" '$(OverrideLanguageStandard)'!=''" >$(OverrideLanguageStandard)</LanguageStandard >
50
51
<LanguageStandard_C >stdc11</LanguageStandard_C >
51
52
</ClCompile >
52
53
<ResourceCompile >
You can’t perform that action at this time.
0 commit comments