From 4b3a45463ee982d425f1201d4f378c8e5633361c Mon Sep 17 00:00:00 2001 From: Michael Bradley Date: Sun, 23 Feb 2025 09:11:28 -0500 Subject: [PATCH] Try to fix wheel artifact transfer --- .forgejo/workflows/build.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index ee2b803..db124bc 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -31,7 +31,7 @@ jobs: # run: cargo clippy -- -D warnings build: - name: Build (and tests, for now) + name: Build runs-on: ubuntu-22.04 steps: - name: Checkout the code @@ -55,7 +55,7 @@ jobs: - name: Save built wheel uses: forgejo/upload-artifact@v4 with: - name: pyority_queue.whl + name: wheels path: target/wheels/*.whl compression-level: 0 @@ -74,11 +74,14 @@ jobs: - name: Retrieve built wheel uses: forgejo/download-artifact@v4 - name: Install built wheel - run: pip install pyority_queue.whl + run: | + ls -la + ls -la wheels + pip install wheels/*.whl - name: Run Python tests run: pytest tests/*.py - rust-test: + # rust-test: # name: Rust tests # runs-on: ubuntu-22.04 # steps: