forked from kernelci/kernelci-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlava-v2-callback.py
executable file
·91 lines (74 loc) · 2.41 KB
/
lava-v2-callback.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
#!/usr/bin/env python3
# Copyright (C) 2018 Collabora Limited
# Author: Guillaume Tucker <[email protected]>
#
# This module is free software; you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free
# Software Foundation; either version 2.1 of the License, or (at your option)
# any later version.
#
# This library 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 Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
import argparse
import json
import sys
import yaml
# copied from lava-server/lava_scheduler_app/models.py
SUBMITTED = 0
RUNNING = 1
COMPLETE = 2
INCOMPLETE = 3
CANCELED = 4
CANCELING = 5
# git bisect return codes
BISECT_PASS = 0
BISECT_SKIP = 1
BISECT_FAIL = 2
# LAVA job result names
LAVA_JOB_RESULT_NAMES = {
COMPLETE: "PASS",
INCOMPLETE: "FAIL",
CANCELED: "UNKNOWN",
CANCELING: "UNKNOWN",
}
# git bisect and LAVA job status map
BOOT_STATUS_MAP = {
COMPLETE: BISECT_PASS,
INCOMPLETE: BISECT_FAIL,
}
def is_infra_error(cb):
lava_yaml = cb['results']['lava']
lava = yaml.load(lava_yaml)
stages = {s['name']: s for s in lava}
job_meta = stages['job']['metadata']
return job_meta.get('error_type') == "Infrastructure"
def handle_boot(cb):
job_status = cb['status']
print("Status: {}".format(LAVA_JOB_RESULT_NAMES[job_status]))
return BOOT_STATUS_MAP.get(job_status, BISECT_SKIP)
def main(args):
with open(args.json) as json_file:
cb = json.load(json_file)
if args.token and cb['token'] != args.token:
print("Token mismatch")
sys.exit(1)
if is_infra_error(cb):
print("Infrastructure error")
ret = BISECT_SKIP
else:
ret = handle_boot(cb)
sys.exit(ret)
if __name__ == '__main__':
parser = argparse.ArgumentParser("Parse LAVA v2 callback data")
parser.add_argument("json",
help="Path to the JSON data file")
parser.add_argument("--token",
help="Secret authorization token")
args = parser.parse_args()
main(args)