|
a/pyforge/push_re.py |
|
b/pyforge/push_re.py |
|
... |
|
... |
17 |
print '*** Summary: Production Push (R:%s, D:%s)' % (
|
17 |
print '*** Summary: Production Push (R:%s, D:%s)' % (
|
18 |
tag, date.today().strftime('%Y%m%d'))
|
18 |
tag, date.today().strftime('%Y%m%d'))
|
19 |
print '---BEGIN---'
|
19 |
print '---BEGIN---'
|
20 |
print text
|
20 |
print text
|
21 |
print '---END---'
|
21 |
print '---END---'
|
|
|
22 |
raw_input("Verify that there are no new dependencies, or RPM's are build for all deps...")
|
|
|
23 |
raw_input("Verify that a new sandbox builds starts without engr help...")
|
22 |
raw_input('When this is done, create a JIRA ticket with the same contents...')
|
24 |
raw_input('When this is done, create a JIRA ticket with the same contents...')
|
23 |
raw_input('Now link the two tickets...')
|
25 |
raw_input('Now link the two tickets...')
|
24 |
newforge_num = raw_input('What is the newforge ticket number? ')
|
26 |
newforge_num = raw_input('What is the newforge ticket number? ')
|
25 |
command('git', 'tag', '-a', tag, '-m', '[#%s] - Push to RE' % newforge_num)
|
27 |
command('git', 'tag', '-a', tag, '-m', '[#%s] - Push to RE' % newforge_num)
|
26 |
command('git', 'push', 'origin', 'master')
|
28 |
command('git', 'push', 'origin', 'master')
|