Skip to content

Commit 7af72f5

Browse files
jatinwadhwa921ankitm3k
authored andcommitted
Support for Debug and RelWithDebInfo in Internal CI
1 parent 89ccd81 commit 7af72f5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/linux_openvino_ci_intel.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,12 @@ jobs:
2222
name: Build and Test OpenVINO EP (AlamLinux8, Py3.12)
2323
# Use the reusable workflow as the other Linux CI pipelines
2424
uses: ./.github/workflows/reusable_linux_build_intel.yml
25+
strategy:
26+
matrix:
27+
build_config: [Release, Debug, RelWithDebInfo]
2528
with:
2629
pool_name: "onnxruntime-github-Ubuntu2204-AMD-CPU"
27-
build_config: Release
30+
build_config: ${{ matrix.build_config }}
2831
# Architecture: OpenVino only supports Intel X64
2932
architecture: x64
3033
dockerfile_path: tools/ci_build/github/linux/docker/inference/x86_64/python/openvino/Dockerfile
@@ -37,7 +40,7 @@ jobs:
3740
# Python Path Prefix: Set the correct Python 3.12 path inside the manylinux container
3841
python_path_prefix: 'PATH=/opt/python/cp312-cp312/bin:$PATH'
3942

40-
run_tests: true
43+
run_tests: ${{ matrix.build_config != 'Debug' }}
4144
upload_build_output: false
4245

4346
# Secrets: Pass the necessary GitHub token

0 commit comments

Comments
 (0)