Skip to content
GitLab
Next
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
GitLab.org
gitlab-runner
Commits
bb617165
Commit
bb617165
authored
Sep 04, 2018
by
Alessio Caiazza
💡
Browse files
Merge branch 'patch-9' into 'master'
BUILT: use UTC timezone regardless of local TZ See merge request
!1000
parents
46d4f259
1afd19c3
Pipeline
#29351692
passed with stages
in 31 minutes and 15 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Makefile
Makefile
+1
-1
No files found.
Makefile
View file @
bb617165
...
...
@@ -3,7 +3,7 @@ PACKAGE_NAME ?= $(NAME)
export
VERSION
:=
$(
shell
./ci/version
)
REVISION
:=
$(
shell
git rev-parse
--short
=
8 HEAD
||
echo
unknown
)
BRANCH
:=
$(
shell
git show-ref |
grep
"
$(REVISION)
"
|
grep
-v
HEAD |
awk
'{print $$2
}
'
|
sed
's|refs/remotes/origin/||'
|
sed
's|refs/heads/||'
|
sort
|
head
-n
1
)
BUILT
:=
$(
shell
date
+%Y-%m-%dT%H:%M:%S%
:
z
)
BUILT
:=
$(
shell
date
-u
+%Y-%m-%dT%H:%M:%S%z
)
export
TESTFLAGS
?=
-cover
LATEST_STABLE_TAG
:=
$(
shell
git
-c
versionsort.prereleaseSuffix
=
"-rc"
-c
versionsort.prereleaseSuffix
=
"-RC"
tag
-l
"v*.*.*"
--sort
=
-v
:refname |
awk
'!/rc/'
|
head
-n
1
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment