Try to fix wheel artifact transfer
This commit is contained in:
parent
ead4d5549c
commit
4b3a45463e
1 changed files with 7 additions and 4 deletions
|
@ -31,7 +31,7 @@ jobs:
|
||||||
# run: cargo clippy -- -D warnings
|
# run: cargo clippy -- -D warnings
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: Build (and tests, for now)
|
name: Build
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout the code
|
- name: Checkout the code
|
||||||
|
@ -55,7 +55,7 @@ jobs:
|
||||||
- name: Save built wheel
|
- name: Save built wheel
|
||||||
uses: forgejo/upload-artifact@v4
|
uses: forgejo/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: pyority_queue.whl
|
name: wheels
|
||||||
path: target/wheels/*.whl
|
path: target/wheels/*.whl
|
||||||
compression-level: 0
|
compression-level: 0
|
||||||
|
|
||||||
|
@ -74,11 +74,14 @@ jobs:
|
||||||
- name: Retrieve built wheel
|
- name: Retrieve built wheel
|
||||||
uses: forgejo/download-artifact@v4
|
uses: forgejo/download-artifact@v4
|
||||||
- name: Install built wheel
|
- name: Install built wheel
|
||||||
run: pip install pyority_queue.whl
|
run: |
|
||||||
|
ls -la
|
||||||
|
ls -la wheels
|
||||||
|
pip install wheels/*.whl
|
||||||
- name: Run Python tests
|
- name: Run Python tests
|
||||||
run: pytest tests/*.py
|
run: pytest tests/*.py
|
||||||
|
|
||||||
rust-test:
|
# rust-test:
|
||||||
# name: Rust tests
|
# name: Rust tests
|
||||||
# runs-on: ubuntu-22.04
|
# runs-on: ubuntu-22.04
|
||||||
# steps:
|
# steps:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue