Skip to content

Commit

Permalink
.github/workflows/windows.yml: fix sycl installation
Browse files Browse the repository at this point in the history
  • Loading branch information
WolframRhodium committed Nov 8, 2023
1 parent 2fd0fa8 commit 3ca53c2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
- name: Configure (SYCL)
run: |
"C:\Program Files (x86)\Intel\oneAPI\compiler\latest\env\vars.bat"
call "C:\Program Files (x86)\Intel\oneAPI\compiler\latest\env\vars.bat"
cmake -S . -B build_sycl -G Ninja -LA ^
-D CMAKE_BUILD_TYPE=Release ^
Expand All @@ -98,7 +98,10 @@ jobs:
-D CMAKE_CXX_FLAGS="-ffast-math -mavx2"
- name: Build (SYCL)
run: cmake --build build_sycl --verbose
run: |
call "C:\Program Files (x86)\Intel\oneAPI\compiler\latest\env\vars.bat"
cmake --build build_sycl --verbose
- name: Install (SYCL)
run: cmake --install build_sycl --prefix install
Expand Down

0 comments on commit 3ca53c2

Please sign in to comment.