Skip to content

Commit ee75f4a

Browse files
authored
Upgrade Windows image to windows-2019. (#1879)
* Use windows-2019 since the latest version of windows image doesn't support Python 3.6. Signed-off-by: Jay Zhang <[email protected]>
1 parent d536f04 commit ee75f4a

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

ci_build/azure_pipelines/keras2onnx_application_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
- job: 'Win'
6161
timeoutInMinutes: 180
6262
pool:
63-
vmImage: 'vs2017-win2016'
63+
vmImage: 'windows-2019'
6464
strategy:
6565
matrix:
6666
Python36-onnx1.5:

ci_build/azure_pipelines/keras2onnx_unit_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676

7777
- job: 'Win'
7878
pool:
79-
vmImage: 'vs2017-win2016'
79+
vmImage: 'windows-2019'
8080
strategy:
8181
matrix:
8282
############ TF Keras Unit Tests ############

ci_build/azure_pipelines/templates/job_generator.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ jobs:
3535
${{ if eq(platform, 'linux') }}:
3636
CI_VM_IMAGE: 'ubuntu-latest'
3737
${{ if eq(platform, 'windows') }}:
38-
CI_VM_IMAGE: 'vs2017-win2016'
38+
CI_VM_IMAGE: 'windows-2019'
3939
${{ if eq(platform, 'mac') }}:
40-
CI_VM_IMAGE: 'macOS-10.13'
40+
CI_VM_IMAGE: 'macOS-11'
4141
CI_PLATFORM: '${{ platform }}'
4242
CI_PYTHON_VERSION: '${{ python_version }}'
4343
CI_TF_VERSION: '${{ tf_version }}'

ci_build/azure_pipelines/templates/keras2onnx_application_tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ steps:
101101
pip install keras-self-attention
102102
pip install pytest pytest-cov pytest-runner
103103
pip install numpy==1.19
104+
pip freeze --all
104105
displayName: 'Install dependencies'
105106
106107
- script: |

ci_build/azure_pipelines/templates/keras2onnx_unit_test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ steps:
3232
pip install pytest pytest-cov pytest-runner
3333
$(INSTALL_ORT)
3434
pip install numpy==1.19
35+
pip freeze --all
3536
displayName: 'Install dependencies'
3637
3738
- script: |

ci_build/azure_pipelines/templates/setup.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@ steps:
6262
# onnx-weekly won't satisfy onnx requirement so uninstallation must happen here
6363
pip uninstall -y onnx
6464
pip install --index-url https://test.pypi.org/simple/ ${PIP_ONNX_NAME:-onnx}
65-
pip uninstall -y typing-extensions
66-
pip install typing-extensions>4.0.0
6765
fi
6866
6967
pip freeze --all

ci_build/azure_pipelines/trimmed_keras2onnx_unit_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
- job: 'Win'
4646
pool:
47-
vmImage: 'vs2017-win2016'
47+
vmImage: 'windows-2019'
4848
strategy:
4949
matrix:
5050
############ TF Keras Unit Tests ############

0 commit comments

Comments
 (0)