Execute any custom_build steps from the repo root
(self, repo_dict)
| 572 | command_output(shlex.split(p), self.repo_dir) |
| 573 | |
| 574 | def CustomBuild(self, repo_dict): |
| 575 | """Execute any custom_build steps from the repo root""" |
| 576 | for p in self.custom_build: |
| 577 | cmd = self.CustomPreProcess(p, repo_dict) |
| 578 | command_output(shlex.split(cmd), self.repo_dir) |
| 579 | |
| 580 | def CMakeConfig(self, repos): |
| 581 | """Build CMake command for the configuration phase and execute it""" |
no test coverage detected