Skip to content

Commit

Permalink
Merge pull request #1298 from jwillemsen/jwi-releasetags
Browse files Browse the repository at this point in the history
Don't create beta branches anymore and use Latest_ACE7TAO3_ as prefix…
  • Loading branch information
jwillemsen authored Nov 17, 2020
2 parents 7e973ea + cc2baa1 commit 34d9e1f
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions ACE/bin/make_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ def update_version_files (component):
#define %s_MAJOR_VERSION %s
#define %s_MINOR_VERSION %s
#define %s_MICRO_VERSION %s
#define %s_BETA_VERSION %s
#define %s_VERSION \"%s\"
#define %s_VERSION_CODE %s
#define %s_MAKE_VERSION_CODE(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Expand Down Expand Up @@ -469,7 +468,7 @@ def push_latest_branch (product, which):
"""Update one of the remote Latest_* branches to point to the new release.
"""

name = "Latest_" + which
name = "Latest_ACE7TAO3_" + which

if opts.push:
vprint ("Pushing branch", name)
Expand All @@ -481,15 +480,14 @@ def latest_branch_helper (fn, release_type):
release_types = tuple(ReleaseType.__members__.values())
do = release_types[release_types.index(release_type):]
if ReleaseType.micro in do:
fn ("ACE_TAO", "Beta")
fn ("ACE_TAO", "Micro")
fn ("MPC", "ACETAO_Micro")
fn ("MPC", "Micro")
if ReleaseType.minor in do:
fn ("ACE_TAO", "Minor")
fn ("MPC", "ACETAO_Minor")
fn ("MPC", "Minor")
if ReleaseType.major in do:
fn ("ACE_TAO", "Major")
fn ("MPC", "ACETAO_Major")
fn ("MPC", "Major")


def tag ():
Expand Down

0 comments on commit 34d9e1f

Please sign in to comment.