gajim-plural/scripts/dev/run-build-test.py

20 lines
390 B
Python
Raw Normal View History

2009-10-18 18:38:13 +02:00
#!/usr/bin/env python
import os
import sys
if os.getcwd().endswith('dev'):
os.chdir('../../') # we were in scripts/dev
2009-10-18 18:38:13 +02:00
ret = 0
ret += os.system("make clean > " + os.devnull)
ret += os.system("make > " + os.devnull)
ret += os.system("make check > " + os.devnull)
2009-10-18 18:38:13 +02:00
if ret == 0:
print "Build successfull"
sys.exit(0)
2009-10-18 18:38:13 +02:00
else:
print >>sys.stderr, "Build failed"
sys.exit(1)