File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 22
22
name : Build and Test OpenVINO EP (AlamLinux8, Py3.12)
23
23
# Use the reusable workflow as the other Linux CI pipelines
24
24
uses : ./.github/workflows/reusable_linux_build_intel.yml
25
+ strategy :
26
+ matrix :
27
+ build_config : [Release, Debug, RelWithDebInfo]
25
28
with :
26
29
pool_name : " onnxruntime-github-Ubuntu2204-AMD-CPU"
27
- build_config : Release
30
+ build_config : ${{ matrix.build_config }}
28
31
# Architecture: OpenVino only supports Intel X64
29
32
architecture : x64
30
33
dockerfile_path : tools/ci_build/github/linux/docker/inference/x86_64/python/openvino/Dockerfile
37
40
# Python Path Prefix: Set the correct Python 3.12 path inside the manylinux container
38
41
python_path_prefix : ' PATH=/opt/python/cp312-cp312/bin:$PATH'
39
42
40
- run_tests : true
43
+ run_tests : ${{ matrix.build_config != 'Debug' }}
41
44
upload_build_output : false
42
45
43
46
# Secrets: Pass the necessary GitHub token
You can’t perform that action at this time.
0 commit comments