Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
565b6759
Commit
565b6759
authored
9 years ago
by
Bill DeRusha
Browse files
Options
Downloads
Patches
Plain Diff
Add automatic release branch cutting to release script
parent
0d2dc431
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/release.py
+35
-0
35 additions, 0 deletions
scripts/release.py
with
35 additions
and
0 deletions
scripts/release.py
+
35
−
0
View file @
565b6759
...
...
@@ -17,6 +17,7 @@ try:
from
path
import
Path
as
path
from
git
import
Repo
,
Commit
from
git.refs.symbolic
import
SymbolicReference
from
git.exc
import
GitCommandError
from
dateutil.parser
import
parse
as
parse_datestring
import
requests
import
yaml
...
...
@@ -99,6 +100,9 @@ def make_parser():
parser
.
add_argument
(
'
--table
'
,
'
-t
'
,
action
=
"
store_true
"
,
default
=
False
,
help
=
"
only print table
"
)
parser
.
add_argument
(
'
--cut-branch
'
,
'
-b
'
,
action
=
"
store_true
"
,
default
=
False
,
help
=
"
automatically cut the release branch
"
)
return
parser
...
...
@@ -522,6 +526,26 @@ def generate_email(start_ref, end_ref, release_date=None):
return
textwrap
.
dedent
(
email
).
strip
()
def
cut_release_branch
(
release_date
=
None
):
if
release_date
is
None
:
release_date
=
default_release_date
()
release_branch_name
=
"
rc/{date}
"
.
format
(
date
=
release_date
)
print
(
"
Cutting release branch
'
{name}
'
...
"
.
format
(
name
=
release_branch_name
))
try
:
print
(
git
.
checkout
(
'
master
'
))
print
(
git
.
pull
())
print
(
git
.
checkout
(
'
HEAD
'
,
b
=
release_branch_name
))
print
(
git
.
push
())
except
GitCommandError
as
exception
:
print
(
exception
)
return
None
return
release_branch_name
def
main
():
parser
=
make_parser
()
args
=
parser
.
parse_args
()
...
...
@@ -560,6 +584,17 @@ def main():
print
(
"
\n
"
)
print
(
generate_commit_table
(
args
.
previous
,
args
.
current
))
if
args
.
cut_branch
:
branch_name
=
cut_release_branch
(
args
.
date
)
if
branch_name
:
print
(
"
OPEN THE PULL REQUEST: https://github.com/edx/edx-platform/compare/release...{name}
"
.
format
(
name
=
branch_name
)
)
else
:
print
(
"
Skipping branch cut
"
)
if
__name__
==
"
__main__
"
:
main
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment