Skip to content

v0.1.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 01 Feb 18:39
· 338 commits to main since this release

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_container",
    sha256 = "96057db9d73096aab7fb84e5d27bbd1feac8a39b0ca488da9c5727830dac7b8e",
    strip_prefix = "rules_container-0.1.0",
    url = "https://github.com/aspect-build/rules_container/archive/v0.1.0.tar.gz",
)

# Fetches the rules_container dependencies.
# If you want to have a different version of some dependency,
# you should fetch it *before* calling this.
# Alternatively, you can skip calling this function, so long as you've
# already fetched all the dependencies.
load("@aspect_rules_container//container:repositories.bzl", "rules_container_dependencies")
rules_container_dependencies()

What's Changed

  • Mirror release info into versions file by @alexeagle in #1
  • chore: clean docs and fix release mirror script by @thesayyn in #2
  • wip: collect runfiles by @thesayyn in #3
  • build: fix ci build caching by @kormide in #5
  • fix: move cache flags out of ci bazelrc by @kormide in #6
  • build: move ci cache flags to bazelrc by @kormide in #7
  • chore: update to latest changes from template by @alexeagle in #8

New Contributors

Full Changelog: https://github.com/aspect-build/rules_container/commits/v0.1.0