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

[scripts][ci] Be more verbose about what recipe it is currently working on

parent d2d9a061
No related branches found
No related tags found
No related merge requests found
Pipeline #26914 passed
......@@ -345,9 +345,12 @@ def base_build(order, dry_run):
from .. import bootstrap
for recipe in recipes:
for order, recipe in enumerate(recipes):
click.echo('\n' + (60*'='))
click.echo('Building "%s" (%d/%d)' % (recipe, order+1, len(recipes)))
click.echo((60*'=') + '\n')
if not os.path.exists(os.path.join(recipe, 'meta.yaml')):
# ignore - not a conda package
logger.info('Ignoring directory "%s" - no meta.yaml found' % recipe)
continue
_build(bootstrap, SERVER, True, recipe, CONDA_BUILD_CONFIG,
os.environ['PYTHON_VERSION'], condarc_options)
......
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