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

feat: add :flat target for flattened packages #132

Merged
merged 1 commit into from
Dec 10, 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
3 changes: 1 addition & 2 deletions .bcr/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ bcr_test_module:
module_path: "e2e/smoke"
matrix:
platform: ["debian10", "macos", "ubuntu2004"]
# last_rc is to get latest 8.x release. Replace with 8.x when available.
bazel: [7.x, last_rc]
bazel: [7.x, 8.x]
tasks:
run_tests:
name: "Run test module"
Expand Down
19 changes: 7 additions & 12 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ use_repo(bazel_lib_toolchains, "yq_windows_amd64")
bazel_dep(name = "gazelle", version = "0.34.0", dev_dependency = True, repo_name = "bazel_gazelle")
bazel_dep(name = "bazel_skylib_gazelle_plugin", version = "1.5.0", dev_dependency = True)
bazel_dep(name = "buildifier_prebuilt", version = "6.1.2", dev_dependency = True)
bazel_dep(name = "rules_oci", version = "2.0.0-rc0", dev_dependency = True)
bazel_dep(name = "rules_oci", version = "2.0.0", dev_dependency = True)
bazel_dep(name = "container_structure_test", version = "1.16.0", dev_dependency = True)
bazel_dep(name = "bazel_features", version = "1.20.0", dev_dependency = True)

Expand Down Expand Up @@ -71,19 +71,14 @@ apt.install(
manifest = "//examples/debian_snapshot:bullseye_nolock.yaml",
nolock = True,
)
apt.install(
name = "apt_security",
manifest = "//examples/debian_snapshot_security:security.yaml",
nolock = True,
)
apt.install(
name = "shared_dependencies",
lock = "//examples/debian_shared_dependencies:bullseye.lock.json",
manifest = "//examples/debian_shared_dependencies:bullseye.yaml",
)
apt.install(
name = "noble",
lock = "//examples/ubuntu_snapshot:noble.lock.json",
manifest = "//examples/ubuntu_snapshot:noble.yaml",
)
use_repo(apt, "apt_security", "apt_security_resolve", "bullseye", "bullseye_nolock", "noble", "shared_dependencies")
apt.install(
name = "resolution_test",
manifest = "apt/tests/resolution/security.yaml",
nolock = True,
)
use_repo(apt, "bullseye", "bullseye_nolock", "noble", "resolution_test", "resolution_test_resolve")
3 changes: 2 additions & 1 deletion apt/private/apt_deb_repository.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ def _fetch_package_index(rctx, url, dist, comp, arch, integrity):
# --keep -> keep the original file (Bazel might be still committing the output to the cache)
# --force -> overwrite the output if it exists
# --decompress -> decompress
# Order of these matter, we want to try the one that is most likely first.
supported_extensions = {
"": ["true"],
".xz": ["xz", "--decompress", "--keep", "--force"],
".gz": ["gzip", "--decompress", "--keep", "--force"],
".bz2": ["bzip2", "--decompress", "--keep", "--force"],
"": ["true"],
}

failed_attempts = []
Expand Down
10 changes: 10 additions & 0 deletions apt/private/deb_translate_lock.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ _ROOT_BUILD_TMPL = """\
"Generated by rules_distroless. DO NOT EDIT."
load("@rules_distroless//apt:defs.bzl", "dpkg_status")
load("@rules_distroless//distroless:defs.bzl", "flatten")
exports_files(['packages.bzl'])
Expand Down Expand Up @@ -105,6 +106,15 @@ filegroup(
],
visibility = ["//visibility:public"],
)
flatten(
name = "flat",
tars = [
"{target_name}",
],
deduplicate = True,
visibility = ["//visibility:public"],
)
"""

def _deb_translate_lock_impl(rctx):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ load("@aspect_bazel_lib//lib:testing.bzl", "assert_contains")
jq(
name = "pick_libuuid_version",
srcs = [
"@apt_security_resolve//:lockfile",
"@resolution_test_resolve//:lockfile",
],
args = ["-rj"],
filter = '.packages | map(select(.name == "libuuid1")) | .[0].version',
Expand Down
6 changes: 4 additions & 2 deletions distroless/private/flatten.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ def _flatten_impl(ctx):

args = ctx.actions.args()
args.add(bsdtar.tarinfo.binary)
args.add(output if ctx.attr.deduplicate else "-")
args.add(str(ctx.attr.deduplicate))
args.add_all(tar_lib.DEFAULT_ARGS)
args.add("--create")
tar_lib.common.add_compression_args(ctx.attr.compress, args)
tar_lib.add_default_compression_args(ctx.attr.compress, args)
args.add("--file", "-" if ctx.attr.deduplicate else output)
args.add("--file", output)
args.add_all(ctx.files.tars, format_each = "@%s")

ctx.actions.run(
Expand All @@ -26,6 +26,8 @@ def _flatten_impl(ctx):
outputs = [output],
tools = bsdtar.default.files,
arguments = [args],
mnemonic = "Flatten",
progress_message = "Flattening %{label}}",
)

return [
Expand Down
8 changes: 4 additions & 4 deletions distroless/private/flatten.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
set -o pipefail -o errexit

bsdtar="$1";
output="$2";
deduplicate="$2";
shift 2;

# Deduplication requested, use this complex pipeline to deduplicate.
if [[ "$output" != "-" ]]; then
if [[ "$deduplicate" == "True" ]]; then

mtree=$(mktemp)

Expand All @@ -33,7 +33,7 @@ if [[ "$output" != "-" ]]; then
# number of occurrences of each path, and the second pass determines whether each entry is the final (or only)
# occurrence of that path.

$bsdtar --confirmation "$@" > $output 2< <(awk '{
$bsdtar --confirmation "$@" 2< <(awk '{
count[$1]++;
files[NR] = $1
}
Expand All @@ -52,5 +52,5 @@ if [[ "$output" != "-" ]]; then
rm "$mtree"
else
# No deduplication, business as usual
$bsdtar $@
$bsdtar "$@"
fi
116 changes: 0 additions & 116 deletions examples/debian_shared_dependencies/BUILD.bazel

This file was deleted.

Loading
Loading