From 7af72f562cb38e94e60c87063b9d1241e9508c14 Mon Sep 17 00:00:00 2001 From: jatinwadhwa921 Date: Wed, 9 Jul 2025 14:28:25 +0530 Subject: [PATCH] Support for Debug and RelWithDebInfo in Internal CI --- .github/workflows/linux_openvino_ci_intel.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux_openvino_ci_intel.yml b/.github/workflows/linux_openvino_ci_intel.yml index 985d014994877..0cd8410402002 100644 --- a/.github/workflows/linux_openvino_ci_intel.yml +++ b/.github/workflows/linux_openvino_ci_intel.yml @@ -22,9 +22,12 @@ jobs: name: Build and Test OpenVINO EP (AlamLinux8, Py3.12) # Use the reusable workflow as the other Linux CI pipelines uses: ./.github/workflows/reusable_linux_build_intel.yml + strategy: + matrix: + build_config: [Release, Debug, RelWithDebInfo] with: pool_name: "onnxruntime-github-Ubuntu2204-AMD-CPU" - build_config: Release + build_config: ${{ matrix.build_config }} # Architecture: OpenVino only supports Intel X64 architecture: x64 dockerfile_path: tools/ci_build/github/linux/docker/inference/x86_64/python/openvino/Dockerfile @@ -37,7 +40,7 @@ jobs: # Python Path Prefix: Set the correct Python 3.12 path inside the manylinux container python_path_prefix: 'PATH=/opt/python/cp312-cp312/bin:$PATH' - run_tests: true + run_tests: ${{ matrix.build_config != 'Debug' }} upload_build_output: false # Secrets: Pass the necessary GitHub token