Skip to content

Commit

Permalink
Correct Paths
Browse files Browse the repository at this point in the history
  • Loading branch information
LLukas22 committed Jul 9, 2023
1 parent bf57efd commit ee4d544
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,18 @@ jobs:
- name: Install OpenCL on windows
if: matrix.os == 'windows-latest'
run: |
D:\a\_work\1\s\vcpkg\vcpkg.exe install opencl:x64-windows
echo "D:\a\_work\1\s\vcpkg\packages\opencl_x64-windows" >> $OPENCL_PATH
shell: bash
${{ github.workspace }}\vcpkg\vcpkg.exe install opencl:x64-windows
- name: Install CLBlast on windows
if: matrix.os == 'windows-latest'
run: |
D:\a\_work\1\s\vcpkg\vcpkg.exe install clblast:x64-windows
echo "D:\a\_work\1\s\vcpkg\packages\clblast_x64-windows" >> $CLBLAST_PATH
${{ github.workspace }}\vcpkg\vcpkg.exe install clblast:x64-windows
- name: Set Environment Variables
if: matrix.os == 'windows-latest'
run: |
echo "${{ github.workspace }}/vcpkg/packages/clblast_x64-windows" >> $CLBLAST_PATH
echo "${{ github.workspace }}/vcpkg/packages/opencl_x64-windows" >> $OPENCL_PATH
shell: bash

- uses: dtolnay/rust-toolchain@stable
Expand Down

0 comments on commit ee4d544

Please sign in to comment.