Skip to content

Commit 8846207

Browse files
Add GH Actions job to collect all built wheels into one archive (#27)
1 parent 5c26288 commit 8846207

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/release-python-osx.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,15 @@ jobs:
8686
- name: Test wheel
8787
run: |
8888
docker run --rm --volume `pwd`:/python quay.io/pypa/${{ matrix.container }} /bin/bash -c "/opt/python/${{ matrix.python-version }}/bin/python -m pip install -U pip && /opt/python/${{ matrix.python-version }}/bin/python -m pip install /python/*.whl && /opt/python/${{ matrix.python-version }}/bin/python -c 'from pymongoarrow.lib import process_bson_stream'"
89+
# Collect all built wheels
90+
collect-wheels:
91+
runs-on: ubuntu-latest
92+
needs: [build-osx-wheels, build-manylinux-wheels]
93+
name: Download Wheels
94+
steps:
95+
- name: Download all workflow run artifacts
96+
uses: actions/download-artifact@v2
97+
- uses: actions/upload-artifact@v2
98+
with:
99+
name: nix-wheels
100+
path: "*-wheel"

0 commit comments

Comments
 (0)