Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}

build-python-wheels:
build-python-wheel:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:

verify-python-wheel:
runs-on: ${{ matrix.os }}
needs: [build-python-wheels, build-source-distribution]
needs: [build-python-wheel, build-source-distribution]
strategy:
matrix:
os: [ubuntu-latest, macos-10.15 ]
Expand Down Expand Up @@ -256,16 +256,17 @@ jobs:
cd dist/
pip install wheel
for f in *.whl; do pip install $f || true; done
- name: Install go from sdist
if: ${{ matrix.from-source }}
- name: Install dist with go
if: ${{ matrix.from-source && (matrix.python-version != '3.10' || matrix.os == 'ubuntu-latest')}}
env:
COMPILE_GO: "True"
run: |
pip install 'grpcio-tools==1.44.0' 'pybindgen==0.22.0'
go install google.golang.org/protobuf/cmd/[email protected]
go install google.golang.org/grpc/cmd/[email protected]
- name: Install dist
if: ${{ matrix.from-source }}
pip install dist/*tar.gz
- name: Install dist w/o go
if: ${{ matrix.from-source && matrix.python-version == '3.10' && matrix.os == 'macos-10.15'}}
run: pip install dist/*tar.gz
- name: Install OS X dependencies
if: matrix.os == 'macos-10.15'
Expand Down