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

[scripts][ci] Prepare for a possible build/rebuild switch for nightlies

parent ac508c8a
No related branches found
No related tags found
No related merge requests found
Pipeline #27921 canceled
...@@ -514,6 +514,7 @@ def nightlies(ctx, order, dry_run): ...@@ -514,6 +514,7 @@ def nightlies(ctx, order, dry_run):
python=os.environ['PYTHON_VERSION'], #python version python=os.environ['PYTHON_VERSION'], #python version
condarc=None, #custom build configuration condarc=None, #custom build configuration
config=CONDA_BUILD_CONFIG, config=CONDA_BUILD_CONFIG,
#no_test=False,
append_file=CONDA_RECIPE_APPEND, append_file=CONDA_RECIPE_APPEND,
server=SERVER, server=SERVER,
group=group, group=group,
...@@ -529,9 +530,9 @@ def nightlies(ctx, order, dry_run): ...@@ -529,9 +530,9 @@ def nightlies(ctx, order, dry_run):
# branch # branch
# n.b.: can only arrive here if dry_run was ``False`` (no need to check # n.b.: can only arrive here if dry_run was ``False`` (no need to check
# again) # again)
if 'BDT_REBUILD' in os.environ and is_master: if 'BDT_BUILD' in os.environ and is_master:
tarball = os.environ['BDT_REBUILD'] tarball = os.environ['BDT_BUILD']
del os.environ['BDT_REBUILD'] del os.environ['BDT_BUILD']
deploy_conda_package(tarball, arch=None, stable=stable, deploy_conda_package(tarball, arch=None, stable=stable,
public=(not private), username=os.environ['DOCUSER'], public=(not private), username=os.environ['DOCUSER'],
password=os.environ['DOCPASS'], overwrite=False, dry_run=dry_run) password=os.environ['DOCPASS'], overwrite=False, dry_run=dry_run)
......
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