diff options
author | mtklein <mtklein@chromium.org> | 2015-01-23 10:39:55 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-23 10:39:55 -0800 |
commit | 205de46789e6de3ef99b148845821495a7da5d5b (patch) | |
tree | 73d5e24e702943ad153316bd7914d58404de608c /bin | |
parent | cf5d9c993dcbd75d4cefe2d1de25c2b9645f6957 (diff) |
run clean branch baseline only once
BUG=skia:
Review URL: https://codereview.chromium.org/874643002
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ac | 10 | ||||
-rwxr-xr-x | bin/c | 10 |
2 files changed, 12 insertions, 8 deletions
@@ -11,10 +11,12 @@ if [ $BRANCH == $CLEAN ]; then exit 1 fi -git checkout $CLEAN -./gyp_skia >/dev/null -platform_tools/android/bin/android_ninja -t Release nanobench -platform_tools/android/bin/android_run_skia -t Release nanobench $@ --skps /data/local/tmp/skps -i /data/local/tmp/resources --samples $SAMPLES -v > $CLEAN.log +if [ ! -f $CLEAN.log ]; then + git checkout $CLEAN + ./gyp_skia >/dev/null + platform_tools/android/bin/android_ninja -t Release nanobench + platform_tools/android/bin/android_run_skia -t Release nanobench $@ --skps /data/local/tmp/skps -i /data/local/tmp/resources --samples $SAMPLES -v > $CLEAN.log +fi git checkout $BRANCH ./gyp_skia >/dev/null @@ -11,10 +11,12 @@ if [ $BRANCH == $CLEAN ]; then exit 1 fi -git checkout $CLEAN -./gyp_skia >/dev/null -ninja -C out/Release nanobench -out/Release/nanobench $@ --samples $SAMPLES -v 2> $CLEAN.log +if [ ! -f $CLEAN.log ]; then + git checkout $CLEAN + ./gyp_skia >/dev/null + ninja -C out/Release nanobench + out/Release/nanobench $@ --samples $SAMPLES -v 2> $CLEAN.log +fi git checkout $BRANCH ./gyp_skia >/dev/null |