Skip to content
Snippets Groups Projects
Commit d147899a authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[build] Implements twine-check on self (closes #7)

parent 2836c0c0
No related branches found
No related tags found
No related merge requests found
Pipeline #26191 passed
...@@ -57,6 +57,11 @@ build_linux_36: ...@@ -57,6 +57,11 @@ build_linux_36:
variables: variables:
PYTHON_VERSION: "3.6" PYTHON_VERSION: "3.6"
BUILD_EGG: "true" BUILD_EGG: "true"
script:
- python3 ./bob/devtools/bootstrap.py -vv build
- source ${CONDA_ROOT}/etc/profile.d/conda.sh
- conda activate base
- python3 ./bob/devtools/build.py -vv --twine-check
artifacts: artifacts:
expire_in: 1 week expire_in: 1 week
paths: paths:
......
...@@ -395,6 +395,7 @@ if __name__ == '__main__': ...@@ -395,6 +395,7 @@ if __name__ == '__main__':
'python', 'python',
'conda=%s' % conda_version, 'conda=%s' % conda_version,
'conda-build=%s' % conda_build_version, 'conda-build=%s' % conda_build_version,
'twine', #required for checking readme of python (zip) distro
]) ])
elif args.command == 'local': elif args.command == 'local':
...@@ -404,6 +405,7 @@ if __name__ == '__main__': ...@@ -404,6 +405,7 @@ if __name__ == '__main__':
'python', 'python',
'conda=%s' % conda_version, 'conda=%s' % conda_version,
'conda-build=%s' % conda_build_version, 'conda-build=%s' % conda_build_version,
'twine', #required for checking readme of python (zip) distro
]) ])
conda_bld_path = os.path.join(args.conda_root, 'conda-bld') conda_bld_path = os.path.join(args.conda_root, 'conda-bld')
run_cmdline([conda_bin, 'index', conda_bld_path]) run_cmdline([conda_bin, 'index', conda_bld_path])
......
...@@ -433,6 +433,9 @@ if __name__ == '__main__': ...@@ -433,6 +433,9 @@ if __name__ == '__main__':
parser.add_argument('-p', '--python-version', parser.add_argument('-p', '--python-version',
default=os.environ.get('PYTHON_VERSION', '%d.%d' % sys.version_info[:2]), default=os.environ.get('PYTHON_VERSION', '%d.%d' % sys.version_info[:2]),
help='The version of python to build for [default: %(default)s]') help='The version of python to build for [default: %(default)s]')
parser.add_argument('-T', '--twine-check', action='store_true',
default=False, help='If set, then performs the equivalent of a ' \
'"twine check" on the generated python package (zip file)')
parser.add_argument('--verbose', '-v', action='count', default=0, parser.add_argument('--verbose', '-v', action='count', default=0,
help='Increases the verbosity level. We always prints error and ' \ help='Increases the verbosity level. We always prints error and ' \
'critical messages. Use a single ``-v`` to enable warnings, ' \ 'critical messages. Use a single ``-v`` to enable warnings, ' \
...@@ -497,4 +500,17 @@ if __name__ == '__main__': ...@@ -497,4 +500,17 @@ if __name__ == '__main__':
conda_build.api.build(os.path.join(args.work_dir, 'conda'), conda_build.api.build(os.path.join(args.work_dir, 'conda'),
config=conda_config) config=conda_config)
# checks if long_description of python package renders fine
if args.twine_check:
from twine.commands.check import check
package = glob.glob('dist/*.zip')
failed = check(package)
if failed:
raise RuntimeError('long_description of package %s cannot be ' \
'correctly parsed (twine check returned a failure)' % \
(package[0],))
else:
logger.info('Package %s\'s long_description: OK', package[0])
git_clean_build(bootstrap.run_cmdline, verbose=(args.verbose >= 2)) git_clean_build(bootstrap.run_cmdline, verbose=(args.verbose >= 2))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment