X-Git-Url: http://git.efficios.com/?p=deliverable%2Flttng-ivc.git;a=blobdiff_plain;f=lttng_ivc%2Fbootstrap.py;fp=lttng_ivc%2Fbootstrap.py;h=df851450a0aa121ab1f2429185b53ec3cafa47af;hp=ec44f2b4f69a4e419faac55af1dc1147c07d642c;hb=3ac73e85efe6a048f3562fa6705a16afe4a313ab;hpb=d93d67ca0c9388737cf6fa41bff9e803d096d0fa diff --git a/lttng_ivc/bootstrap.py b/lttng_ivc/bootstrap.py index ec44f2b..df85145 100644 --- a/lttng_ivc/bootstrap.py +++ b/lttng_ivc/bootstrap.py @@ -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)