Skip to content

Commit

Permalink
.github/workflows/windows.yml: cache sycl
Browse files Browse the repository at this point in the history
  • Loading branch information
WolframRhodium committed Nov 8, 2023
1 parent 578b125 commit be9ba20
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,15 @@ jobs:
- name: Install (CUDA)
run: cmake --install build --prefix install

- name: Cache SYCL
id: cache-sycl
uses: actions/cache@v3
with:
path: D:\a\VapourSynth-BilateralGPU\VapourSynth-BilateralGPU\dpcpp
key: ${{ runner.os }}-dpcpp-2023.2.2

- name: Setup SYCL
if: steps.cache-sycl.outputs.cache-hit != 'true'
run: |
curl -J -o dpcpp_installer.exe https://registrationcenter-download.intel.com/akdlm/IRC_NAS/c08746d2-5669-4ef8-9fc8-1ec330b3ac3b/w_dpcpp-cpp-compiler_p_2023.2.2.49534_offline.exe
dpcpp_installer -s -a -s --install-dir dpcpp --eula accept
Expand Down

0 comments on commit be9ba20

Please sign in to comment.