Skip to content

Commit 02a95bf

Browse files
committed
Use absolute paths when configuring e2e tests
1 parent edbcabf commit 02a95bf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/sycl-windows-build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,12 +218,11 @@ jobs:
218218
- name: Setup SYCL toolchain
219219
run: |
220220
echo "PATH=$env:GITHUB_WORKSPACE\\install\\bin;$env:PATH" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
221-
ls
222221
- name: Configure E2E
223222
shell: cmd
224223
run: |
225224
mkdir build-e2e
226-
cmake -GNinja -B build-e2e -S.\src\sycl\test-e2e -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=".\src\llvm\utils\lit\lit.py"
225+
cmake -GNinja -B build-e2e -S"$env:GITHUB_WORKSPACE\src\sycl\test-e2e" -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="$env:GITHUB_WORKSPACE\src\llvm\utils\lit\lit.py"
227226
228227
- name: Run End-to-End tests
229228
shell: bash

0 commit comments

Comments
 (0)