-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgit.gradle
85 lines (71 loc) · 2.49 KB
/
git.gradle
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
ext.git = [
versionName : {
if (project.hasProperty("versionName")) {
return project.getProperty("versionName")
}
def baseTag = git.latestTag() ?: "0.0.0"
def commitCount = git.numberOfCommitsSinceTag(baseTag)
def result = baseTag
if (commitCount != 0 || git.isDirty() || baseTag.startsWith("0.0.")) {
result = result.replace("-SNAPSHOT", "")
if (commitCount != 0 || git.isDirty()) {
result += ".$commitCount"
}
result += "-SNAPSHOT"
}
return result
},
commitCount : {
try {
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'git', 'log', '--oneline'
standardOutput = stdout
}
def commitCount = stdout.toString().split("\n").length
return commitCount
} catch (ignored) {
return 0
}
},
latestTag : {
try {
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'git', 'describe', '--abbrev=0'
standardOutput = stdout
}
def tag = stdout.toString().split("\n").first()
return tag
} catch (ignored) {
return "0.0.0"
}
},
numberOfCommitsSinceTag: { tagName ->
try {
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'git', 'log', "${tagName}..HEAD", '--oneline'
standardOutput = stdout
}
def result = stdout.toString().trim()
if (result.empty) return 0
def commitCount = result.split("\n").length
return commitCount
} catch (ignored) {
return -1
}
},
isDirty : {
try {
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'git', 'describe', '--dirty'
standardOutput = stdout
}
return stdout.toString().split("\n").first().contains('dirty')
} catch (ignored) {
return false
}
}
]