Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce mkosi-sandbox and stop using subuids for image builds #2956

Merged
merged 2 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
.cache
.mkosi.1
.mkosi-initrd.1
.mkosi-sandbox.1
.mypy_cache/
.project
.pydevproject
Expand Down
1 change: 0 additions & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ runs:
sudo apt-get update
sudo apt-get install --assume-yes --no-install-recommends \
archlinux-keyring \
bubblewrap \
debian-archive-keyring \
dnf \
makepkg \
Expand Down
4 changes: 2 additions & 2 deletions kernel-install/50-mkosi.install
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ from typing import Optional

from mkosi import identify_cpu
from mkosi.archive import make_cpio
from mkosi.config import OutputFormat, __version__
from mkosi.config import OutputFormat
from mkosi.log import die, log_setup
from mkosi.run import run, uncaught_exception_handler
from mkosi.sandbox import __version__, umask
from mkosi.types import PathString
from mkosi.util import umask


@dataclasses.dataclass(frozen=True)
Expand Down
Loading
Loading