summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorJoe Guo <joeg@catalyst.net.nz>2019-05-03 22:41:51 +1200
committerAndrew Bartlett <abartlet@samba.org>2019-05-10 08:19:17 +0000
commit332f19c7f2c56e6835420647599884fed5e61d98 (patch)
treede29b339afe90886f2a31ccf8c79a954060a8730 /script
parent9ea81c0e3764cbda449c1d98595981ce32a8558c (diff)
downloadsamba-332f19c7f2c56e6835420647599884fed5e61d98.tar.gz
script/autobuild.py: mv optionparse to top
so the rest of the code can use the option values directly. Signed-off-by: Joe Guo <joeg@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'script')
-rwxr-xr-xscript/autobuild.py106
1 files changed, 53 insertions, 53 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index aac42f41176..195b2c904a0 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -47,6 +47,59 @@ if gitroot is None:
raise Exception("Failed to find git root")
+def_testbase = os.getenv("AUTOBUILD_TESTBASE", "/memdisk/%s" % os.getenv('USER'))
+
+parser = OptionParser()
+parser.add_option("", "--tail", help="show output while running", default=False, action="store_true")
+parser.add_option("", "--keeplogs", help="keep logs", default=False, action="store_true")
+parser.add_option("", "--nocleanup", help="don't remove test tree", default=False, action="store_true")
+parser.add_option("", "--testbase", help="base directory to run tests in (default %s)" % def_testbase,
+ default=def_testbase)
+parser.add_option("", "--passcmd", help="command to run on success", default=None)
+parser.add_option("", "--verbose", help="show all commands as they are run",
+ default=False, action="store_true")
+parser.add_option("", "--rebase", help="rebase on the given tree before testing",
+ default=None, type='str')
+parser.add_option("", "--pushto", help="push to a git url on success",
+ default=None, type='str')
+parser.add_option("", "--mark", help="add a Tested-By signoff before pushing",
+ default=False, action="store_true")
+parser.add_option("", "--fix-whitespace", help="fix whitespace on rebase",
+ default=False, action="store_true")
+parser.add_option("", "--retry", help="automatically retry if master changes",
+ default=False, action="store_true")
+parser.add_option("", "--email", help="send email to the given address on failure",
+ type='str', default=None)
+parser.add_option("", "--email-from", help="send email from the given address",
+ type='str', default="autobuild@samba.org")
+parser.add_option("", "--email-server", help="send email via the given server",
+ type='str', default='localhost')
+parser.add_option("", "--always-email", help="always send email, even on success",
+ action="store_true")
+parser.add_option("", "--daemon", help="daemonize after initial setup",
+ action="store_true")
+parser.add_option("", "--branch", help="the branch to work on (default=master)",
+ default="master", type='str')
+parser.add_option("", "--log-base", help="location where the logs can be found (default=cwd)",
+ default=gitroot, type='str')
+parser.add_option("", "--attach-logs", help="Attach logs to mails sent on success/failure?",
+ default=False, action="store_true")
+parser.add_option("", "--restrict-tests", help="run as make test with this TESTS= regex",
+ default='')
+
+(options, args) = parser.parse_args()
+
+if options.retry:
+ if options.rebase is None:
+ raise Exception('You can only use --retry if you also rebase')
+
+testbase = "%s/b%u" % (options.testbase, os.getpid())
+test_master = "%s/master" % testbase
+test_prefix = "%s/prefix" % testbase
+test_tmpdir = "%s/tmp" % testbase
+os.environ['TMPDIR'] = test_tmpdir
+
+
cleanup_list = []
builddirs = {
@@ -865,47 +918,6 @@ def push_to(push_url, push_branch="master"):
show=True, dir=test_master)
-def_testbase = os.getenv("AUTOBUILD_TESTBASE", "/memdisk/%s" % os.getenv('USER'))
-
-parser = OptionParser()
-parser.add_option("", "--tail", help="show output while running", default=False, action="store_true")
-parser.add_option("", "--keeplogs", help="keep logs", default=False, action="store_true")
-parser.add_option("", "--nocleanup", help="don't remove test tree", default=False, action="store_true")
-parser.add_option("", "--testbase", help="base directory to run tests in (default %s)" % def_testbase,
- default=def_testbase)
-parser.add_option("", "--passcmd", help="command to run on success", default=None)
-parser.add_option("", "--verbose", help="show all commands as they are run",
- default=False, action="store_true")
-parser.add_option("", "--rebase", help="rebase on the given tree before testing",
- default=None, type='str')
-parser.add_option("", "--pushto", help="push to a git url on success",
- default=None, type='str')
-parser.add_option("", "--mark", help="add a Tested-By signoff before pushing",
- default=False, action="store_true")
-parser.add_option("", "--fix-whitespace", help="fix whitespace on rebase",
- default=False, action="store_true")
-parser.add_option("", "--retry", help="automatically retry if master changes",
- default=False, action="store_true")
-parser.add_option("", "--email", help="send email to the given address on failure",
- type='str', default=None)
-parser.add_option("", "--email-from", help="send email from the given address",
- type='str', default="autobuild@samba.org")
-parser.add_option("", "--email-server", help="send email via the given server",
- type='str', default='localhost')
-parser.add_option("", "--always-email", help="always send email, even on success",
- action="store_true")
-parser.add_option("", "--daemon", help="daemonize after initial setup",
- action="store_true")
-parser.add_option("", "--branch", help="the branch to work on (default=master)",
- default="master", type='str')
-parser.add_option("", "--log-base", help="location where the logs can be found (default=cwd)",
- default=gitroot, type='str')
-parser.add_option("", "--attach-logs", help="Attach logs to mails sent on success/failure?",
- default=False, action="store_true")
-parser.add_option("", "--restrict-tests", help="run as make test with this TESTS= regex",
- default='')
-
-
def send_email(subject, text, log_tar):
if options.email is None:
do_print("not sending email because the recipient is not set")
@@ -1039,18 +1051,6 @@ The top commit for the tree that was built was:
text, logs)
-(options, args) = parser.parse_args()
-
-if options.retry:
- if options.rebase is None:
- raise Exception('You can only use --retry if you also rebase')
-
-testbase = "%s/b%u" % (options.testbase, os.getpid())
-test_master = "%s/master" % testbase
-test_prefix = "%s/prefix" % testbase
-test_tmpdir = "%s/tmp" % testbase
-os.environ['TMPDIR'] = test_tmpdir
-
# get the top commit message, for emails
top_commit_msg = run_cmd("git log -1", dir=gitroot, output=True)
top_commit_msg = top_commit_msg.decode('utf-8', 'backslashreplace')