102 lines
3.2 KiB
Python
Executable File
102 lines
3.2 KiB
Python
Executable File
#!/usr/bin/python
|
|
##
|
|
## @author Edouard DUPIN
|
|
##
|
|
## @copyright 2012, Edouard DUPIN, all right reserved
|
|
##
|
|
## @license APACHE v2.0 (see license file)
|
|
##
|
|
import urllib, urllib2
|
|
import sys
|
|
import os
|
|
import argparse
|
|
|
|
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("-u", "--url", help="server URL",
|
|
default="http://atria-soft.com/ci/build/inject")
|
|
parser.add_argument("-r", "--repo", help="Curent repositoty (generic github name (userName/repoName)",
|
|
default="")
|
|
parser.add_argument("-s", "--sha1", help="Sha1 on the commit (git) (256 char limited)",
|
|
default="")
|
|
parser.add_argument("-b", "--branch", help="branch of the repository (default master)",
|
|
default="")
|
|
parser.add_argument("-t", "--tag", help="Tag to register the system 'Linux', 'MacOs', 'Windows', 'IOs', 'Android' ('' for exit)",
|
|
default="")
|
|
parser.add_argument("-S", "--status", help="Build status 'START', 'OK', 'ERROR' or $?",
|
|
default="")
|
|
###################
|
|
## Choice 3 ##
|
|
###################
|
|
parser.add_argument("--test", help="test value (local server ...)",
|
|
action="store_true")
|
|
args = parser.parse_args()
|
|
|
|
if args.test == True:
|
|
args.url = 'http://127.0.0.1/build/inject.php'
|
|
args.repo = 'HeeroYui/test'
|
|
args.sha1 = ''
|
|
args.branch = 'master'
|
|
args.tag = 'Windows'
|
|
args.status = 'START'
|
|
else:
|
|
if args.tag == "":
|
|
print("[NOTE] (local) not set '--tag' parameter ==> just stop")
|
|
exit(0)
|
|
list_tag = ['Linux', 'MacOs', 'Windows', 'IOs', 'Android', 'Mingw']
|
|
if args.tag not in list_tag:
|
|
print("[ERROR] (local) set '--tag' parameter: " + str(list_tag))
|
|
exit(-2)
|
|
if args.status == "":
|
|
print("[ERROR] (local) set '--status' parameter")
|
|
exit(-2)
|
|
|
|
if args.status not in ['START', 'OK', 'ERROR']:
|
|
#print("ploppp : '" + str(args.status) + "'")
|
|
if args.status == "0":
|
|
args.status = 'OK'
|
|
else:
|
|
args.status = 'ERROR'
|
|
|
|
# todo : check if repo is contituated with a "/" ...
|
|
# if repo, sha1 and branch is not set, we try to get it with travis global environement variable :
|
|
if args.repo == "":
|
|
args.repo = os.environ.get('TRAVIS_REPO_SLUG')
|
|
if args.repo == None:
|
|
print("[ERROR] (local) missing 'repo' parameter can not get travis env variable")
|
|
exit(-2)
|
|
if args.sha1 == "":
|
|
args.sha1 = os.environ.get('TRAVIS_COMMIT')
|
|
if args.sha1 == None:
|
|
args.sha1 = ""
|
|
|
|
if args.branch == "":
|
|
args.branch = os.environ.get('TRAVIS_BRANCH')
|
|
if args.branch == None:
|
|
args.branch = ""
|
|
|
|
print(" url = " + args.url)
|
|
print(" repo = " + args.repo)
|
|
print(" sha1 = " + args.sha1)
|
|
print(" branch = " + args.branch)
|
|
print(" tag = " + args.tag)
|
|
print(" status = " + args.status)
|
|
|
|
data = urllib.urlencode({'REPO':args.repo,
|
|
'SHA1':args.sha1,
|
|
'LIB_BRANCH':args.branch,
|
|
'TAG':args.tag,
|
|
'STATUS':args.status})
|
|
|
|
req = urllib2.Request(args.url, data)
|
|
response = urllib2.urlopen(req)
|
|
#print response.geturl()
|
|
#print response.info()
|
|
return_data = response.read()
|
|
print return_data
|
|
if return_data[:7] == "[ERROR]":
|
|
exit(-1)
|
|
|
|
exit(0)
|
|
|