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
e70e7f4f
Verified
Commit
e70e7f4f
authored
1 year ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
build: include tags in versioncode count
parent
dbd33df0
No related branches found
No related tags found
No related merge requests found
Pipeline
#3004
passed
1 year ago
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
gradle/convention/src/main/kotlin/AndroidApplicationConvention.kt
+1
-1
1 addition, 1 deletion
...onvention/src/main/kotlin/AndroidApplicationConvention.kt
with
2 additions
and
2 deletions
.gitlab-ci.yml
+
1
−
1
View file @
e70e7f4f
...
...
@@ -36,7 +36,7 @@ version:
stage
:
"
test"
script
:
-
"
export
VERSION_NAME=$(git
describe
--abbrev=0
--tags
HEAD)"
-
"
export
VERSION_CODE=$(git
rev-list
--count
$VERSION_NAME)"
-
"
export
VERSION_CODE=$(git
rev-list
--count
$VERSION_NAME
--tags
)"
-
"
echo
\"
{
\\\"
name
\\\"
:
\\\"
$VERSION_NAME
\\\"
,
\\\"
code
\\\"
:$VERSION_CODE}
\"
>
version.json"
artifacts
:
paths
:
...
...
This diff is collapsed.
Click to expand it.
gradle/convention/src/main/kotlin/AndroidApplicationConvention.kt
+
1
−
1
View file @
e70e7f4f
...
...
@@ -27,7 +27,7 @@ class AndroidApplicationConvention : Plugin<Project> {
val
commit
=
git
(
"rev-parse"
,
"HEAD"
)
val
name
=
git
(
"describe"
,
"--always"
,
"--tags"
,
"HEAD"
)
versionCode
=
git
(
"rev-list"
,
"--count"
,
"HEAD"
)
?.
toIntOrNull
()
versionCode
=
git
(
"rev-list"
,
"--count"
,
"HEAD"
,
"--tags"
)
?.
toIntOrNull
()
versionName
=
git
(
"describe"
,
"--always"
,
"--tags"
,
"HEAD"
)
val
fancyVersionName
=
if
(
commit
==
null
||
name
==
null
)
name
...
...
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