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

[scripts][ci] Use build() for nightlies instead of rebuild() to force recompilation of all packages

parent 552fea3c
No related branches found
No related tags found
No related merge requests found
Pipeline #27922 passed
...@@ -481,7 +481,7 @@ def nightlies(ctx, order, dry_run): ...@@ -481,7 +481,7 @@ def nightlies(ctx, order, dry_run):
token = os.environ['CI_JOB_TOKEN'] token = os.environ['CI_JOB_TOKEN']
import git import git
from .rebuild import rebuild from .build import build
from urllib.request import urlopen from urllib.request import urlopen
# loaded all recipes, now cycle through them implementing what is described # loaded all recipes, now cycle through them implementing what is described
...@@ -509,12 +509,12 @@ def nightlies(ctx, order, dry_run): ...@@ -509,12 +509,12 @@ def nightlies(ctx, order, dry_run):
private = urlopen('https://gitlab.idiap.ch/%s' % package).getcode() != 200 private = urlopen('https://gitlab.idiap.ch/%s' % package).getcode() != 200
stable = 'STABLE' in os.environ stable = 'STABLE' in os.environ
ctx.invoke(rebuild, ctx.invoke(build,
recipe_dir=[os.path.join(clone_to, 'conda')], recipe_dir=[os.path.join(clone_to, 'conda')],
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, no_test=False,
append_file=CONDA_RECIPE_APPEND, append_file=CONDA_RECIPE_APPEND,
server=SERVER, server=SERVER,
group=group, group=group,
......
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