Skip to content

Commit ba2971f

Browse files
committed
Avoid using cibuildwheel; more major changes to build system needed for
that
1 parent 7afa31a commit ba2971f

File tree

1 file changed

+20
-6
lines changed

1 file changed

+20
-6
lines changed

.github/workflows/wheels.yml

+20-6
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,26 @@ jobs:
5757
with:
5858
python-version: '3.10'
5959

60-
- name: Build ${{ matrix.platform || matrix.os }} binaries
61-
uses: pypa/[email protected]
62-
env:
63-
CIBW_BUILD: '${{ matrix.python-version }}-*'
64-
# Linux wheels are built in manylinux containers
65-
CIBW_BUILD_VERBOSITY: 1
60+
- name: Install python build dependencies
61+
run: |
62+
pip install wheel
63+
64+
- uses: bazel-contrib/[email protected]
65+
name: Set up Bazel
66+
with:
67+
# Avoid downloading Bazel every time.
68+
bazelisk-cache: true
69+
# Store build cache per workflow.
70+
disk-cache: ${{ github.workflow }}
71+
# Share repository cache between workflows.
72+
repository-cache: true
73+
74+
- name: Build wheels
75+
run: |
76+
package_build/initialize.sh &&
77+
python package_build/tfx/setup.py bdist_wheel &&
78+
python package_build/ml-pipelines-sdk/setup.py bdist_wheel
79+
mv dist/*.whl wheelhouse/
6680
6781
- name: List and check wheels
6882
run: |

0 commit comments

Comments
 (0)