Skip to content

Commit 2fee8ea

Browse files
[SYCL-MLIR][CI] Temporarily disable some build and test
Signed-off-by: Tsang, Whitney <whitney.tsang@intel.com>
1 parent 39a93dd commit 2fee8ea

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

.github/workflows/sycl_linux_build.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ on:
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
@@ -82,7 +84,9 @@ on:
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:

.github/workflows/sycl_precommit_linux.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@ jobs:
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

buildbot/configure.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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'

0 commit comments

Comments
 (0)