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

[build] Add log message when re-indexing

parent 3307b82e
No related branches found
No related tags found
1 merge request!46Force re-indexing of locally built packages if "local" channel is present
Pipeline #29417 passed
...@@ -526,7 +526,9 @@ def base_build(bootstrap, server, intranet, use_local, group, recipe_dir, ...@@ -526,7 +526,9 @@ def base_build(bootstrap, server, intranet, use_local, group, recipe_dir,
if use_local: if use_local:
prefix = get_env_directory(os.environ['CONDA_EXE'], 'base') prefix = get_env_directory(os.environ['CONDA_EXE'], 'base')
conda_bld = os.path.join(prefix, 'conda-bld') conda_bld = os.path.join(prefix, 'conda-bld')
if os.path.exists(conda_bld): conda_build.api.update_index(conda_bld) if os.path.exists(conda_bld):
logger.info('Re-indexing %s', conda_bld)
conda_build.api.update_index(conda_bld)
logger.info('Merging conda configuration files...') logger.info('Merging conda configuration files...')
if python_version not in ('noarch', None): if python_version not in ('noarch', None):
......
...@@ -121,7 +121,9 @@ def build(recipe_dir, python, condarc, config, no_test, append_file, ...@@ -121,7 +121,9 @@ def build(recipe_dir, python, condarc, config, no_test, append_file,
# updates the local index to get fresh packages if required # updates the local index to get fresh packages if required
if use_local: if use_local:
conda_bld = os.path.join(prefix, 'conda-bld') conda_bld = os.path.join(prefix, 'conda-bld')
if os.path.exists(conda_bld): conda_build.api.update_index(conda_bld) if os.path.exists(conda_bld):
logger.info('Re-indexing %s', conda_bld)
conda_build.api.update_index(conda_bld)
conda_config = make_conda_config(config, python, append_file, conda_config = make_conda_config(config, python, append_file,
condarc_options) condarc_options)
......
...@@ -107,7 +107,9 @@ def test(package, condarc, config, append_file, server, group, private, stable, ...@@ -107,7 +107,9 @@ def test(package, condarc, config, append_file, server, group, private, stable,
if use_local and not dry_run: if use_local and not dry_run:
prefix = get_env_directory(os.environ['CONDA_EXE'], 'base') prefix = get_env_directory(os.environ['CONDA_EXE'], 'base')
conda_bld = os.path.join(prefix, 'conda-bld') conda_bld = os.path.join(prefix, 'conda-bld')
if os.path.exists(conda_bld): conda_build.api.update_index(conda_bld) if os.path.exists(conda_bld):
logger.info('Re-indexing %s', conda_bld)
conda_build.api.update_index(conda_bld)
conda_config = make_conda_config(config, None, append_file, conda_config = make_conda_config(config, None, append_file,
condarc_options) 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