Skip to content

Commit

Permalink
Enable on windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
uditagarwal97 committed Mar 5, 2024
1 parent 4141f31 commit cdd8d73
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/sycl-linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,22 +171,22 @@ jobs:
id: build
run: |
cmake --build $GITHUB_WORKSPACE/build
# - name: check-llvm
# if: always() && !cancelled() && contains(inputs.changes, 'llvm')
# run: |
# cmake --build $GITHUB_WORKSPACE/build --target check-llvm
# - name: check-clang
# if: always() && !cancelled() && contains(inputs.changes, 'clang')
# run: |
# Can we move this to Dockerfile? Hopefully, noop on Windows.
# export XDG_CACHE_HOME=$GITHUB_WORKSPACE/os_cache
# cmake --build $GITHUB_WORKSPACE/build --target check-clang
# - name: check-sycl
# if: always() && !cancelled() && contains(inputs.changes, 'sycl')
# run: |
# TODO consider moving this to Dockerfile.
# export LD_LIBRARY_PATH=/usr/local/cuda/compat/:/usr/local/cuda/lib64:$LD_LIBRARY_PATH
# cmake --build $GITHUB_WORKSPACE/build --target check-sycl
- name: check-llvm
if: always() && !cancelled() && contains(inputs.changes, 'llvm')
run: |
cmake --build $GITHUB_WORKSPACE/build --target check-llvm
- name: check-clang
if: always() && !cancelled() && contains(inputs.changes, 'clang')
run: |
Can we move this to Dockerfile? Hopefully, noop on Windows.
export XDG_CACHE_HOME=$GITHUB_WORKSPACE/os_cache
cmake --build $GITHUB_WORKSPACE/build --target check-clang
- name: check-sycl
if: always() && !cancelled() && contains(inputs.changes, 'sycl')
run: |
TODO consider moving this to Dockerfile.
export LD_LIBRARY_PATH=/usr/local/cuda/compat/:/usr/local/cuda/lib64:$LD_LIBRARY_PATH
cmake --build $GITHUB_WORKSPACE/build --target check-sycl
- name: check-sycl-unittests
if: always() && !cancelled() && contains(inputs.changes, 'sycl')
run: |
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/sycl-windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@ jobs:
if: always() && !cancelled() && contains(inputs.changes, 'sycl')
run: |
cmake --build build --target check-sycl
- name: check-sycl-unittests
if: always() && !cancelled() && contains(inputs.changes, 'sycl')
run: |
cmake --build build --target check-sycl-unittests
- name: check-llvm-spirv
if: always() && !cancelled() && contains(inputs.changes, 'llvm_spirv')
run: |
Expand Down

0 comments on commit cdd8d73

Please sign in to comment.