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

Unified Diff: infra/bots/compile_skia.py

Issue 1743113003: Add test_skia.py, isolates for test_skia, images, skps (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Address comments Created 4 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 | « infra/bots/compile_skia.isolate ('k') | infra/bots/download_images.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: infra/bots/compile_skia.py
diff --git a/infra/bots/compile_skia.py b/infra/bots/compile_skia.py
index b3b625121fe371cf127b380f55d71a35f50b2bae..ca2c7db600b38436128289f0f10ec5533ba127eb 100644
--- a/infra/bots/compile_skia.py
+++ b/infra/bots/compile_skia.py
@@ -6,17 +6,19 @@
# found in the LICENSE file.
+import argparse
import common
+import os
import sys
def main():
- if len(sys.argv) != 3:
- print >> sys.stderr, 'Usage: compile_skia.py <builder name> <out-dir>'
- sys.exit(1)
- bot = common.BotInfo(sys.argv[1], 'fake-slave', sys.argv[2])
- for t in bot.build_targets:
- bot.flavor.compile(t)
+ parser = argparse.ArgumentParser()
+ parser.add_argument('--builder_name', required=True)
+ parser.add_argument('--swarm_out_dir', required=True)
+ args = parser.parse_args()
+ bot = common.BotInfo(args.builder_name, os.path.abspath(args.swarm_out_dir))
+ bot.compile_steps()
if __name__ == '__main__':
« no previous file with comments | « infra/bots/compile_skia.isolate ('k') | infra/bots/download_images.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698