Skip to content

Commit

Permalink
[CI] Update Windows images (chakra-core#6832)
Browse files Browse the repository at this point in the history
Use per-build images in Windows CI configuration.

Bump Windows builds to 2022, add extra two builds for Windows 2019.
  • Loading branch information
ppenzin authored Aug 26, 2022
1 parent 479737f commit b521cfe
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,53 +104,74 @@ jobs:
- job: MSVC
timeoutInMinutes: 120
pool:
vmImage: 'windows-2019'
strategy:
maxParallel: 4
matrix:
x86.Debug:
image_name: 'windows-2022'
build_type: 'debug'
target: 'x86'
special_build: ''
do_test: true
test_tags: ''
x86.Test:
image_name: 'windows-2022'
build_type: 'test'
target: 'x86'
special_build: ''
do_test: true
test_tags: '--include-slow'
x86.NoJit:
image_name: 'windows-2022'
build_type: 'debug'
target: 'x86'
special_build: '"/p:BuildJIT=false"'
do_test: true
test_tags: '-disablejit'
x86.Release:
image_name: 'windows-2022'
build_type: 'release'
target: 'x86'
special_build: ''
do_test: false
test_tags: ''
x64.Debug:
image_name: 'windows-2022'
build_type: 'debug'
target: 'x64'
special_build: ''
do_test: true
test_tags: ''
x64.Test:
image_name: 'windows-2022'
build_type: 'test'
target: 'x64'
special_build: ''
do_test: true
test_tags: '--include-slow'
x64.Release:
image_name: 'windows-2022'
build_type: 'release'
target: 'x64'
special_build: ''
do_test: false
test_tags: ''
win19.x86.Release:
image_name: 'windows-2019'
build_type: 'release'
target: 'x86'
special_build: ''
do_test: false
test_tags: ''
win19.x64.Release:
image_name: 'windows-2019'
build_type: 'release'
target: 'x64'
special_build: ''
do_test: false
test_tags: ''
pool:
vmImage: $(image_name)

steps:
- script: test\ci.buildone.cmd %TARGET% %BUILD% %SPECIAL%
Expand Down

0 comments on commit b521cfe

Please sign in to comment.