Skip to content
This repository was archived by the owner on Feb 17, 2023. It is now read-only.

Commit 9d53252

Browse files
committed
Trigger build for 3.0a5
1 parent d8eee2f commit 9d53252

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77
- REPO_DIR=Cython
88
# Remember to edit appveyor.yml too
99
# Also see DAILY_COMMIT below
10-
- BUILD_COMMIT=a57de922bbcfaa44ca4e7580e69ec9f5b6b62ad4
10+
- BUILD_COMMIT=3.0a5
1111
- PLAT=x86_64
1212
- MB_PYTHON_OSX_VER=10.9
1313
- WHEELHOUSE_UPLOADER_USERNAME=travis-worker

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ os: Visual Studio 2015
1111
environment:
1212
global:
1313
# Remember to edit .travis.yml too
14-
BUILD_COMMIT: a57de922bbcfaa44ca4e7580e69ec9f5b6b62ad4
14+
BUILD_COMMIT: 3.0a5
1515

1616
matrix:
1717

trigger_build.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ def main():
3535
fobj.write(line)
3636
check_call(['git', 'commit', '-a', '-m',
3737
'Trigger build for ' + commit_name])
38+
if '.' in commit_name:
39+
# assume it's a tag name and tag it for uploading
40+
check_call(['git', 'tag', '-a', '-m', commit_name, commit_name])
41+
check_call(['git', 'push', '--tags'])
3842
check_call(['git', 'push'])
3943

4044

0 commit comments

Comments
 (0)