Build pygloo on manylinux environment. #1
Workflow file for this run
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: manylinux2014_x86_64 | |
container: quay.io/pypa/manylinux2014_x86_64 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install bazel | |
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 | |
- name: Build wheels | |
run: | | |
bazel build //pygloo:all | |
echo "Built successfully." | |
# - name: Archive pygloo-wheel | |
# uses: actions/upload-artifact@v1 | |
# with: | |
# name: pygloo_python39_wheel_on_manylinux | |
# path: dist/ |