Skip to content

Commit

Permalink
Test opset 20 in CI (#5958)
Browse files Browse the repository at this point in the history
### Description

Test opset 20 in CI

### Motivation and Context

[onnxruntime
1.17](https://github.com/microsoft/onnxruntime/releases/tag/v1.17.0) was
recently released with Opset 20 support. The test version in ONNX should
be bumped to increase test coverage.

---------

Signed-off-by: Charles Volzka <cjvolzka@us.ibm.com>
  • Loading branch information
cjvolzka committed Feb 26, 2024
1 parent c95a59c commit 2a4b110
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .azure-pipelines/MacOS-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
python -m pip install onnxruntime
export ORT_MAX_IR_SUPPORTED_VERSION=9
export ORT_MAX_ML_OPSET_SUPPORTED_VERSION=3
export ORT_MAX_ONNX_OPSET_SUPPORTED_VERSION=19
export ORT_MAX_ONNX_OPSET_SUPPORTED_VERSION=20
pytest -n auto --dist loadscope
if [ $? -ne 0 ]; then
echo "pytest failed when testing onnx with onnxruntime"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_linux_aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,6 @@ jobs:
python -m pip install -q onnxruntime && \
export ORT_MAX_IR_SUPPORTED_VERSION=9 \
export ORT_MAX_ML_OPSET_SUPPORTED_VERSION=3 \
export ORT_MAX_ONNX_OPSET_SUPPORTED_VERSION=19 \
export ORT_MAX_ONNX_OPSET_SUPPORTED_VERSION=20 \
pytest && \
deactivate'
2 changes: 1 addition & 1 deletion .github/workflows/release_linux_x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,5 +96,5 @@ jobs:
python -m pip install -q onnxruntime
export ORT_MAX_IR_SUPPORTED_VERSION=9
export ORT_MAX_ML_OPSET_SUPPORTED_VERSION=3
export ORT_MAX_ONNX_OPSET_SUPPORTED_VERSION=19
export ORT_MAX_ONNX_OPSET_SUPPORTED_VERSION=20
pytest
2 changes: 1 addition & 1 deletion .github/workflows/release_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,5 +129,5 @@ jobs:
python -m pip install -q onnxruntime
export ORT_MAX_IR_SUPPORTED_VERSION=9
export ORT_MAX_ML_OPSET_SUPPORTED_VERSION=3
export ORT_MAX_ONNX_OPSET_SUPPORTED_VERSION=19
export ORT_MAX_ONNX_OPSET_SUPPORTED_VERSION=20
pytest
2 changes: 1 addition & 1 deletion .github/workflows/release_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,5 +124,5 @@ jobs:
python -m pip install -q onnxruntime
$Env:ORT_MAX_IR_SUPPORTED_VERSION=9
$Env:ORT_MAX_ML_OPSET_SUPPORTED_VERSION=3
$Env:ORT_MAX_ONNX_OPSET_SUPPORTED_VERSION=19
$Env:ORT_MAX_ONNX_OPSET_SUPPORTED_VERSION=20
pytest

0 comments on commit 2a4b110

Please sign in to comment.