Skip to content

Commit

Permalink
hermetic: rely on "podman pull" that imports the bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
praiskup committed Oct 31, 2024
1 parent d5e1070 commit 8d9fe92
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 18 deletions.
5 changes: 0 additions & 5 deletions mock/py/mockbuild/buildroot.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,11 +277,6 @@ def _fallback(message):
self.chroot_image, podman.image_id)
podman.tag_image()

if self.is_bootstrap and self.config["hermetic_build"]:
tarball = os.path.join(self.config["offline_local_repository"],
"bootstrap.tar")
podman.import_tarball(tarball)

digest_expected = self.config.get("image_assert_digest", None)
if digest_expected:
getLog().info("Checking image digest: %s",
Expand Down
8 changes: 4 additions & 4 deletions mock/py/mockbuild/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -773,17 +773,17 @@ def process_hermetic_build_config(cmdline_opts, config_opts):
f"The {repo_reference} doesn't seem to be a valid "
"offline RPM repository (RPM metadata not found)")

# Use the offline image for bootstrapping.
bootstrap_tarball = os.path.join(final_offline_repo, "bootstrap.tar")
config_opts["bootstrap_image"] = f"oci-archive:{bootstrap_tarball}"

config_opts["offline_local_repository"] = final_offline_repo

# We install all the packages at once (for now?). We could inherit the
# command from the previous "online" run, but it often employs a group
# installation command - and we have no groups in the offline repo.
config_opts["chroot_setup_cmd"] = "install *"

# The image needs to be prepared on host. Build-systems implementing SLSA 3
# should make sure the config_opts["bootstrap_image"] is already downloaded.
config_opts["bootstrap_image_skip_pull"] = True

# With hermetic builds, we always assert that we are reproducing the build
# with the same image.
config_opts["bootstrap_image_assert_digest"] = data["bootstrap"]["image_digest"]
Expand Down
9 changes: 0 additions & 9 deletions mock/py/mockbuild/podman.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

import backoff
from mockbuild.trace_decorator import getLog, traceLog
from mockbuild import util


class PodmanError(Exception):
Expand Down Expand Up @@ -97,14 +96,6 @@ def tag_image(self):
subprocess.run(cmd, env=self.buildroot.env, stdout=subprocess.PIPE,
stderr=subprocess.PIPE, check=True)

def import_tarball(self, tarball):
"""
Import tarball using podman into the local database.
"""
getLog().info("Loading container image from %s", tarball)
cmd = [self.podman_binary, "load", "-i", tarball]
util.do_with_status(cmd, env=self.buildroot.env)

def retry_image_pull(self, max_time):
""" Try pulling the image multiple times """
@backoff.on_predicate(backoff.expo, lambda x: not x,
Expand Down

0 comments on commit 8d9fe92

Please sign in to comment.