From cd2454101fdb4c8b0aa10cbe7d7d6923a8a28797 Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Tue, 27 Jun 2023 13:11:57 +0200 Subject: [PATCH] Remove build directory after pip --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0bb47ca..eacb1b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: |