From 757aaffbd1bdc7d1df521d814c0aee77125516ee Mon Sep 17 00:00:00 2001 From: Tiago Freitas Pereira <tiagofrepereira@gmail.com> Date: Fri, 11 Oct 2019 15:26:04 +0200 Subject: [PATCH] Implemented hack to make nightlies work Implemented hack to make nighlies work --- bob/devtools/scripts/build.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/bob/devtools/scripts/build.py b/bob/devtools/scripts/build.py index 193b8e59..fb69114a 100644 --- a/bob/devtools/scripts/build.py +++ b/bob/devtools/scripts/build.py @@ -177,6 +177,31 @@ def build( group, ) + #### HACK to avoid ripgrep ignoring bin/ directories in our checkouts + Â project_dir = os.path.dirname(recipe_dir[0]) +Â import shutil + Â if os.path.exists(os.path.join(project_dir, '.gitignore')): +Â Â Â logger.warn('Removing ".gitignore" to overcome issues with ripgrep') +Â Â Â Â logger.warn('See https://gitlab.idiap.ch/bob/bob.devtools/merge_requests/112') +Â Â Â os.unlink(os.path.join(project_dir, '.gitignore')) + Â #### END OF HACK + +Â #### HACK that avoids this issue: https://github.com/conda/conda-build/issues/3767 + Â if os.path.exists(os.path.join(project_dir,'LICENSE')) and os.path.exists(recipe_dir[0]): +Â Â Â Â logger.warn('Creating symlink in `./conda` to avoid issue with conda build (https://github.com/conda/conda-build/issues/3767)') +Â Â Â Â logger.warn('Replacing ../LICENSE to LICENSE (https://github.com/conda/conda-build/issues/3767)') +Â Â Â Â pwd = project_dir +Â Â Â Â +Â Â Â Â # WE NEED TO COPY. FOR SOME REASON SYMLINK DOESN'T WORK IN THIS CASE +Â Â Â Â shutil.copyfile(f"{pwd}/LICENSE", f"{pwd}/conda/LICENSE") +Â Â Â Â if(os.path.exists(os.path.join(project_dir,'COPYING'))): +Â Â Â Â Â Â shutil.copyfile(f"{pwd}/COPYING", f"{pwd}/conda/COPYING") + Â Â Â Â recipe = open(os.path.join(recipe_dir[0],"meta.yaml")).readlines() +Â Â Â Â recipe = [l.replace("../COPYING","COPYING").replace("../LICENSE","LICENSE") for l in recipe] +Â Â Â Â open(os.path.join(recipe_dir[0],"meta.yaml"), "wt").write(''.join(recipe)) + +Â Â #### END OF HACK + # get potential channel upload and other auxiliary channels channels = get_channels( public=(not private), -- GitLab