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

Unified Diff: bin/c

Issue 874643002: run clean branch baseline only once (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 11 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 | « bin/ac ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/c
diff --git a/bin/c b/bin/c
index a7b752cc674ee27ff69357fc1d3ce17630a36a9b..129a4e142bb8184887f5fe322b41716927415644 100755
--- a/bin/c
+++ b/bin/c
@@ -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
« no previous file with comments | « bin/ac ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698