summaryrefslogtreecommitdiffstats
path: root/yocto-start-autobuilder
blob: efb2ab432ef6877dcb37670db19b87e5523f51f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/usr/bin/env python
#
# Yocto Build Server Start Script
# Elizabeth Flanagan <elizabeth.flanagan@intel.com>
#
##
# Copyright (C) 2011-2012 Intel Corp.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

import os, sys, optparse, subprocess
from socket import gethostname
import ConfigParser

usage  = """%prog [options] master|slave|both   

Start a yocto buildbot autobuilder instance.
"""

parser = optparse.OptionParser(usage=usage)
options, args = parser.parse_args( sys.argv )

if len(args) != 2 or (sys.argv[1] != "both" and sys.argv[1] != "master" and sys.argv[1] != "slave") :
    parser.error("""
    You must specify if you wish to start master, slave or both. 
   
    """ + usage )
AB_BASE=os.path.dirname(os.path.abspath(sys.argv[0]))

################################################################################
#
# We need to check if they've run setup before. If they haven't, we fail out.
#
################################################################################
if os.path.isfile(os.path.join(AB_BASE, ".setupdone")):
    
    from ConfigParser import SafeConfigParser
 
    parser = SafeConfigParser()
    parser.read('conf/autobuilder.conf')
    print
    print "Reading " + os.path.join(AB_BASE, "conf/autobuilder.conf")
    print 
    os.environ["SLAVEBASEDIR"] = AB_BASE.strip('"') + "/yocto-slave"
    print ' Setting %s to %s' % ("SLAVEBASEDIR", AB_BASE + "/yocto-slave")
    for section_name in parser.sections():
        for name, value in parser.items(section_name):
            print ' Setting %s to %s' % (name.upper(), value)
            os.environ[name.upper()] = value.strip('"')
            if os.environ[name.upper()].endswith("_DIR"):
                if not os.path.exists(value):
                    try:
                        os.mkdirs(value)
                        print ' Creating %s at %s' % (name.upper(), value)
                    except:
                        pass            
    print

    if sys.argv[1] == "master" or sys.argv[1] == "both":

       os.chdir(os.path.join(AB_BASE, "yocto-master"))
       subprocess.call(["make", "start"])
       os.chdir(AB_BASE)

    if sys.argv[1] == "slave" or sys.argv[1] == "both":

       os.chdir(os.path.join(AB_BASE, "yocto-slave"))
       subprocess.call(["make", "start"])
       os.chdir(AB_BASE)
else:
    print "You have not sourced ./yocto-autobuilder-setup. Please do so first!"
    print ""
    print " . ./yocto-autobuilder-setup"
    sys.exit(1)