Skip to content
This repository has been archived by the owner on Oct 13, 2021. It is now read-only.

[Test only] Test ORT 1.8 #720

Closed
wants to merge 1 commit into from
Closed
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
5 changes: 3 additions & 2 deletions .azure-pipelines/linux-CI-keras-applications-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
INSTALL_KERAS: pip install keras==2.3.1
UNINSTALL_KERAS:
INSTALL_TENSORFLOW: pip install tensorflow==1.15.0
INSTALL_ORT: pip install -i https://test.pypi.org/simple/ ort-nightly
INSTALL_ORT: pip install -i https://test.pypi.org/simple/ ort-nightly==1.8.0.dev202106023
INSTALL_KERAS_RESNET: pip install keras-resnet
INSTALL_TRANSFORMERS:
NIGHTLY_BUILD_TEST: python run_all.py --exclude "test_keras_applications_v2.py"
Expand All @@ -64,7 +64,7 @@ jobs:
INSTALL_KERAS:
UNINSTALL_KERAS: pip uninstall keras -y
INSTALL_TENSORFLOW: pip install tensorflow==2.2.0
INSTALL_ORT: pip install -i https://test.pypi.org/simple/ ort-nightly
INSTALL_ORT: pip install -i https://test.pypi.org/simple/ ort-nightly==1.8.0.dev202106023
INSTALL_KERAS_RESNET: pip install keras-resnet
INSTALL_TRANSFORMERS: pip install transformers==3.4.0
NIGHTLY_BUILD_TEST: python run_all_v2.py
Expand All @@ -91,6 +91,7 @@ jobs:
pip install git+https://github.com/microsoft/onnxconverter-common
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install flatbuffers
$(INSTALL_ORT)
pip install opencv-python
pip install tqdm
Expand Down
3 changes: 2 additions & 1 deletion .azure-pipelines/linux-conda-CI-tf-keras.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
python.version: '3.8'
ONNX_PATH: onnx==1.8.0
TENSORFLOW_PATH: tensorflow-cpu==2.3.0
INSTALL_ORT: pip install onnxruntime==1.7.0
INSTALL_ORT: pip install -i https://test.pypi.org/simple/ ort-nightly==1.8.0.dev202106023

maxParallel: 3

Expand All @@ -65,6 +65,7 @@ jobs:
pip install git+https://github.com/microsoft/onnxconverter-common
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install flatbuffers
$(INSTALL_ORT)
displayName: 'Install dependencies'

Expand Down
5 changes: 3 additions & 2 deletions .azure-pipelines/win32-CI-keras-applications-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
INSTALL_KERAS: pip install keras==2.3.1
UNINSTALL_KERAS:
INSTALL_TENSORFLOW: pip install tensorflow==1.14.0
INSTALL_ORT: pip install -i https://test.pypi.org/simple/ ort-nightly
INSTALL_ORT: pip install -i https://test.pypi.org/simple/ ort-nightly==1.8.0.dev202106023
INSTALL_KERAS_RESNET: pip install keras-resnet
INSTALL_TRANSFORMERS:
NIGHTLY_BUILD_TEST: python run_all.py --exclude "test_keras_applications_v2.py test_mask_rcnn.py"
Expand All @@ -65,7 +65,7 @@ jobs:
INSTALL_KERAS:
UNINSTALL_KERAS: pip uninstall keras -y
INSTALL_TENSORFLOW: pip install tensorflow==2.2.0
INSTALL_ORT: pip install onnxruntime==1.7.0
INSTALL_ORT: pip install -i https://test.pypi.org/simple/ ort-nightly==1.8.0.dev202106023
INSTALL_KERAS_RESNET: pip install keras-resnet
INSTALL_TRANSFORMERS: pip install transformers==3.4.0
NIGHTLY_BUILD_TEST: python run_all_v2.py
Expand Down Expand Up @@ -95,6 +95,7 @@ jobs:
pip install git+https://github.com/microsoft/onnxconverter-common
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install flatbuffers
%INSTALL_ORT%
pip install opencv-python
pip install tqdm
Expand Down
3 changes: 2 additions & 1 deletion .azure-pipelines/win32-conda-CI-tf-keras.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
python.version: '3.8'
ONNX_PATH: onnx==1.8.0
TENSORFLOW_PATH: tensorflow-cpu==2.3.0
INSTALL_ORT: pip install onnxruntime==1.7.0
INSTALL_ORT: pip install -i https://test.pypi.org/simple/ ort-nightly==1.8.0.dev202106023

maxParallel: 3

Expand All @@ -68,6 +68,7 @@ jobs:
pip install git+https://github.com/microsoft/onnxconverter-common
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install flatbuffers
%INSTALL_ORT%
displayName: 'Install dependencies'

Expand Down