Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
556a33a3
Unverified
Commit
556a33a3
authored
Feb 14, 2018
by
Todd Volkert
Committed by
GitHub
Feb 14, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow upstream repo name to be configurable in roll-dev.dart (#14608)
parent
a194818c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
12 deletions
+27
-12
roll_dev.dart
dev/tools/lib/roll_dev.dart
+27
-12
No files found.
dev/tools/lib/roll_dev.dart
View file @
556a33a3
...
...
@@ -16,6 +16,8 @@ const String kX = 'x';
const
String
kY
=
'y'
;
const
String
kZ
=
'z'
;
const
String
kCommit
=
'commit'
;
const
String
kOrigin
=
'origin'
;
const
String
kYes
=
'yes'
;
const
String
kHelp
=
'help'
;
const
String
kUpstreamRemote
=
'git@github.com:flutter/flutter.git'
;
...
...
@@ -39,6 +41,13 @@ void main(List<String> args) {
valueHelp:
'hash'
,
defaultsTo:
'upstream/master'
,
);
argParser
.
addOption
(
kOrigin
,
help:
'Specifies the name of the upstream repository'
,
valueHelp:
'repository'
,
defaultsTo:
'upstream'
,
);
argParser
.
addFlag
(
kYes
,
negatable:
false
,
abbr:
'y'
,
help:
'Skip the confirmation prompt.'
);
argParser
.
addFlag
(
kHelp
,
negatable:
false
,
help:
'Show this help message.'
,
hide:
true
);
ArgResults
argResults
;
try
{
...
...
@@ -50,7 +59,9 @@ void main(List<String> args) {
}
final
String
level
=
argResults
[
kIncrement
];
final
bool
commit
=
argResults
[
kCommit
];
final
String
commit
=
argResults
[
kCommit
];
final
String
origin
=
argResults
[
kOrigin
];
final
bool
autoApprove
=
argResults
[
kYes
];
final
bool
help
=
argResults
[
kHelp
];
if
(
help
||
level
==
null
)
{
...
...
@@ -59,7 +70,7 @@ void main(List<String> args) {
exit
(
0
);
}
if
(
getGitOutput
(
'remote get-url
upstream
'
,
'check whether this is a flutter checkout'
)
!=
kUpstreamRemote
)
{
if
(
getGitOutput
(
'remote get-url
$origin
'
,
'check whether this is a flutter checkout'
)
!=
kUpstreamRemote
)
{
print
(
'The current directory is not a Flutter repository checkout with a correctly configured upstream remote.'
);
print
(
'For more details see: https://github.com/flutter/flutter/wiki/Release-process'
);
exit
(
1
);
...
...
@@ -73,7 +84,7 @@ void main(List<String> args) {
exit
(
1
);
}
runGit
(
'fetch
upstream'
,
'fetch upstream
'
);
runGit
(
'fetch
$origin
'
,
'fetch
$origin
'
);
runGit
(
'reset
$commit
--hard'
,
'check out master branch'
);
String
version
=
getFullTag
();
...
...
@@ -117,6 +128,9 @@ void main(List<String> args) {
// PROMPT
if
(
autoApprove
)
{
print
(
'Publishing Flutter
$version
(
${hash.substring(0, 10)}
) to the "dev" channel.'
);
}
else
{
print
(
'Your tree is ready to publish Flutter
$version
(
${hash.substring(0, 10)}
) '
'to the "dev" channel.'
);
stdout
.
write
(
'Are you? [yes/no] '
);
...
...
@@ -125,9 +139,10 @@ void main(List<String> args) {
print
(
'The dev roll has been aborted.'
);
exit
(
0
);
}
}
runGit
(
'push
upstream
v
$version
'
,
'publish the version'
);
runGit
(
'push
upstream
HEAD:dev'
,
'land the new version on the "dev" branch'
);
runGit
(
'push
$origin
v
$version
'
,
'publish the version'
);
runGit
(
'push
$origin
HEAD:dev'
,
'land the new version on the "dev" branch'
);
print
(
'Flutter version
$version
has been rolled to the "dev" channel!'
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment