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
|
#!/usr/bin/env python
#
# python yaml validator for a git commit
#
'''
python yaml validator for a git commit
'''
import shutil
import sys
import os
import tempfile
import subprocess
import yaml
def get_changes(oldrev, newrev, tempdir):
'''Get a list of git changes from oldrev to newrev'''
proc = subprocess.Popen(['/usr/bin/git', 'diff', '--name-only', oldrev,
newrev, '--diff-filter=ACM'], stdout=subprocess.PIPE)
stdout, _ = proc.communicate()
files = stdout.split('\n')
# No file changes
if not files:
return []
cmd = '/usr/bin/git archive %s %s | /bin/tar x -C %s' % (newrev, " ".join(files), tempdir)
proc = subprocess.Popen(cmd, shell=True)
_, _ = proc.communicate()
rfiles = []
for dirpath, _, fnames in os.walk(tempdir):
for fname in fnames:
rfiles.append(os.path.join(dirpath, fname))
return rfiles
def main():
'''
Perform yaml validation
'''
results = []
try:
tmpdir = tempfile.mkdtemp(prefix='jenkins-git-')
old, new, _ = sys.argv[1:]
for file_mod in get_changes(old, new, tmpdir):
print "+++++++ Received: %s" % file_mod
if not file_mod.endswith('.yml') and not file_mod.endswith('.yaml') and not os.path.islink(file_mod):
continue
try:
yaml.load(open(file_mod))
results.append(True)
except yaml.scanner.ScannerError as yerr:
print yerr
results.append(False)
finally:
shutil.rmtree(tmpdir)
if not all(results):
sys.exit(1)
if __name__ == "__main__":
main()
|