Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Build/Chakra.Build.Default.props
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<EnableIntl Condition="'$(EnableIntl)'==''">true</EnableIntl>
<EnableIntl Condition="'$(BuildLite)'=='true'">false</EnableIntl>

<ChakraICU Condition="'$(ChakraICU)'==''">false</ChakraICU>
<ChakraICU Condition="'$(ChakraICU)'==''">windows</ChakraICU>

<BuildChakraICUData Condition="'$(BuildChakraICUData)'=='' AND ('$(ChakraICU)'=='static' OR '$(ChakraICU)'=='shared')">true</BuildChakraICUData>

Expand Down
22 changes: 11 additions & 11 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,71 +125,71 @@ jobs:
maxParallel: 4
matrix:
x86.Debug:
image_name: 'windows-2022'
image_name: 'windows-2025'
build_type: 'debug'
target: 'x86'
special_build: ''
do_test: true
test_tags: ''
build_outdir_suffix: ''
x86.Test:
image_name: 'windows-2022'
image_name: 'windows-2025'
build_type: 'test'
target: 'x86'
special_build: ''
do_test: true
test_tags: '--include-slow'
build_outdir_suffix: ''
x86.NoJit:
image_name: 'windows-2022'
image_name: 'windows-2025'
build_type: 'debug'
target: 'x86'
special_build: '"/p:BuildJIT=false"'
do_test: true
test_tags: '-disablejit'
build_outdir_suffix: '.NoJIT'
x86.Release:
image_name: 'windows-2022'
image_name: 'windows-2025'
build_type: 'release'
target: 'x86'
special_build: ''
do_test: false
test_tags: ''
build_outdir_suffix: ''
x64.Debug:
image_name: 'windows-2022'
image_name: 'windows-2025'
build_type: 'debug'
target: 'x64'
special_build: ''
do_test: true
test_tags: ''
build_outdir_suffix: ''
x64.Test:
image_name: 'windows-2022'
image_name: 'windows-2025'
build_type: 'test'
target: 'x64'
special_build: ''
do_test: true
test_tags: '--include-slow'
build_outdir_suffix: ''
x64.Release:
image_name: 'windows-2022'
image_name: 'windows-2025'
build_type: 'release'
target: 'x64'
special_build: ''
do_test: false
test_tags: ''
build_outdir_suffix: ''
win19.x86.Release:
image_name: 'windows-2019'
win22.x86.Release:
image_name: 'windows-2022'
build_type: 'release'
target: 'x86'
special_build: ''
do_test: false
test_tags: ''
build_outdir_suffix: ''
win19.x64.Release:
image_name: 'windows-2019'
win22.x64.Release:
image_name: 'windows-2022'
build_type: 'release'
target: 'x64'
special_build: ''
Expand Down
Loading