Skip to content

Commit

Permalink
[CI] Fix lit warning from L0 SDK path (#17302)
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
sarnex authored Mar 4, 2025
1 parent 09b326b commit a43af18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/sycl-windows-run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
shell: cmd
run: |
mkdir build-e2e
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"
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"
- name: Run End-to-End tests
shell: bash
run: |
Expand Down

0 comments on commit a43af18

Please sign in to comment.