-
Notifications
You must be signed in to change notification settings - Fork 0
/
get-version-info.sh
executable file
·77 lines (65 loc) · 2.29 KB
/
get-version-info.sh
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
#!/usr/bin/env python3.7
import json
import os
import subprocess
import sys
import argparse
parser = argparse.ArgumentParser( description = "Collect git version info" )
parser.add_argument('--repo',default="")
parser.add_argument('--unix',action="count")
parser.add_argument('--wdasource',action="count")
args = parser.parse_args()
def git_info( dir ):
if args.unix==1:
cmd = ["/usr/bin/git","-C","./"+dir,"log","-1","--date=unix", "--no-merges"]
else:
cmd = ["/usr/bin/git","-C","./"+dir,"log","-1", "--no-merges"]
try:
res = subprocess.check_output( cmd, stderr=subprocess.STDOUT ).decode('utf-8')
except subprocess.CalledProcessError as e:
#sys.stderr.write( e.output )
return {
"error": "missing"#e.output
}
remote = subprocess.check_output( ["/usr/bin/git", "-C", "./" + dir, "remote","-v"] ).decode('utf-8')
res = res[:-1] # remove trailing "\n"
remote = remote[:-1]
remote = remote.split("\n")[0].split("\t") # just first line
parts = res.split("\n")
return {
"commit": parts[0][7:], # remove 'commit '
"author": parts[1][7:].lstrip(), # remove 'Author:' and spaces
"date": parts[2][5:].lstrip(), # remove 'Date:' and spaces
"remote": remote[1].replace(" (fetch)",""), # just url to fetch
}
def xcode_version():
res = subprocess.check_output( ["/usr/bin/xcodebuild", "-version"] ).decode('utf-8')
res = res[:-1]
return res.split("\n")
if args.repo != "":
if args.repo == 'wda':
data = {
"wda": git_info( 'repos/WebDriverAgent' ),
}
data['wda']['xcode'] = xcode_version()
if args.repo == 'ios_support':
data = {
"ios_support": git_info( '.' ),
}
else:
data = {
"wda": git_info( 'repos/WebDriverAgent' ),
"h264_to_jpeg": git_info( 'repos/h264_to_jpeg' ),
"device_trigger": git_info( 'repos/osx_ios_device_trigger' ),
"stf": git_info( 'repos/stf-ios-provider' ),
"ios_video_stream": git_info( 'repos/ios_video_stream' ),
"wdaproxy": git_info( 'repos/wdaproxy' ),
"ios_support": git_info( '.' ),
"ios_avf_pull": git_info( 'repos/ios_avf_pull' )
}
if os.path.exists( 'bin/wda/build_info.json' ):
fh = open( 'bin/wda/build_info.json', 'r' )
wda_root = json.load( fh )
if args.wdasource != 1:
data["wda"] = wda_root["wda"]
print(json.dumps( data, indent = 2 ))