Skip to content

Commit

Permalink
debug cuda
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle committed Jul 13, 2024
1 parent 99ddbe4 commit 94f4ddc
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,12 @@ jobs:
cargo build ${{ matrix.options }}
continue-on-error: ${{ contains(matrix.options, 'cuda') }}

- name: Find Runtime Libraries
if: matrix.platform == 'windows-latest'
- name: Find Runtime Libraries Windows
if: contains(matrix.platform, 'windows')
run: |
C:\msys64\usr\bin\find -name "*.lib"
- name: Find Runtime Libraries Linux
if: contains(matrix.platform, 'ubuntu')
run: |
find -name "*.a"

0 comments on commit 94f4ddc

Please sign in to comment.