From e98012f0f1d09df82e566fded64d89fcef30b8ff Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Thu, 14 Feb 2019 09:26:52 +0100 Subject: [PATCH] [scripts][ci] Be more verbose about what recipe it is currently working on --- bob/devtools/scripts/ci.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bob/devtools/scripts/ci.py b/bob/devtools/scripts/ci.py index 23128785..de5aea19 100644 --- a/bob/devtools/scripts/ci.py +++ b/bob/devtools/scripts/ci.py @@ -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) -- GitLab