From 2a4b110f95a7e0ac6e0725d080653bd58c2da943 Mon Sep 17 00:00:00 2001 From: Charles Volzka <42243335+cjvolzka@users.noreply.github.com> Date: Mon, 26 Feb 2024 13:27:08 -0600 Subject: [PATCH] Test opset 20 in CI (#5958) ### 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 --- .azure-pipelines/MacOS-CI.yml | 2 +- .github/workflows/release_linux_aarch64.yml | 2 +- .github/workflows/release_linux_x86_64.yml | 2 +- .github/workflows/release_mac.yml | 2 +- .github/workflows/release_win.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.azure-pipelines/MacOS-CI.yml b/.azure-pipelines/MacOS-CI.yml index be1682c9160..6e2bf282515 100644 --- a/.azure-pipelines/MacOS-CI.yml +++ b/.azure-pipelines/MacOS-CI.yml @@ -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" diff --git a/.github/workflows/release_linux_aarch64.yml b/.github/workflows/release_linux_aarch64.yml index c66be5e633f..6a0d6e3eaeb 100644 --- a/.github/workflows/release_linux_aarch64.yml +++ b/.github/workflows/release_linux_aarch64.yml @@ -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' diff --git a/.github/workflows/release_linux_x86_64.yml b/.github/workflows/release_linux_x86_64.yml index 6bb0329c787..408c56479a5 100644 --- a/.github/workflows/release_linux_x86_64.yml +++ b/.github/workflows/release_linux_x86_64.yml @@ -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 diff --git a/.github/workflows/release_mac.yml b/.github/workflows/release_mac.yml index 45c574cae60..a4878f9e70b 100644 --- a/.github/workflows/release_mac.yml +++ b/.github/workflows/release_mac.yml @@ -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 diff --git a/.github/workflows/release_win.yml b/.github/workflows/release_win.yml index c69c6c50719..05a321de784 100644 --- a/.github/workflows/release_win.yml +++ b/.github/workflows/release_win.yml @@ -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