forked from bdring/FluidNC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit-version.py
42 lines (37 loc) · 1.14 KB
/
git-version.py
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
import subprocess
# Thank you https://docs.platformio.org/en/latest/projectconf/section_env_build.html !
try:
tag = (
subprocess.check_output(["git", "describe", "--tags", "--abbrev=0"])
.strip()
.decode("utf-8")
)
except:
tag = "3.0"
print("-DGIT_TAG='\"%s\"'" % (tag))
# Check to see if the head commit exactly matches a tag.
# If so, the revision is "release", otherwise it is BRANCH-COMMIT
try:
subprocess.check_call(["git", "describe", "--tags", "--exact"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
print("-DGIT_REV='\"%s\"'" % "release")
except:
branchname = (
subprocess.check_output(["git", "rev-parse", "--abbrev-ref", "HEAD"])
.strip()
.decode("utf-8")
)
revision = (
subprocess.check_output(["git", "rev-parse", "--short", "HEAD"])
.strip()
.decode("utf-8")
)
modified = (
subprocess.check_output(["git", "status", "-uno", "-s"])
.strip()
.decode("utf-8")
)
if modified:
dirty = "-dirty"
else:
dirty = ""
print("-DGIT_REV='\"%s-%s%s\"'" % (branchname, revision, dirty))