Skip to content
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
13 changes: 0 additions & 13 deletions .aspect/workflows/config.yaml

This file was deleted.

8 changes: 6 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,15 @@ concurrency:
cancel-in-progress: true

jobs:
# Tests are run on Linux using Aspect Workflows on Buildkite.
# Just keep a minimal macos footprint to avoid obvious regressions.
test-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: bazel-contrib/setup-bazel@0.15.0
- run: bazel test //...
test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bazel-contrib/setup-bazel@0.15.0
- run: bazel test //...
18 changes: 0 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,6 @@ formats other than `.deb`).

# Usage

## Bzlmod (Bazel 6+)

> [!NOTE]
> If you are using Bazel 6 you need to enable Bzlmod by adding
> `common --enable_bzlmod` to `.bazelrc` If you are using Bazel 7+
> [it's enabled by default].

Add the following to your `MODULE.bazel` file:

```starlark
Expand All @@ -59,17 +52,6 @@ git_override(
)
```

## `WORKSPACE` (legacy)

> [!WARNING]
> Bzlmod is replacing the legacy `WORKSPACE` system. The `WORKSPACE` file will
> be disabled by default in Bazel 8 (late 2024) and will be completely removed
> in Bazel 9 (late 2025). Please migrate to Bzlmod following the steps in the
> [Bzlmod migration guide].

You can find the latest release in the [`rules_distroless` Github releases
page].

# Examples

The [examples](/examples) demonstrate how to accomplish typical tasks such as
Expand Down
Loading