OLD | NEW |
(Empty) | |
| 1 set -e |
| 2 |
| 3 RIET="https://codereview.chromium.org" |
| 4 #CL=1830973003 |
| 5 CL=1835963003 |
| 6 PATCHSET=`curl -s -n $RIET/api/$CL?tryjobs=false | python -c "import json, sys;
print sorted(json.loads(sys.stdin.read())['patchsets'])[-1]"` |
| 7 cd ../ |
| 8 [ -z "$N" ] && ./recipes.py run --properties '{"mastername": "master.tryserver.i
nfra", "slavename": "slaveXXX", "buildername": "Try Recipe Trusty 64", "buildnum
ber": "0", "issue": "'$CL'", "rietveld": "'$RIET'", "patchset": "'$PATCHSET'"}'
infra/git_cl |
| 9 |
| 10 git cl try -m tryserver.infra \ |
| 11 -b "Try Recipe Trusty 64" \ |
| 12 -b "Try Recipe Mac" \ |
| 13 -b "Try Recipe Win 64" \ |
| 14 -p try_recipe=infra/git_cl \ |
| 15 -p try_props=$(echo '{"issue": "'$CL'", "rietveld": "'$RIET'", "patchset
": "'$PATCHSET'"}' | python -c "import zlib, sys, base64; print base64.b64encode
(zlib.compress(sys.stdin.read()))") |
| 16 |
| 17 watch --color -n 1 "git cl try-results --color" |
OLD | NEW |