diff --git a/.github/workflows/sycl-windows-build.yml b/.github/workflows/sycl-windows-build.yml index d2ff6df42e5c..e7e4627ceaf4 100644 --- a/.github/workflows/sycl-windows-build.yml +++ b/.github/workflows/sycl-windows-build.yml @@ -166,7 +166,11 @@ jobs: - name: check-llvm if: ${{ !cancelled() && contains(inputs.changes, 'llvm') }} shell: bash - run: | + run: | + if [[ "${{ inputs.cxx == 'icx' }}" == "true" ]]; then + # https://github.com/intel/llvm/issues/22619 + export LIT_FILTER_OUT="tools/obj2yaml/DXContainer/SRCIPart" + fi cmake --build build --target check-llvm - name: check-clang if: ${{ !cancelled() && contains(inputs.changes, 'clang') }}