Skip to content

v0.1.1

Compare
Choose a tag to compare
@github-actions github-actions released this 02 Jan 15:12
· 150 commits to main since this release
a81b6bc

This release adds a new build artifact, rules_cuda-vx.y.z.tar.gz, for all future releases. This artifact is to be used by http_archive
repository rules. This also fixes the sha256 sum included in the sample WORKSPACE code.

WORKSPACE code

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_cuda",
    sha256 = "b2750e65a2c0f34be643146b3975ded79b8c6edc47b529a5b774418139694032",
    strip_prefix = "rules_cuda-v0.1.1",
    urls = ["https://github.com/bazel-contrib/rules_cuda/releases/download/v0.1.1/rules_cuda-v0.1.1.tar.gz"],
)

load("@rules_cuda//cuda:repositories.bzl", "register_detected_cuda_toolchains", "rules_cuda_dependencies")
rules_cuda_dependencies()
register_detected_cuda_toolchains()

What's Changed

  • fix: generate release .tgz and correct checksum by @ryanleary in #57

Full Changelog: https://github.com/bazel-contrib/rules_cuda/commits/v0.1.1