Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build wheel archives #31

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
22 changes: 9 additions & 13 deletions .github/workflows/manylinux_basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Install bazel
- name: Build Wheels
run: |
yum -y install wget
yum -y install java-1.8.0-openjdk java-1.8.0-openjdk-devel
Expand All @@ -24,16 +24,12 @@ jobs:
./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'
bazel build //pygloo:all
echo "Built successfully1."
bash build_wheels.sh
echo "Built successfully."
echo `pwd`

- 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/
- name: Archive pygloo-wheels
uses: actions/upload-artifact@v1
with:
name: pygloo_python3X_wheels_on_manylinux
path: dist/*
Loading