mirror of
https://gitlab.postmarketos.org/postmarketOS/pmbootstrap.git
synced 2025-07-24 13:05:09 +03:00
treewide: split chroots from workdir
Introduce a new "cache" subdirectory in the pmbootstrap workdir, all the cache and config bits go in here, anything that needs to be accessible from inside a chroot. The whole dir is then bind-mounted into the chroot as /cache with appropriate symlinks. This dir is in the config as config.cache. In addition, all the cache_* and other config dirs are renamed to be closer to the names of the equivalent dirs in the chroot (e.g. abuild-config) and to avoid redundant naming since they are now under a "cache" dir. Signed-off-by: Casey Connolly <kcxt@postmarketos.org>
This commit is contained in:
parent
1560a3f221
commit
9f8edf539d
34 changed files with 130 additions and 127 deletions
|
@ -134,7 +134,7 @@ def finish(
|
|||
) -> None:
|
||||
"""Various finishing tasks that need to be done after a build."""
|
||||
# Verify output file
|
||||
out_dir = get_context().config.work / "packages" / channel
|
||||
out_dir = get_context().config.cache / "packages" / channel
|
||||
if not (out_dir / output).exists():
|
||||
raise RuntimeError(f"Package not found after build: {(out_dir / output)}")
|
||||
|
||||
|
@ -522,7 +522,7 @@ def packages(
|
|||
f"A binary package for {name} has a newer version ({index_data.version})"
|
||||
f" than the source ({pkgver}-{apkbuild['pkgrel']}). Please ensure your pmaports branch is up"
|
||||
" to date and that you don't have a newer version of the package in your local"
|
||||
f" binary repo ({context.config.work / 'packages' / channel / pkg_arch})."
|
||||
f" binary repo ({context.config.cache / 'packages' / channel / pkg_arch})."
|
||||
)
|
||||
build_queue.append(
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue