-
-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #473 from dvadym/manylinux_build
Build wheel with Manylinux
- Loading branch information
Showing
4 changed files
with
74 additions
and
12 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
# This script differs from build_PyDP.sh by installing bazel first (if needed). | ||
BAZELISK_VERSION=v1.8.1 | ||
BAZELISK_BINARY=bazelisk-linux-amd64 | ||
BAZELISK_DOWNLOAD_URL=https://github.com/bazelbuild/bazelisk/releases/download/ | ||
|
||
if command -v bazel &>/dev/null; then | ||
echo "Bazel already installed" | ||
else | ||
python -m wget "${BAZELISK_DOWNLOAD_URL}/${BAZELISK_VERSION}/${BAZELISK_BINARY}" | ||
chmod +x ${BAZELISK_BINARY} | ||
mkdir bazel_dir | ||
echo mv ${BAZELISK_BINARY} bazel_dir/bazel | ||
mv ${BAZELISK_BINARY} bazel_dir/bazel | ||
export PATH="$PATH:`pwd`/bazel_dir" | ||
fi | ||
|
||
./build_PyDP.sh |
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
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