-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworker.py
137 lines (134 loc) · 5.86 KB
/
worker.py
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
from threading import Thread
import os
import subprocess
class Worker(Thread):
def __init__(self, script_path, queue_alpha, queue_beta_sleepy, queue_beta):
Thread.__init__(self)
self.script_path = script_path
self.queue_alpha = queue_alpha
self.queue_beta_sleepy = queue_beta_sleepy
self.queue_beta = queue_beta
def run(self):
while True:
item = self.queue_alpha.get()
if item['type'] == 'alpha-1':
# GitHub webhooks: pull requests - opened, reopened, synchronize
#
# conflict detection (GitHub) result not available
#
# add label "square-ci"
# wait for conflict detection result (GitHub)
self.queue_beta_sleepy.put({
'type': 'beta-2',
'repo': item['repo'],
'issue_number': item['issue_number']
})
elif item['type'] == 'alpha-2':
# GitHub webhooks: pull requests - labeled as "square-ci"
if item['mergeable'] is None:
# conflict detection (GitHub) result not available
#
# remove label "square-ci"
self.queue_beta.put({
'type': 'beta-3',
'repo': item['repo'],
'issue_number': item['issue_number']
})
# add label "square-ci"
# wait for conflict detection result (GitHub)
self.queue_beta_sleepy.put({
'type': 'beta-2',
'repo': item['repo'],
'issue_number': item['issue_number']
})
continue
elif item['mergeable'] is False:
# conflict detected
#
# remove label "square-ci"
self.queue_beta.put({
'type': 'beta-3',
'repo': item['repo'],
'issue_number': item['issue_number']
})
# create a comment (conflict)
self.queue_beta.put({
'type': 'beta-1',
'repo': item['repo'],
'issue_number': item['issue_number'],
'body': '### Square CI\n\nstatus\n\n```\nCONFLICTED\n```\n'
})
continue
# bash: execute_test.sh
result = subprocess.run(
[
self.script_path + os.sep + 'execute_test.sh',
item['repo']['local_directory'],
item['repo']['script']['test'],
'https://github.com/' + item['merge_from']['remote_path'] + '.git',
item['merge_from']['branch']
],
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT
)
if result.returncode == 0:
# create a comment (passed)
self.queue_beta.put({
'type': 'beta-1',
'repo': item['repo'],
'issue_number': item['issue_number'],
'body': '### Square CI\n\nstatus\n\n```\nPASSED\n```\n\noutput\n\n```'
+ result.stdout.decode('UTF-8')
+ '\n```\n'
})
# merge pull request
self.queue_beta.put({
'type': 'beta-4',
'repo': item['repo'],
'issue_number': item['issue_number'],
})
else:
# create a comment (failed)
self.queue_beta.put({
'type': 'beta-1',
'repo': item['repo'],
'issue_number': item['issue_number'],
'body': '### Square CI\n\nstatus\n\n```\nFAILED\n```\n\noutput\n\n```'
+ result.stdout.decode('UTF-8')
+ '\n```\n'
})
# remove label "square-ci"
self.queue_beta.put({
'type': 'beta-3',
'repo': item['repo'],
'issue_number': item['issue_number']
})
elif item['type'] == 'alpha-3':
# GitHub webhooks: pull requests - closed
#
# remove label "square-ci"
self.queue_beta_sleepy.put({
'type': 'beta-3',
'repo': item['repo'],
'issue_number': item['issue_number']
})
elif item['type'] == 'alpha-4':
# GitHub webhooks: pushs - origin / master
#
# bash: update
path = self.script_path + os.sep + 'target' + os.sep + item['repo']['local_directory']
result = subprocess.run(
'cd ' + path + ' && ' + '.' + os.sep + item['repo']['script']['update'],
shell=True,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT
)
# create a comment (updated)
self.queue_beta.put({
'type': 'beta-1',
'repo': item['repo'],
'issue_number': item['issue_number'],
'body': '### Square CI\n\nstatus\n\n```\nUPDATED\n```\n\noutput\n\n```'
+ result.stdout.decode('UTF-8')
+ '\n```\n'
})