Skip to content

Commit a43af18

Browse files
authored
[CI] Fix lit warning from L0 SDK path (#17302)
Fixes this warning ``` D:\github\_work\llvm\llvm\build-e2e\lit.site.cfg.py:22: SyntaxWarning: invalid escape sequence '\g' config.level_zero_libs_dir = "D:\github\level-zero_win-sdk\lib" D:\github\_work\llvm\llvm\build-e2e\lit.site.cfg.py:23: SyntaxWarning: invalid escape sequence '\g' config.level_zero_include = "D:\github\level-zero_win-sdk\include" ``` Tests using the L0 SDK such as `SYCL :: Adapters/interop-level-zero.cpp` passed, so it seems this didn't break anything. Signed-off-by: Sarnie, Nick <[email protected]>
1 parent 09b326b commit a43af18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/sycl-windows-run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
shell: cmd
112112
run: |
113113
mkdir build-e2e
114-
cmake -GNinja -B build-e2e -S.\llvm\sycl\test-e2e -DSYCL_TEST_E2E_TARGETS="level_zero:gpu" -DCMAKE_CXX_COMPILER="clang++" -DLEVEL_ZERO_LIBS_DIR="D:\github\level-zero_win-sdk\lib" -DLEVEL_ZERO_INCLUDE="D:\github\level-zero_win-sdk\include" -DLLVM_LIT="..\llvm\llvm\utils\lit\lit.py"
114+
cmake -GNinja -B build-e2e -S.\llvm\sycl\test-e2e -DSYCL_TEST_E2E_TARGETS="level_zero:gpu" -DCMAKE_CXX_COMPILER="clang++" -DLEVEL_ZERO_LIBS_DIR="D:\\github\\level-zero_win-sdk\\lib" -DLEVEL_ZERO_INCLUDE="D:\\github\\level-zero_win-sdk\\include" -DLLVM_LIT="..\\llvm\\llvm\\utils\\lit\\lit.py"
115115
- name: Run End-to-End tests
116116
shell: bash
117117
run: |

0 commit comments

Comments
 (0)