Skip to content

Support for Debug and RelWithDebInfo in Internal CI #736

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: ovep-develop
Choose a base branch
from
Open
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
7 changes: 5 additions & 2 deletions .github/workflows/linux_openvino_ci_intel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
Loading