| OLD | NEW |
| (Empty) | |
| 1 #!/bin/sh |
| 2 cd `dirname $0`/.. |
| 3 set -e |
| 4 git checkout EnableSP |
| 5 git pull --rebase |
| 6 sp/gen-expectations |
| 7 git commit -a --amend -m "" |
| 8 |
| 9 if git branch -D EnableSPCull-temp EnableSPUnderInvalidation-temp >/dev/null 2>&
1; then |
| 10 true # Ignore any error |
| 11 fi |
| 12 |
| 13 TRY="git cl try -b linux_blink_rel -b mac_blink_rel -b win_blink_rel" |
| 14 |
| 15 git checkout -tb EnableSPCull-temp origin/master |
| 16 git cherry-pick EnableSP |
| 17 git cherry-pick EnableSPCull |
| 18 git branch -D EnableSPCull |
| 19 git branch -m EnableSPCull |
| 20 git cl issue 1135703003 |
| 21 sp/gen-expectations |
| 22 git commit -a --amend -m "" |
| 23 |
| 24 git checkout -tb EnableSPCullExp-temp origin/master |
| 25 git cherry-pick EnableSP |
| 26 git cherry-pick EnableSPCull |
| 27 git cherry-pick EnableSPCullExp |
| 28 git branch -D EnableSPCullExp |
| 29 git branch -m EnableSPCullExp |
| 30 git cl issue 1194683002 |
| 31 sp/gen-expectations |
| 32 git commit -a --amend -m "" |
| 33 |
| 34 git checkout -tb EnableSPUnderInvalidation-temp origin/master |
| 35 git cherry-pick EnableSP |
| 36 git cherry-pick EnableSPUnderInvalidation |
| 37 git branch -D EnableSPUnderInvalidation |
| 38 git branch -m EnableSPUnderInvalidation |
| 39 git cl issue 1132203003 |
| 40 |
| 41 git checkout EnableSP |
| 42 date | git cl upload |
| 43 $TRY |
| 44 |
| 45 git checkout EnableSPCull |
| 46 date | git cl upload |
| 47 $TRY |
| 48 |
| 49 git checkout EnableSPCullExp |
| 50 date | git cl upload |
| 51 $TRY |
| 52 |
| 53 git checkout EnableSPUnderInvalidation |
| 54 date | git cl upload |
| 55 $TRY -b linux_blink_dbg -b mac_blink_dbg -b win_blink_dbg |
| OLD | NEW |