changeset 1b0d774b6187 in modules/customs:default
details: https://hg.tryton.org/modules/customs?cmd=changeset;node=1b0d774b6187
description:
Append CI build number to package version
This makes them unique and avoid collision with the shared cache.
issue8831
review254651002
diffstat:
setup.py | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diffs (16 lines):
diff -r 8e7dd3dfe89e -r 1b0d774b6187 setup.py
--- a/setup.py Mon Nov 04 12:59:08 2019 +0100
+++ b/setup.py Mon Nov 25 21:55:20 2019 +0100
@@ -44,6 +44,12 @@
download_url = (
'hg+http://hg.tryton.org/modules/%s#egg=%s-%s' % (
name[8:], name, version))
+local_version = []
+for build in ['CI_BUILD_NUMBER', 'CI_JOB_NUMBER', 'CI_JOB_ID']:
+ if os.environ.get(build):
+ local_version.append(os.environ[build])
+if local_version:
+ version += '+' + '.'.join(local_version)
requires = ['simpleeval', 'python-sql >= 0.4']
for dep in info.get('depends', []):