(self, component)
| 633 | return ["ADD cephadm /usr/sbin/cephadm"] |
| 634 | |
| 635 | def _pybind_job(self, component): |
| 636 | sodir = self._ctx.build_dir / "lib/cython_modules/lib.3" |
| 637 | dst = self._workdir / "cythonlib" |
| 638 | dst.mkdir(parents=True, exist_ok=True) |
| 639 | for pth in sodir.iterdir(): |
| 640 | if pth.match("*.cpython-3*.so"): |
| 641 | self._copy_binary(pth, dst / pth.name) |
| 642 | return [f"ADD cythonlib {self._py_site_packages()}"] |
| 643 | |
| 644 | def _core_job(self, component): |
| 645 | # [Quoth the original script]: |
nothing calls this directly
no test coverage detected