Skip to content

Commit

Permalink
Remove build directory after pip
Browse files Browse the repository at this point in the history
  • Loading branch information
RaulPPelaez committed Jun 27, 2023
1 parent b5a7338 commit cd24541
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,14 @@ jobs:
- name: Pip build (without CUDA)
if: ${{ !matrix.enable_cuda }}
run: |
pip -vvv wheel --wheel-dir=$(pwd) -b build_pip . --extra-index-url https://download.pytorch.org/whl/cpu
pip -vvv wheel --wheel-dir=$(pwd) . --extra-index-url https://download.pytorch.org/whl/cpu
rm -rf build
- name: Pip build (with CUDA)
if: ${{ matrix.enable_cuda }}
run: |
pip -vvv wheel --wheel-dir=$(pwd) -b build_pip .
rm -rf build_pip
pip -vvv wheel --wheel-dir=$(pwd) .
rm -rf build
- name: Configure, compile, and install
run: |
Expand Down

0 comments on commit cd24541

Please sign in to comment.