# HG changeset patch # User Jeff Hammel # Date 1399807857 25200 # Node ID 45fd58949f8a76a93c7203e548c90ee3a7374099 # Parent 7bca6b5ecd90ca9704ed0cbb101cf4ccbfd1857f STUB: autobot/projects/__init__.py autobot/template.py diff -r 7bca6b5ecd90 -r 45fd58949f8a autobot/projects/__init__.py --- a/autobot/projects/__init__.py Tue Apr 15 22:28:10 2014 -0700 +++ b/autobot/projects/__init__.py Sun May 11 04:30:57 2014 -0700 @@ -1,13 +1,5 @@ """ -projects that need some testing: - -* logparser [WORKING] -* autobot [WORKING] -* mozmill [IN FLIGHT] -* devicemanager [IN FLIGHT] -* profilemanager [IN FLIGHT] -* firebug [TODO] -* jetpack thing [TODO] +projects that need some CI love """ import imp diff -r 7bca6b5ecd90 -r 45fd58949f8a autobot/template.py --- a/autobot/template.py Tue Apr 15 22:28:10 2014 -0700 +++ b/autobot/template.py Sun May 11 04:30:57 2014 -0700 @@ -1,10 +1,11 @@ #!/usr/bin/env python """ -makeitso templates for the A*Team's buildbot +MakeItSo templates for autobot + +see http://k0s.org/hg/MakeItSo """ -import mozinfo import os import string import sys @@ -32,7 +33,7 @@ class AutobotMasterTemplate(MakeItSoTemplate): name = 'autobot-master' - description = 'template for the autotools buildbot master' + description = 'template for the autobot buildbot master' templates = [os.path.join('template', 'master')] vars = [Variable('slave', 'buildslave name', os_type or 'slave'), Variable('os', 'buildslave os (win, mac, linux)', os_type), @@ -40,9 +41,9 @@ Variable('slaveport', 'port to talk to slaves on', default=9010, cast=int), Variable('htmlport', 'port for waterfall display', default=8010, cast=int), Variable('publichtmlport', 'port for public waterfall display', default=8011, cast=int), - Variable('botname', 'name of IRC bot', default='autobot-test'), # use autobot in production + Variable('botname', 'name of IRC bot'), Variable('ircHost', 'IRC host'), - Variable('ircChannels', 'channels for the IRC bot ("-" for none)', default='#ateam-test'), # use #ateam in production + Variable('ircChannels', 'channels for the IRC bot ("-" for none)') Variable('domain', 'autobot domain name', default='localhost'), Variable('recipients', 'email recipients for all projects', '') ] @@ -165,7 +166,6 @@ # parse the arguments parser = self.parser() options, args = parser.parse_args(args=args) - if not(args): parser.print_usage() parser.exit()