Skip to content
Open
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
4 changes: 1 addition & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ jobs:
]
exclude: |
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd like to just drop the uses: line 20 here, and make a much simpler GHA like other rulesets we've visited recently

[
{"folder": ".", "bzlmodEnabled": false},
{"folder": "docs", "bzlmodEnabled": false},
{"folder": "docs", "bazelVersion": "7.0.0"},
{"folder": "e2e/smoke", "bzlmodEnabled": false},
{"os": "windows-latest"},
{"bzlmodEnabled": false},
]
File renamed without changes.
1 change: 0 additions & 1 deletion apt/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ bzl_library(

bzl_library(
name = "apt",
srcs = ["apt.bzl"],
visibility = ["//visibility:public"],
deps = [
"//apt/private:deb_resolve",
Expand Down
140 changes: 0 additions & 140 deletions apt/apt.bzl

This file was deleted.

6 changes: 6 additions & 0 deletions apt/private/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,12 @@ bzl_library(
deps = [":version"],
)

bzl_library(
name = "deb_postfix",
srcs = ["deb_postfix.bzl"],
visibility = ["//apt:__subpackages__"],
)

bzl_library(
name = "starlark_codegen_utils",
srcs = ["starlark_codegen_utils.bzl"],
Expand Down
1 change: 0 additions & 1 deletion apt/private/deb_postfix.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ def deb_postfix(name, srcs, outs, mergedusr = False, **kwargs):
$(ZSTD_BIN) --compress --format=gzip "$$data_file" > "$$layer"
;;
*data.tar.xz|*data.tar.zst|*data.tar.lzma)
realpath "$$data_file"
$(ZSTD_BIN) --force --decompress --stdout "$$data_file" |
$(ZSTD_BIN) --compress --format=gzip - > "$$layer"
;;
Expand Down
1 change: 0 additions & 1 deletion distroless/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ exports_files(["defs.bzl"])

bzl_library(
name = "dependencies",
srcs = ["dependencies.bzl"],
visibility = ["//visibility:public"],
deps = [
"@bazel_tools//tools/build_defs/repo:http.bzl",
Expand Down
44 changes: 0 additions & 44 deletions distroless/dependencies.bzl

This file was deleted.

6 changes: 0 additions & 6 deletions docs/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,4 @@ stardoc_with_diff_test(
renderer = "renderer",
)

stardoc_with_diff_test(
name = "apt_macro",
bzl_library_target = "@rules_distroless//apt:apt",
renderer = "renderer",
)

update_docs(name = "update")
Loading