Skip to content
This repository has been archived by the owner on Aug 10, 2024. It is now read-only.

Commit

Permalink
update build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Finistere committed May 22, 2022
1 parent 9f102c1 commit f014219
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bin/build-all-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PROJECT_DIR="$(dirname "$(dirname "$(readlink -f "$0")")")"

rm -f "$PROJECT_DIR"/wheelhouse/* || true

for PLATFORM in manylinux2014_i686 manylinux2010_x86_64 manylinux2014_x86_64; do
for PLATFORM in manylinux_2_24_i686 manylinux2010_x86_64 manylinux_2_24_x86_64; do
echo -e "\e[32mStarting $PLATFORM\e[0m"
DOCKER_IMAGE="quay.io/pypa/$PLATFORM"
docker pull "$DOCKER_IMAGE"
Expand Down
8 changes: 4 additions & 4 deletions bin/clean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ project_dir="$(dirname "$(dirname "$(readlink -f "$0")")")"

cd "$project_dir"

find src -name '*.so' -exec rm {} +
find src -name '*.cpp' -exec rm {} +
find src -name '*.pyc' -exec rm {} +
find src -name '__pycache__' -exec rm -r {} +
find src tests -name '*.so' -exec rm {} +
find src tests -name '*.cpp' -exec rm {} +
find src tests -name '*.pyc' -exec rm {} +
find src tests -name '__pycache__' -exec rm -r {} +
rm -rf build

0 comments on commit f014219

Please sign in to comment.