Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
frostedoyster committed Feb 14, 2024
1 parent de8770b commit 484fefb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build-cuda-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,12 @@ jobs:

steps:
- name: convert CUDA version
run: echo "cuda_version_without_decimal_point=$(echo ${{ matrix.cuda }} | tr -d '.')" >> $GITHUB_ENV
run: |
echo "cuda_version_without_decimal_point=$(echo ${{ matrix.cuda }} | tr -d '.')"
echo "cuda_version_without_decimal_point=$(echo ${{ matrix.cuda }} | tr -d '.')" >> $GITHUB_ENV
- name: Check CUDA Version Without Point
run: echo "cuda_version_without_decimal_point is ${{ env.cuda_version_without_decimal_point }}"
# - name: Check CUDA Version Without Point
# run: echo "cuda_version_without_decimal_point is ${{ env.cuda_version_without_decimal_point }}"

- name: free disk space
run: sudo rm -rf /usr/share/dotnet /usr/local/lib/android || true
Expand Down

0 comments on commit 484fefb

Please sign in to comment.