]> granicus.if.org Git - libvpx/commitdiff
all_builds.py: add ability to pass extra configure flags
authorJohn Koleszar <jkoleszar@google.com>
Wed, 22 Aug 2012 17:48:20 +0000 (10:48 -0700)
committerJohn Koleszar <jkoleszar@google.com>
Mon, 27 Aug 2012 17:30:14 +0000 (10:30 -0700)
Useful to pass --target etc to this script on Jenkins.

Change-Id: I9b22339a211df543077bcc84bdef4460f3ca5c9c

tools/all_builds.py

index b2bab730003975fa07bd5813a5bdd81b4f1c4bc6..d1f0c80c038af476cf03af5c0483a7434067b1af 100755 (executable)
@@ -33,15 +33,27 @@ def list_of_experiments():
 def main(argv):
   # Parse arguments
   options = {"--shard": 0, "--shards": 1}
-  o, _ = getopt.getopt(argv[1:], None, LONG_OPTIONS)
+  if "--" in argv:
+    opt_end_index = argv.index("--")
+  else:
+    opt_end_index = len(argv)
+  try:
+    o, _ = getopt.getopt(argv[1:opt_end_index], None, LONG_OPTIONS)
+  except getopt.GetoptError, err:
+    print str(err)
+    print "Usage: %s [--shard=<n> --shards=<n>] -- [configure flag ...]"%argv[0]
+    sys.exit(2)
+
   options.update(o)
+  extra_args = argv[opt_end_index + 1:]
 
   # Shard experiment list
   shard = int(options["--shard"])
   shards = int(options["--shards"])
   experiments = list_of_experiments()
-  configs = [BASE_COMMAND]
-  configs += ["%s --enable-%s" % (BASE_COMMAND, e) for e in experiments]
+  base_command = " ".join([BASE_COMMAND] + extra_args)
+  configs = [base_command]
+  configs += ["%s --enable-%s" % (base_command, e) for e in experiments]
   my_configs = zip(configs, range(len(configs)))
   my_configs = filter(lambda x: x[1] % shards == shard, my_configs)
   my_configs = [e[0] for e in my_configs]