Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
QuasselDroid-ng
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Janne Mareike Koschinski
QuasselDroid-ng
Commits
a98c338b
Verified
Commit
a98c338b
authored
1 year ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
build: attempt to fix issues with automatic version generation in ci again
parent
9f72f743
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#2997
failed
1 year ago
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gradle/convention/src/main/kotlin/AndroidApplicationConvention.kt
+7
-8
7 additions, 8 deletions
...onvention/src/main/kotlin/AndroidApplicationConvention.kt
gradle/convention/src/main/kotlin/util/ProjectExtensions.kt
+9
-5
9 additions, 5 deletions
gradle/convention/src/main/kotlin/util/ProjectExtensions.kt
with
16 additions
and
13 deletions
gradle/convention/src/main/kotlin/AndroidApplicationConvention.kt
+
7
−
8
View file @
a98c338b
...
...
@@ -24,18 +24,17 @@ class AndroidApplicationConvention : Plugin<Project> {
applicationId
=
"${rootProject.group}.${rootProject.name.lowercase(Locale.ROOT)}"
val
commit
=
rootProject
.
git
(
"rev-parse"
,
"HEAD"
)
val
name
=
rootProject
.
git
(
"describe"
,
"--always"
,
"--tags"
,
"HEAD"
)
val
commit
=
git
(
"rev-parse"
,
"HEAD"
)
!!
val
name
=
git
(
"describe"
,
"--always"
,
"--tags"
,
"HEAD"
)
!!
versionCode
=
rootProject
.
git
(
"rev-list"
,
"--count"
,
"HEAD"
)
?
.
toInt
OrNull
()
?:
1
versionName
=
rootProject
.
git
(
"describe"
,
"--always"
,
"--tags"
,
"HEAD"
)
?:
"1.0.0"
versionCode
=
git
(
"rev-list"
,
"--count"
,
"HEAD"
)
!!
.
toInt
()
versionName
=
git
(
"describe"
,
"--always"
,
"--tags"
,
"HEAD"
)
!!
val
fancyVersionName
=
if
(
commit
==
null
||
name
==
null
)
name
else
"<a href=\\\"https://git.kuschku.de/justJanne/QuasselDroid-ng/commit/$commit\\\">$name</a>"
val
fancyVersionName
=
"<a href=\\\"https://git.kuschku.de/justJanne/QuasselDroid-ng/commit/$commit\\\">$name</a>"
buildConfigField
(
"String"
,
"GIT_HEAD"
,
"\"${
rootProject.
git("
rev-parse
", "
HEAD
") ?: ""}\""
)
buildConfigField
(
"String"
,
"GIT_HEAD"
,
"\"${git("
rev-parse
", "
HEAD
") ?: ""}\""
)
buildConfigField
(
"String"
,
"FANCY_VERSION_NAME"
,
"\"${fancyVersionName ?: ""}\""
)
buildConfigField
(
"long"
,
"GIT_COMMIT_DATE"
,
"${
rootProject.
git("
show
", "
-
s
", "
--
format
=%
ct
") ?: 0}L"
)
buildConfigField
(
"long"
,
"GIT_COMMIT_DATE"
,
"${git("
show
", "
-
s
", "
--
format
=%
ct
") ?: 0}L"
)
signingConfig
=
signingConfigs
.
findByName
(
"default"
)
...
...
This diff is collapsed.
Click to expand it.
gradle/convention/src/main/kotlin/util/ProjectExtensions.kt
+
9
−
5
View file @
a98c338b
package
util
import
org.gradle.api.Project
import
java.io.ByteArrayOutputStream
import
java.util.Properties
@Suppress
(
"UnstableApiUsage"
)
fun
Project
.
git
(
vararg
command
:
String
):
String
?
=
try
{
providers
.
exec
{
fun
Project
.
git
(
vararg
command
:
String
)
=
try
{
val
stdOut
=
ByteArrayOutputStream
()
exec
{
commandLine
(
"git"
,
*
command
)
}.
standardOutput
.
asText
.
get
().
trim
()
}
catch
(
t
:
Throwable
)
{
standardOutput
=
stdOut
}
stdOut
.
toString
(
Charsets
.
UTF_8
.
name
()).
trim
()
}
catch
(
e
:
Throwable
)
{
e
.
printStackTrace
()
null
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment