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

[scripts][ci] Improve help message for base-build

parent 6e6b148e
No related branches found
No related tags found
1 merge request!15Multi python base
Pipeline #26918 passed
...@@ -303,10 +303,17 @@ def pypi(package, dry_run): ...@@ -303,10 +303,17 @@ def pypi(package, dry_run):
@ci.command(epilog=''' @ci.command(epilog='''
Examples: Examples:
1. Builds a list of packages (base dependencies) defined in a text file 1. Builds a list of non-python packages (base dependencies) defined in a text
file:
$ bdt ci base-build -vv order.txt $ bdt ci base-build -vv order.txt
2. Builds a list of python-dependent packages (base dependencies) defined in
a text file, for python 3.6 and 3.7:
$ bdt ci base-build -vv --python=3.6 --python=3.7 order.txt
''') ''')
@click.argument('order', required=True, type=click.Path(file_okay=True, @click.argument('order', required=True, type=click.Path(file_okay=True,
dir_okay=False, exists=True), nargs=1) dir_okay=False, exists=True), nargs=1)
......
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