Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dtu-enote-website
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
enote
dtu-enote-website
Commits
ccdb8f62
Commit
ccdb8f62
authored
Mar 8, 2019
by
iaibrys
Browse files
Options
Downloads
Patches
Plain Diff
Fix build
parent
a4d07507
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/gen-build-info.sh
+7
-2
7 additions, 2 deletions
scripts/gen-build-info.sh
with
7 additions
and
2 deletions
scripts/gen-build-info.sh
+
7
−
2
View file @
ccdb8f62
#!/bin/bash
#!/bin/bash
function
get_version
()
{
function
get_version
()
{
current_branch
=
$(
git branch |
grep
\*
|
cut
-d
' '
-f2
)
current_branch
=
$(
git branch |
grep
-v
HEAD |
grep
\*
|
cut
-d
' '
-f2
)
current_branch
=
${
CI_COMMIT_SHORT_SHA
:-
$current_branch
}
branches
=(
master develop
$current_branch
)
branches
=(
master develop
$current_branch
)
for
branch_idx
in
"
${
!branches[@]
}
"
;
do
for
branch_idx
in
"
${
!branches[@]
}
"
;
do
...
@@ -49,7 +50,11 @@ function emit_info() {
...
@@ -49,7 +50,11 @@ function emit_info() {
done
done
}
}
component
=
$(
git config
--local
remote.origin.url | gsed
-r
's/.*[:/]([^/]+)(\.git)?$/\1/'
| gsed
-r
's/\//-/'
)
sed
=
sed
if
type
gsed
>
/dev/null 2>&1
;
then
sed
=
gsed
fi
component
=
$(
git config
--local
remote.origin.url |
${
sed
}
-r
's/.*[:/]([^/]+)(\.git)?$/\1/'
|
${
sed
}
-r
's/\//-/'
)
emit_info
${
component
}
.
emit_info
${
component
}
.
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