Add a run of build_externals to the initialization of a drone when the scheduler is first started.
Signed-off-by: Scott Zawalski <[email protected]> --- autotest/scheduler/drone_utility.py 2010-05-11 10:38:40.000000000 -0700 +++ autotest/scheduler/drone_utility.py 2010-05-11 10:38:40.000000000 -0700 @@ -61,6 +61,9 @@ if os.path.exists(temporary_directory): shutil.rmtree(temporary_directory) self._ensure_directory_exists(temporary_directory) + build_extern_cmd = os.path.join(results_dir, + '../utils/build_externals.py') + utils.run(build_extern_cmd) def _warn(self, warning): _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
