We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bffa7a7 commit 3e26fa1Copy full SHA for 3e26fa1
1 file changed
.github/workflows/cibuildwheel.yml
@@ -77,7 +77,7 @@ jobs:
77
- name: Test wheel
78
run: |
79
FAILED=false
80
- pypy -m pip install -r test_requirements.txt
+ pypy -m pip install -r test_requirements.txt build
81
pypy -m pytest vmprof -v || FAILED=true
82
pypy -m pytest jitlog -v || FAILED=true
83
if [ "FAILED" == true ]; then exit 1; fi
@@ -87,7 +87,14 @@ jobs:
87
# vmprof-0.4.15-pp3-none-any.whl
88
rename 's/py3/pp3/' vmprof-*.whl
89
90
+ - name: Build sdist
91
+ run: |
92
+ pypy -m build --sdist .
93
+
94
95
- uses: actions/upload-artifact@v4
96
with:
- path: vmprof*.whl
97
+ path: |
98
+ vmprof*.whl
99
+ dist/*.tar.gz
100
0 commit comments