Also-by: Christian Aistleitner <christian@quelltextlich.at> Change-Id: Ibe74e6de4ac0819c67dbd3ebb7008c3a716f3e06
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/env python
 | 
						|
 | 
						|
# This script will be run by bazel when the build process starts to
 | 
						|
# generate key-value information that represents the status of the
 | 
						|
# workspace. The output should be like
 | 
						|
#
 | 
						|
# KEY1 VALUE1
 | 
						|
# KEY2 VALUE2
 | 
						|
#
 | 
						|
# If the script exits with non-zero code, it's considered as a failure
 | 
						|
# and the output will be discarded.
 | 
						|
 | 
						|
from __future__ import print_function
 | 
						|
import os
 | 
						|
import subprocess
 | 
						|
import sys
 | 
						|
 | 
						|
ROOT = os.path.abspath(__file__)
 | 
						|
while not os.path.exists(os.path.join(ROOT, 'WORKSPACE')):
 | 
						|
    ROOT = os.path.dirname(ROOT)
 | 
						|
CMD = ['git', 'describe', '--always', '--match', 'v[0-9].*', '--dirty']
 | 
						|
 | 
						|
 | 
						|
def revision(directory, parent):
 | 
						|
    try:
 | 
						|
        os.chdir(directory)
 | 
						|
        return subprocess.check_output(CMD).strip().decode("utf-8")
 | 
						|
    except OSError as err:
 | 
						|
        print('could not invoke git: %s' % err, file=sys.stderr)
 | 
						|
        sys.exit(1)
 | 
						|
    except subprocess.CalledProcessError as err:
 | 
						|
        # ignore "not a git repository error" to report unknown version
 | 
						|
        return None
 | 
						|
    finally:
 | 
						|
        os.chdir(parent)
 | 
						|
 | 
						|
 | 
						|
print("STABLE_BUILD_GERRIT_LABEL %s" % revision(ROOT, ROOT))
 | 
						|
for kind in ['modules', 'plugins']:
 | 
						|
    kind_dir = os.path.join(ROOT, kind)
 | 
						|
    for d in os.listdir(kind_dir):
 | 
						|
        p = os.path.join(kind_dir, d)
 | 
						|
        if os.path.isdir(p):
 | 
						|
            v = revision(p, ROOT)
 | 
						|
            print('STABLE_BUILD_%s_LABEL %s' % (os.path.basename(p).upper(),
 | 
						|
                                                v if v else 'unknown'))
 |