Given the arch name, returns the directory where it will be built. This returns a different directory depending on what alternative or optional dependencies are being built.
(self, arch)
| 348 | return [recipe for recipe in recipes if recipe in self.opt_depends] |
| 349 | |
| 350 | def get_build_container_dir(self, arch): |
| 351 | '''Given the arch name, returns the directory where it will be |
| 352 | built. |
| 353 | |
| 354 | This returns a different directory depending on what |
| 355 | alternative or optional dependencies are being built. |
| 356 | ''' |
| 357 | dir_name = self.get_dir_name() |
| 358 | return join(self.ctx.build_dir, 'other_builds', |
| 359 | dir_name, '{}__ndk_target_{}'.format(arch, self.ctx.ndk_api)) |
| 360 | |
| 361 | def get_dir_name(self): |
| 362 | choices = self.check_recipe_choices() |
no test coverage detected