build pygloo to support multi python version #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-wheels | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build-wheels: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
container: quay.io/pypa/manylinux2014_x86_64 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build Wheels | |
run: | | |
yum -y install wget | |
yum -y install java-1.8.0-openjdk java-1.8.0-openjdk-devel | |
wget "https://github.com/bazelbuild/bazel/releases/download/5.1.0/bazel-5.1.0-installer-linux-x86_64.sh" -O bazel-5.1.0-installer-linux-x86_64.sh | |
chmod +x bazel-5.1.0-installer-linux-x86_64.sh | |
./bazel-5.1.0-installer-linux-x86_64.sh --user | |
export PATH=$PATH:~/.bazel/bin | |
export PYTHON_BIN_PATH='/opt/python/cp38-cp38/bin/python' | |
bash build_wheels.sh | |
echo "Built successfully." | |
echo `pwd` | |
- name: Archive pygloo-wheels | |
uses: actions/upload-artifact@v2 | |
with: | |
name: pygloo_python3X_wheels_on_manylinux | |
path: dist/* |