Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Use supported versions of Windows #381

Merged
merged 2 commits into from
May 15, 2022
Merged
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
8 changes: 4 additions & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
targetPath: 'runtime/python/dist/'
- job: win_build
pool:
vmImage: 'vs2017-win2016'
vmImage: 'windows-2019'
steps:
- checkout: self
- powershell: Write-Host "##vso[task.prependpath]$env:CONDA\Scripts"
Expand All @@ -61,7 +61,7 @@ jobs:
- script: |
mkdir build
cd build
cmake .. -G"Visual Studio 15 2017 Win64" -DBUILD_CPP_TEST=ON
cmake .. -G"Visual Studio 16 2019" -A x64 -DBUILD_CPP_TEST=ON
displayName: 'Generating Visual Studio solution...'
- task: MSBuild@1
inputs:
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
CODECOV_TOKEN: afe9868c-2c27-4853-89fa-4bc5d3d2b255
- job: win_python_coverage
pool:
vmImage: 'windows-latest'
vmImage: 'windows-2019'
steps:
- checkout: self
- powershell: Write-Host "##vso[task.prependpath]$env:CONDA\Scripts"
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
- job: win_python_wheel_test
dependsOn: win_build
pool:
vmImage: 'windows-latest'
vmImage: 'windows-2019'
steps:
- powershell: Write-Host "##vso[task.prependpath]$env:CONDA\Scripts"
displayName: 'Add conda to PATH'
Expand Down