From 717f6813f0d01da51d52c03162cbb157b123c75e Mon Sep 17 00:00:00 2001 From: Benjamin Minixhofer Date: Thu, 1 Apr 2021 20:25:50 +0200 Subject: [PATCH] [ci] can't cache wheels when publishing --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5591623..916211c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -143,7 +143,9 @@ jobs: . venv/bin/activate || . venv/Scripts/activate # 'Scripts' on windows, 'bin' on Linux / macOS python -m pip install --upgrade pip python -m pip install maturin==0.9.4 pytest==6.1.2 - + + # remove potentially cached wheels + rm target/wheels/* || true bash scripts/maturin.sh build --interpreter python --release --manylinux 2014 bash scripts/maturin.sh develop --release