Skip to content

Commit 89daa13

Browse files
committed
Disable zstd even under --ci-defaults in sycl-web
1 parent 3e75635 commit 89daa13

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

buildbot/configure.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ def do_configure(args):
135135
# For clang-format, clang-tidy and code coverage
136136
llvm_enable_projects += ";clang-tools-extra;compiler-rt"
137137
# Build with zstd enabled on CI.
138-
llvm_enable_zstd = "ON"
138+
# Disable in sycl-web , we don't have zstd in pulldown env.
139+
llvm_enable_zstd = "OFF" # INTEL
139140
if sys.platform != "darwin":
140141
# libclc is required for CI validation
141142
libclc_enabled = True

0 commit comments

Comments
 (0)