Skip to content

Commit

Permalink
build sdist
Browse files Browse the repository at this point in the history
  • Loading branch information
mattip committed Sep 29, 2024
1 parent bffa7a7 commit 3e26fa1
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Test wheel
run: |
FAILED=false
pypy -m pip install -r test_requirements.txt
pypy -m pip install -r test_requirements.txt build
pypy -m pytest vmprof -v || FAILED=true
pypy -m pytest jitlog -v || FAILED=true
if [ "FAILED" == true ]; then exit 1; fi
Expand All @@ -87,7 +87,14 @@ jobs:
# vmprof-0.4.15-pp3-none-any.whl
rename 's/py3/pp3/' vmprof-*.whl
- name: Build sdist
run: |
pypy -m build --sdist .
- uses: actions/upload-artifact@v4
with:
path: vmprof*.whl
path: |
vmprof*.whl
dist/*.tar.gz

0 comments on commit 3e26fa1

Please sign in to comment.