Esempio n. 1
0
 async def _cook_recipe_step_with_prompt(self, recipe, step, count):
     try:
         await self._cook_recipe_step(recipe, step, count)
     except BuildStepError as be:
         if not self.interactive:
             raise be
         print()
         msg = be.msg
         msg += _("Select an action to proceed:")
         action = shell.prompt_multiple(msg, RecoveryActions())
         if action == RecoveryActions.SHELL:
             environ = recipe.get_recipe_env()
             if recipe.use_system_libs:
                 add_system_libs(recipe.config, environ, environ)
             shell.enter_build_environment(self.config.target_platform,
                                           be.arch,
                                           recipe.get_for_arch(
                                               be.arch, 'build_dir'),
                                           env=environ)
             raise be
         elif action == RecoveryActions.RETRY_ALL:
             shutil.rmtree(recipe.get_for_arch(be.arch, 'build_dir'))
             self.cookbook.reset_recipe_status(recipe.name)
             # propagate up to the task manager to retry the recipe entirely
             raise RetryRecipeError()
         elif action == RecoveryActions.RETRY_STEP:
             await self._cook_recipe_step(recipe, step, count)
         elif action == RecoveryActions.SKIP:
             # propagate up to the task manager to retry the recipe entirely
             raise SkipRecipeError()
         elif action == RecoveryActions.ABORT:
             raise AbortedError()
Esempio n. 2
0
    def run(self, config, args):
        # Load the cookbook which will parse all recipes and update config.bash_completions
        cookbook = CookBook(config)
        env = config.env.copy()
        if args.use_system_libs:
            add_system_libs(config, env, config.env)

        shell.enter_build_environment(config.target_platform,
                config.target_arch, sourcedir=None, env=env,
                bash_completions=config.bash_completions)
Esempio n. 3
0
    def start_cooking(self):
        '''
        Cooks the recipe and all its dependencies
        '''
        recipes = [self.cookbook.get_recipe(x) for x in self.recipes]

        if self.no_deps:
            ordered_recipes = recipes
        else:
            ordered_recipes = []
            for recipe in self.recipes:
                deps = self.cookbook.list_recipe_deps(recipe)
                # remove recipes already scheduled to be built
                deps = [x for x in deps if x not in ordered_recipes]
                ordered_recipes.extend(deps)

        if self.deps_only:
            ordered_recipes = [x for x in ordered_recipes if x not in recipes]

        m.message(
            _("Building the following recipes: %s") %
            ' '.join([x.name for x in ordered_recipes]))

        i = 1
        self._static_libraries_built = []
        for recipe in ordered_recipes:
            try:
                self._cook_recipe(recipe, i, len(ordered_recipes))
            except BuildStepError as be:
                if not self.interactive:
                    raise be
                msg = be.msg
                msg += _("Select an action to proceed:")
                action = shell.prompt_multiple(msg, RecoveryActions())
                if action == RecoveryActions.SHELL:
                    shell.enter_build_environment(self.config.target_platform,
                                                  be.arch,
                                                  recipe.get_for_arch(
                                                      be.arch, 'build_dir'),
                                                  env=recipe.config.env)
                    raise be
                elif action == RecoveryActions.RETRY_ALL:
                    shutil.rmtree(recipe.get_for_arch(be.arch, 'build_dir'))
                    self.cookbook.reset_recipe_status(recipe.name)
                    self._cook_recipe(recipe, i, len(ordered_recipes))
                elif action == RecoveryActions.RETRY_STEP:
                    self._cook_recipe(recipe, i, len(ordered_recipes))
                elif action == RecoveryActions.SKIP:
                    i += 1
                    continue
                elif action == RecoveryActions.ABORT:
                    raise AbortedError()
            i += 1
Esempio n. 4
0
    def run(self, config, args):
        # Load the cookbook which will parse all recipes and update config.bash_completions
        # We don't care about errors while loading recipes, which can happen
        # just because of the current configuration not matching what the
        # recipe supports
        cookbook = CookBook(config, skip_errors=True)
        env = config.env.copy()
        if args.use_system_libs:
            add_system_libs(config, env, config.env)

        shell.enter_build_environment(config.target_platform,
                config.target_arch, sourcedir=None, env=env,
                bash_completions=config.bash_completions)
Esempio n. 5
0
    def start_cooking(self):
        '''
        Cooks the recipe and all its dependencies
        '''
        if self.no_deps:
            ordered_recipes = [self.cookbook.get_recipe(x) for x in
                               self.recipes]
        else:
            ordered_recipes = []
            for recipe in self.recipes:
                recipes = self.cookbook.list_recipe_deps(recipe)
                # remove recipes already scheduled to be built
                recipes = [x for x in recipes if x not in ordered_recipes]
                ordered_recipes.extend(recipes)
        m.message(_("Building the following recipes: %s") %
                  ' '.join([x.name for x in ordered_recipes]))

        i = 1
        for recipe in ordered_recipes:
            try:
                self._cook_recipe(recipe, i, len(ordered_recipes))
            except BuildStepError as be:
                if not self.interactive:
                    raise be
                msg = be.msg
                msg += _("Select an action to proceed:")
                action = shell.prompt_multiple(msg, RecoveryActions())
                if action == RecoveryActions.SHELL:
                    shell.enter_build_environment(self.config.target_platform,
                            self.config.target_arch, recipe.build_dir)
                    break
                elif action == RecoveryActions.RETRY_ALL:
                    shutil.rmtree(recipe.build_dir)
                    self.cookbook.reset_recipe_status(recipe.name)
                    self._cook_recipe(recipe, i, len(ordered_recipes))
                elif action == RecoveryActions.RETRY_STEP:
                    self._cook_recipe(recipe, i, len(ordered_recipes))
                elif action == RecoveryActions.SKIP:
                    continue
                elif action == RecoveryActions.ABORT:
                    raise AbortedError()
            i += 1
Esempio n. 6
0
 def run(self, config, args):
     if args.use_system_libs:
         add_system_libs(config, os.environ)
     shell.enter_build_environment(config.target_platform,
                                   config.target_arch)
Esempio n. 7
0
 def run(self, config, args):
     shell.enter_build_environment(config.target_platform,
             config.target_arch)
Esempio n. 8
0
 def run(self, config, args):
     if args.use_system_libs:
         add_system_libs(config, os.environ)
     shell.enter_build_environment(config.target_platform,
             config.target_arch)