diff --git a/.github/reusable-build/action.yml b/.github/reusable-build/action.yml index f7ea0cb..c8723d0 100644 --- a/.github/reusable-build/action.yml +++ b/.github/reusable-build/action.yml @@ -7,19 +7,11 @@ inputs: runs: using: 'composite' steps: - - name: Install python dependencies - shell: bash - run: | - # Only required for building struct2tensor_kernels_and_ops, - # as bazel doesn't provide any kind of build isolation - pip install numpy>=1.22 - - name: Build the package for Python ${{ inputs.python-version }} shell: bash run: | docker compose build --build-arg PYTHON_VERSION=${{ inputs.python-version }} manylinux2014 docker compose run -e TF_VERSION=RELEASED_TF_2 manylinux2014 - bazel build -c opt struct2tensor:struct2tensor_kernels_and_ops - name: Upload wheel artifact for Python ${{ inputs.python-version }} uses: actions/upload-artifact@v4