Skip to content

Commit

Permalink
Point trigger_wheel_build.sh at the new repo (python#5766)
Browse files Browse the repository at this point in the history
Also only push the tags, since pushing the changes to master
clutters up the history without accomplishing anything.
  • Loading branch information
msullivan authored and JukkaL committed Oct 11, 2018
1 parent 27372c8 commit 59d0edc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions misc/trigger_wheel_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
# Trigger a build of mypyc compiled mypy wheels by updating the mypy
# submodule in the git repo that drives those builds.

# TODO: This is a testing repo and will need to be retargeted at the
# real location once it exists. $WHEELS_PUSH_TOKEN is stored in travis
# and is an API token for the mypy-build-bot account.
git clone --recurse-submodules https://${WHEELS_PUSH_TOKEN}@github.com/msullivan/travis-testing.git build
# $WHEELS_PUSH_TOKEN is stored in travis and is an API token for the
# mypy-build-bot account.
git clone --recurse-submodules https://${WHEELS_PUSH_TOKEN}@github.com/mypyc/mypy_mypyc-wheels.git build

git config --global user.email "nobody"
git config --global user.name "mypy wheels autopush"
Expand All @@ -22,4 +21,5 @@ V=$(echo "$V" | cut -d" " -f2)
cd ..
git commit -am "Build wheels for mypy $V"
git tag v$V
git push --tags origin master
# Push a tag, but no need to push the change to master
git push --tags

0 comments on commit 59d0edc

Please sign in to comment.