-
Notifications
You must be signed in to change notification settings - Fork 1
/
workflow.xml
85 lines (70 loc) · 1.87 KB
/
workflow.xml
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
<workflow>
<phase action="init">
<state>inactive</state>
<next action="config" />
</phase>
<phase action="config">
<state>inactive</state>
<next action="newproject" />
<sequence>
<command>makeconfig</command>
</sequence>
</phase>
<phase action="newproject">
<state>inactive</state>
<prev action="config" />
<next action="patchall" />
<sequence>
<command>make newproject</command>
<command>git init</command>
<command>git add --all</command>
<command>git commit -am "newproject"</command>
</sequence>
</phase>
<phase action="patchall">
<state>inactive</state>
<prev action="newproject" />
<next action="autofix" />
<sequence>
<command>make patchall</command>
</sequence>
</phase>
<phase action="autofix">
<state>inactive</state>
<prev action="patchall" />
<next action="fullota" />
<sequence>
<command>make autofix</command>
</sequence>
</phase>
<phase action="fullota">
<state>inactive</state>
<next action="final" />
<sequence>
<command>make</command>
</sequence>
</phase>
<phase action="final">
<state>inactive</state>
</phase>
<phase action="clean">
<sequence>
<command>make clean</command>
</sequence>
</phase>
<phase action="cleanall">
<sequence>
<command>make clean-all</command>
</sequence>
</phase>
<phase action="upgrade">
<sequence>
<command>make upgrade</command>
</sequence>
</phase>
<phase action="porting">
<sequence>
<command>make porting</command>
</sequence>
</phase>
</workflow>