2021-05-17 20:12:09 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
|
2021-05-18 03:02:27 +00:00
|
|
|
repodir = sys.argv[1]
|
|
|
|
profile = sys.argv[2]
|
2021-05-17 20:12:09 +00:00
|
|
|
|
|
|
|
sys.stdout.write("/* This file is auto-generated. Do not edit. */\n")
|
|
|
|
sys.stdout.write("#pragma once\n")
|
|
|
|
sys.stdout.write("\n")
|
|
|
|
sys.stdout.write(f"#define PROFILE \"{profile}\"\n")
|
|
|
|
|
|
|
|
short_sha = os.environ.get('CI_COMMIT_SHORT_SHA')
|
2021-05-18 03:02:27 +00:00
|
|
|
if short_sha is None:
|
|
|
|
cmd = ["git", "-C", repodir, "rev-parse", "--short", "HEAD"]
|
|
|
|
try:
|
|
|
|
with subprocess.Popen(cmd, stdout=subprocess.PIPE) as p:
|
|
|
|
short_sha = p.stdout.read().decode('utf-8').rstrip("\n")
|
|
|
|
except FileNotFoundError:
|
|
|
|
short_sha = ''
|
|
|
|
if profile != 'default':
|
|
|
|
short_sha = 'devel'
|
|
|
|
|
|
|
|
sys.stdout.write(f"#define VCS_TAG \"{short_sha}\"\n")
|