File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 86
86
- name : Test wheel
87
87
run : |
88
88
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"
You can’t perform that action at this time.
0 commit comments