summaryrefslogtreecommitdiff
path: root/ciatlib/master.py
blob: 3caa7512482d14d7382e6e6ed85c6f2e48d6a9ac (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
from buildbot.process.factory import BuildFactory
from buildbot.steps.shell import ShellCommand
from buildbot.plugins import util
from buildbot.plugins import steps
Property = util.Property
Git = steps.Git

class GitSource:
    def __init__(self,url,ref,sha=""):
        ''' Specify a source by a url and a ref. Optionally a SHA '''
        self.url = url
        self.ref = ref
        self.sha = sha

class Step:
    def __init__(self,name,trigger,properties,timeout=1200,get_definitions=False):
        self.name = name
        self.trigger = trigger
        self.properties = properties
        self.timeout = timeout
        self.get_definitions = get_definitions

Build = Step(
        name = 'Build',
        trigger = 'builder_trigger.sh',
        properties = [
                ("ref","cu010-trove/br6/firehose-test-1"),
                ("sha","HEAD"),
                ("system",'genivi-demo-platform-x86_64-generic.morph')],
        timeout = 7200,
        get_definitions = True)
Deploy = Step(
        name = 'Deploy',
        trigger = 'deploy_trigger.sh',
        properties = [
                ('system','no system give'),
                ('buildnumber',0),
                ('buildslave_scripts_sha','no buildslave-scripts SHA given'),
                ('definitions_sha','no definitions SHA given'),
                ('testing_sha','no testing SHA given')],
        timeout = 1800,
        get_definitions = True)
Test = Step(
        name = 'Test',
        trigger = 'testing_trigger.sh',
        properties = [
                ('artefact','no artefact given'),
                ('testing_sha','no testing SHA given'),
                ('buildslave_scripts_sha','no buildslave-scripts SHA given'),
                ('definitions_sha','no definitions SHA given')])
Publish = Step(
        name = 'Publish',
        trigger = 'publish_trigger.sh',
        properties = [
                ('artefact','no artefact given'),
                ('testing_sha','no testing SHA given'),
                ('buildslave_scripts_sha','no buildslave-scripts SHA given'),
                ('definitions_sha','no definitions SHA given')])

Steps = [Build,Deploy,Test,Publish]

class Column:

    def add_get_definitions(self,ref):
        ''' add a step fetch definitions '''

        ref = Property("ref",default=ref)
        get_defns_cmd = ['sh','get_definitions.sh',ref]
        shell_cmd = ShellCommand(command=get_defns_cmd,
                                 timeout=self.timeout)
        self.factory.addStep(shell_cmd)

    def format_cmd(self):
        ''' a buildbot shell command to pass the properties to trigger '''

        util_properties = []
        for property in self.properties:
            name = property[0]
            default_str = property[1]
            util_property = Property(name,default=default_str)
            util_properties.append(util_property)
        cmd = ['sh',self.trigger]+util_properties
        return ShellCommand(command=cmd,
                            timeout=self.timeout)

    def __init__(self,
                 name,
                 source_repo,
                 category,
                 trigger,
                 slavenames,
                 properties,
                 timeout=1200,
                 get_definitions=False):
        ''' A worker in CIAT Orchestration which appears as a column in the
            buildbot waterfall. get_definitions is either False or a ref '''

        self.name = name
        assert isinstance(source_repo,GitSource)
        self.source_repo = source_repo
        self.category = category
        self.trigger = 'triggers/%s' % trigger
        self.slavenames = slavenames
        self.properties = properties
        self.timeout = timeout
        self.get_definitions = get_definitions
        self.factory = BuildFactory()
        self.factory.addStep(Git(
                repourl=self.source_repo.url,
                branch=self.source_repo.ref,
                mode='incremental'))
        if self.get_definitions:
            self.add_get_definitions(get_definitions)
        self.cmd = self.format_cmd()
        self.factory.addStep(self.cmd)

class Pipeline:

    def get_slaves(self,slave_type):
        ''' this returns a list of slaves given a slave-type '''
        #TODO this needs doing properly
        #if slave_type['arch'] == 'x86_64':
        #    return 'local-slave'
        #elif slave_type['arch'] == 'arm':
        #    return 'arm-slave'
        return 'local-slave'

    def __init__(self,
            name,
            candidate_refs,
            slave_type,
            clusters,
            steps):
        self.name = name
        self.candidate_refs = candidate_refs
        self.slavenames = self.get_slaves(slave_type)
        self.clusters = clusters
        self.steps = steps
        self.categories = []
        self.columns = []
        
        BUILD_SLAVE_SCRIPTS = GitSource(
                'sh://git@cu010-trove.codethink.com/cu010-trove/br6/buildslave-scripts',
                'master')

        for step in steps:
            column_name = "%s %s" % (self.name, step.name)
            category = column_name
            self.categories.append(category)
            self.columns.append(Column(
                    name = column_name,
                    source_repo = BUILD_SLAVE_SCRIPTS,
                    category = category,
                    trigger = step.trigger,
                    slavenames = self.slavenames,
                    properties = step.properties,
                    timeout = step.timeout,
                    get_definitions = step.get_definitions))

def pipeline_from_dict(_dict):
    ''' given a dict of a pipeline return an object '''
    name = _dict['name']
    candidate_refs = _dict['candidate-refs']
    slave_type = _dict['slave-type']
    clusters = _dict['clusters']
    str_steps = _dict['steps']
    steps = []
    for step in str_steps:
        for S in Steps:
            if step == S.name:
                steps.append(S)
                break
    return Pipeline(name,candidate_refs,slave_type,clusters,steps)