1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-04 16:30:12 +02:00

common.get_wiki_timestamp() for posting timestamps to wiki log pages

This commit is contained in:
Hans-Christoph Steiner 2018-01-17 14:39:54 +01:00
parent e013fde8b9
commit df51a6e999
2 changed files with 9 additions and 8 deletions

View File

@ -290,10 +290,6 @@ def force_gradle_build_tools(build_dir, build_tools):
path)
def _get_build_timestamp():
return time.strftime("%Y-%m-%d %H:%M:%SZ", time.gmtime())
def transform_first_char(string, method):
"""Uses method() on the first character of string."""
if len(string) == 0:
@ -1067,7 +1063,7 @@ def parse_commandline():
options = None
config = None
buildserverid = None
starttime = _get_build_timestamp()
starttime = common.get_wiki_timestamp()
def main():
@ -1187,7 +1183,7 @@ def main():
for build in app.builds:
wikilog = None
build_starttime = _get_build_timestamp()
build_starttime = common.get_wiki_timestamp()
tools_version_log = ''
if not options.onserver:
tools_version_log = get_android_tools_version_log(build.ndk_path())
@ -1284,7 +1280,7 @@ def main():
f.write('versionCode: %s\nversionName: %s\ncommit: %s\n' %
(build.versionCode, build.versionName, build.commit))
f.write('Build completed at '
+ _get_build_timestamp() + '\n')
+ common.get_wiki_timestamp() + '\n')
f.write('\n' + tools_version_log + '\n')
f.write(str(e))
logging.error("Could not build app %s: %s" % (appid, e))
@ -1311,7 +1307,7 @@ def main():
fdroidserverid = fp.read().rstrip()
txt = "* build session started at " + starttime + '\n' \
+ "* this build started at " + build_starttime + '\n' \
+ "* this build completed at " + _get_build_timestamp() + '\n' \
+ "* this build completed at " + common.get_wiki_timestamp() + '\n' \
+ '* fdroidserverid: [https://gitlab.com/fdroid/fdroidserver/commit/' \
+ fdroidserverid + ' ' + fdroidserverid + ']\n\n'
if buildserverid:

View File

@ -3010,3 +3010,8 @@ def get_examples_dir():
examplesdir = prefix + '/examples'
return examplesdir
def get_wiki_timestamp():
"""Return current time in the standard format for posting to the wiki"""
return time.strftime("%Y-%m-%d %H:%M:%SZ", time.gmtime())