bazel-lib/.github/workflows/workspace_snippet.sh

60 lines
1.4 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
set -o errexit -o nounset -o pipefail
# Set by GH actions, see
# https://docs.github.com/en/actions/learn-github-actions/environment-variables#default-environment-variables
TAG=${GITHUB_REF_NAME}
PREFIX="bazel-lib-${TAG:1}"
SHA=$(git archive --format=tar --prefix=${PREFIX}/ ${TAG} | gzip | shasum -a 256 | awk '{print $1}')
cat << EOF
## Using Bzlmod:
2022-06-06 18:56:04 +00:00
1. Enable with \`--experimental_enable_bzlmod\` in \`.bazelrc\`.
2022-06-06 18:56:40 +00:00
2. Add to your \`MODULE.bazel\` file:
2022-06-06 18:56:04 +00:00
\`\`\`starlark
bazel_dep(name = "aspect_bazel_lib", version = "${TAG:1}")
2022-06-06 18:56:04 +00:00
\`\`\`
> Read more about bzlmod: <https://blog.aspect.dev/bzlmod>
## Using WORKSPACE
Paste this snippet into your `WORKSPACE` file:
\`\`\`starlark
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_bazel_lib",
sha256 = "${SHA}",
strip_prefix = "${PREFIX}",
url = "https://github.com/aspect-build/bazel-lib/archive/refs/tags/${TAG}.tar.gz",
)
load("@aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies")
aspect_bazel_lib_dependencies()
2022-04-22 17:37:43 +00:00
\`\`\`
Optional toolchains:
\`\`\`starlark
# Register the following toolchain to use jq
2021-12-18 00:41:59 +00:00
load("@aspect_bazel_lib//lib:repositories.bzl", "register_jq_toolchains")
register_jq_toolchains(version = "1.6")
2022-04-22 17:37:43 +00:00
# Register the following toolchain to use yq
load("@aspect_bazel_lib//lib:repositories.bzl", "register_yq_toolchains")
register_yq_toolchains(version = "4.24.5")
\`\`\`
EOF