Skip to content
Merged
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 ci_build/azure_pipelines/keras2onnx_application_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- job: 'Win'
timeoutInMinutes: 180
pool:
vmImage: 'vs2017-win2016'
vmImage: 'windows-2019'
strategy:
matrix:
Python36-onnx1.5:
Expand Down
2 changes: 1 addition & 1 deletion ci_build/azure_pipelines/keras2onnx_unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:

- job: 'Win'
pool:
vmImage: 'vs2017-win2016'
vmImage: 'windows-2019'
strategy:
matrix:
############ TF Keras Unit Tests ############
Expand Down
4 changes: 2 additions & 2 deletions ci_build/azure_pipelines/templates/job_generator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
${{ if eq(platform, 'linux') }}:
CI_VM_IMAGE: 'ubuntu-latest'
${{ if eq(platform, 'windows') }}:
CI_VM_IMAGE: 'vs2017-win2016'
CI_VM_IMAGE: 'windows-2019'
${{ if eq(platform, 'mac') }}:
CI_VM_IMAGE: 'macOS-10.13'
CI_VM_IMAGE: 'macOS-11'
CI_PLATFORM: '${{ platform }}'
CI_PYTHON_VERSION: '${{ python_version }}'
CI_TF_VERSION: '${{ tf_version }}'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ steps:
pip install keras-self-attention
pip install pytest pytest-cov pytest-runner
pip install numpy==1.19
pip freeze --all
displayName: 'Install dependencies'

- script: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ steps:
pip install pytest pytest-cov pytest-runner
$(INSTALL_ORT)
pip install numpy==1.19
pip freeze --all
displayName: 'Install dependencies'

- script: |
Expand Down
2 changes: 0 additions & 2 deletions ci_build/azure_pipelines/templates/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ steps:
# onnx-weekly won't satisfy onnx requirement so uninstallation must happen here
pip uninstall -y onnx
pip install --index-url https://test.pypi.org/simple/ ${PIP_ONNX_NAME:-onnx}
pip uninstall -y typing-extensions
pip install typing-extensions>4.0.0
fi

pip freeze --all
Expand Down
2 changes: 1 addition & 1 deletion ci_build/azure_pipelines/trimmed_keras2onnx_unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

- job: 'Win'
pool:
vmImage: 'vs2017-win2016'
vmImage: 'windows-2019'
strategy:
matrix:
############ TF Keras Unit Tests ############
Expand Down