File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed
Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 2828 build_configure_extra_args :
2929 type : string
3030 required : false
31- default : " --hip --cuda --enable-esimd-emulator"
31+ # Temporarily disable extra builds until opaque pointer is supported.
32+ default : " "
33+ # default: "--hip --cuda --enable-esimd-emulator"
3234 build_artifact_suffix :
3335 type : string
3436 required : true
8284 build_configure_extra_args :
8385 type : choice
8486 options :
85- - " --hip --cuda --enable-esimd-emulator"
87+ # Temporarily disable extra builds until opaque pointer is supported.
88+ - " "
89+ # - "--hip --cuda --enable-esimd-emulator"
8690 # Cache properties need to match CC/CXX/CMake opts. Any additional choices
8791 # would need extra care.
8892 build_cache_root :
Original file line number Diff line number Diff line change 7474 runner : ' ["Linux", "gen12"]'
7575 image : ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
7676 image_options : -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
77- target_devices : ext_oneapi_level_zero:gpu;opencl:gpu;opencl:cpu
77+ # Temporarily disable E2E testing on gpu until opaque pointer is supported.
78+ target_devices : opencl:cpu
79+ # target_devices: ext_oneapi_level_zero:gpu;opencl:gpu;opencl:cpu
7880 reset_gpu : true
7981 install_drivers : ${{ contains(needs.detect_changes.outputs.filters, 'drivers') }}
8082 uses : ./.github/workflows/sycl_linux_run_tests.yml
Original file line number Diff line number Diff line change @@ -126,7 +126,8 @@ def do_configure(args):
126126
127127 # For clang-format, clang-tidy and code coverage
128128 llvm_enable_projects += ";clang-tools-extra;compiler-rt"
129- if sys .platform != "darwin" :
129+ # Temporarily disable extra builds until opaque pointer is supported.
130+ if False and sys .platform != "darwin" :
130131 # libclc is required for CI validation
131132 if 'libclc' not in llvm_enable_projects :
132133 llvm_enable_projects += ';libclc'
You can’t perform that action at this time.
0 commit comments