Skip to content
Snippets Groups Projects

Draft: esd-spack-installation: added abstract methods for spack manager and added...

Closed Adrian Ciu requested to merge esd-spack-installation into esd
Compare and
1 file
+ 29
2
Compare changes
  • Side-by-side
  • Inline
+ 29
2
import logging
import shutil
import subprocess
from pathlib import Path
def clean_up(dirs: list[str], logging):
def clean_up(dirs: list[str], logging, ignore_errors=True):
"""
All the folders from the list dirs are removed with all the content in them
"""
@@ -10,6 +12,31 @@ def clean_up(dirs: list[str], logging):
cleanup_dir = Path(cleanup_dir).resolve()
if cleanup_dir.exists():
logging.info(f"Removing {cleanup_dir}")
shutil.rmtree(Path(cleanup_dir))
try:
shutil.rmtree(Path(cleanup_dir))
except OSError as e:
logging.error(f"Failed to remove {cleanup_dir}: {e}")
if not ignore_errors:
raise e
else:
logging.info(f"{cleanup_dir} does not exist")
def run_command(*args, logger: None, **kwargs):
if logger is None:
logger = logging.getLogger(__name__)
logger.debug(f'{args}')
return subprocess.run(args, **kwargs)
def git_clone_repo(repo_name: str, dir: Path, git_path: str, logger: logging):
if not dir.exists():
run_command(
"git", "clone", "--depth", "1",
"-c", "advice.detachedHead=false",
"-c", "feature.manyFiles=true",
git_path, dir
, check=True, logger=logger)
logger.debug(f'Cloned repository {repo_name}')
else:
logger.debug(f'Repository {repo_name} already cloned.')