Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Unified Diff: tools/release/test_scripts.py

Issue 914973002: Create v8 roll branches in refs/heads. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/release/create_release.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/release/test_scripts.py
diff --git a/tools/release/test_scripts.py b/tools/release/test_scripts.py
index 1ea69a8df8b76f73c211d88973258dae2a6a7540..58d1911a80c46fd2cda845ea22327764d297aa77 100644
--- a/tools/release/test_scripts.py
+++ b/tools/release/test_scripts.py
@@ -915,10 +915,10 @@ Performance and stability improvements on all platforms."""
change_log)
expectations = [
- Cmd("git fetch origin +refs/heads/*:refs/heads/*", ""),
- Cmd("git fetch origin +refs/branch-heads/*:refs/branch-heads/*", ""),
- Cmd("git fetch origin +refs/pending/*:refs/pending/*", ""),
- Cmd("git fetch origin +refs/pending-tags/*:refs/pending-tags/*", ""),
+ Cmd("git fetch origin "
+ "+refs/heads/*:refs/heads/* "
+ "+refs/pending/*:refs/pending/* "
+ "+refs/pending-tags/*:refs/pending-tags/*", ""),
Cmd("git checkout -f origin/master", ""),
Cmd("git branch", ""),
Cmd("git log -1 --format=\"%H %T\" push_hash", "push_hash tree_hash"),
@@ -943,12 +943,12 @@ Performance and stability improvements on all platforms."""
Cmd("git commit -aF \"%s\"" % TEST_CONFIG["COMMITMSG_FILE"], "",
cb=CheckVersionCommit),
Cmd("git push origin "
- "refs/heads/work-branch:refs/pending/branch-heads/3.22.5 "
- "pending_hash:refs/pending-tags/branch-heads/3.22.5 "
- "push_hash:refs/branch-heads/3.22.5", ""),
+ "refs/heads/work-branch:refs/pending/heads/3.22.5 "
+ "pending_hash:refs/pending-tags/heads/3.22.5 "
+ "push_hash:refs/heads/3.22.5", ""),
Cmd("git fetch", ""),
Cmd("git log -1 --format=%H --grep="
- "\"Version 3.22.5\" branch-heads/3.22.5", "hsh_to_tag"),
+ "\"Version 3.22.5\" origin/3.22.5", "hsh_to_tag"),
Cmd("git tag 3.22.5 hsh_to_tag", ""),
Cmd("git push origin 3.22.5", ""),
Cmd("git checkout -f origin/master", ""),
« no previous file with comments | « tools/release/create_release.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698