-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add manual build & fix errors in different platforms
- Loading branch information
Showing
5 changed files
with
51 additions
and
6 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,17 @@ | ||
set -ex | ||
|
||
# | ||
# This script is used to build aarch64 binary as Github does not supported it yet | ||
# you run it in the root of the project | ||
|
||
|
||
if [ -d "$(pwd)/dist" ]; then | ||
rm -r $(pwd)/dist | ||
fi | ||
|
||
docker run --rm -w /project -v $(pwd):/project \ | ||
-e EXTRA_PATH=/opt/python/cp38-cp38/bin \ | ||
-e PYTHON_HOME=/opt/python \ | ||
-e CARGO_NET_GIT_FETCH_WITH_CLI=false \ | ||
quay.io/pypa/manylinux2014_aarch64:latest \ | ||
bash /project/.github/workflows/build.sh -t aarch64-unknown-linux-gnu |
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
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