-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove loading binaries from release pipeline
- Loading branch information
1 parent
9d54514
commit 37cd6c5
Showing
2 changed files
with
2 additions
and
83 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,8 +1,3 @@ | ||
jq -c '.compiler[]' available_configs.json | while read config; do | ||
export TAG=${config:1:${#config}-2} | ||
export CLEAN=true | ||
python3 scripts/load_relevant_binaries.py --tag $TAG | ||
python -m build | ||
python3 scripts/rename_wheels.py | ||
done | ||
python -m build | ||
python3 scripts/rename_wheels.py | ||
python3 -m twine upload dist/* -u "__token__" -p "$PYPI_PASSWORD" --verbose |