Fix: circular dependency between bootstrap and projects cache
[deliverable/lttng-ivc.git] / lttng_ivc / bootstrap.py
index ec44f2b4f69a4e419faac55af1dc1147c07d642c..df851450a0aa121ab1f2429185b53ec3cafa47af 100644 (file)
@@ -10,7 +10,6 @@ dir_path = os.path.dirname(os.path.realpath(__file__))
 sys.path.insert(0, os.path.join(dir_path, ".."))
 
 import settings as Settings
-import utils.ProjectFactory as ProjectFactory
 
 def is_ref_branch(repo, ref):
     try:
@@ -162,8 +161,3 @@ for project, markers in config.items():
 
 with open(Settings.run_configuration_file, 'w') as run_configuration:
     yaml.dump(runnable_markers, run_configuration, default_flow_style=False)
-
-# Prebuild all projects
-for key in runnable_markers:
-    logger_git.info('Preparing and building {}'.format(key))
-    ProjectFactory.get_precook(key)
This page took 0.022866 seconds and 5 git commands to generate.