Skip to content

Commit

Permalink
Use vscode-shellcheck/shellcheck-binaries (#30)
Browse files Browse the repository at this point in the history
Use
[vscode-shellcheck/shellcheck-binaries](https://github.com/vscode-shellcheck/shellcheck-binaries)
(which gives us Apple Silicon, Windows, And Rasberry Pi support)

* Shellcheck proper does not yet publish these binaries
* there is an issue open
koalaman/shellcheck#2714 but has not yet
provided it's own arm64 build.
* luckily
[vscode-shellcheck/shellcheck-binaries](https://github.com/vscode-shellcheck/shellcheck-binaries/releases/tag/v0.9.0)
does provide these binary
  • Loading branch information
stefanpenner authored Jan 4, 2024
1 parent 725f402 commit 81c743a
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 20 deletions.
40 changes: 37 additions & 3 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,21 @@ alias(
visibility = ["//:__subpackages__"],
)

constraint_setting(name = "cpu")
constraint_value(
name = "armv6hf",
constraint_setting = ":cpu",
)

# rasberry pi
config_setting(
name = "linux_armv6hf",
constraint_values = [
"@platforms//os:linux",
"//:armv6hf",
]
)

config_setting(
name = "darwin_x86_64",
constraint_values = [
Expand All @@ -26,6 +41,14 @@ config_setting(
],
)

config_setting(
name = "darwin_aarch64",
constraint_values = [
"@platforms//os:macos",
"@platforms//cpu:aarch64",
],
)

config_setting(
name = "linux_x86_64",
constraint_values = [
Expand All @@ -42,13 +65,24 @@ config_setting(
],
)

config_setting(
name = "windows_x86_64",
constraint_values = [
"@platforms//os:windows",
"@platforms//cpu:x86_64",
],
)

alias(
name = "shellcheck",
actual = select(
{
":darwin_x86_64": "@shellcheck_darwin_amd64//:shellcheck",
":linux_aarch64": "@shellcheck_linux_arm64//:shellcheck",
":linux_x86_64": "@shellcheck_linux_amd64//:shellcheck",
":darwin_aarch64": "@shellcheck_darwin_aarch64//:shellcheck",
":darwin_x86_64": "@shellcheck_darwin_x86_64//:shellcheck",
":linux_aarch64": "@shellcheck_linux_aarch64//:shellcheck",
":linux_armv6hf": "@shellcheck_linux_armv6hf//:shellcheck",
":linux_x86_64": "@shellcheck_linux_x86_64//:shellcheck",
":windows_x86_64": "@shellcheck_windows_x86_64//:shellcheck",
},
no_match_error = "binaries for your platform could not be found",
),
Expand Down
9 changes: 6 additions & 3 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@ bazel_dep(name = "platforms", version = "0.0.7")
deps = use_extension("//internal:extensions.bzl", "shellcheck_dependencies")
use_repo(
deps,
"shellcheck_darwin_amd64",
"shellcheck_linux_amd64",
"shellcheck_linux_arm64",
"shellcheck_darwin_aarch64",
"shellcheck_darwin_x86_64",
"shellcheck_linux_x86_64",
"shellcheck_linux_aarch64",
"shellcheck_linux_armv6hf",
"shellcheck_windows_x86_64",
)

bazel_dep(name = "rules_pkg", version = "0.9.1", dev_dependency = True)
22 changes: 8 additions & 14 deletions deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,23 @@
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")

_LABELS = {
"darwin_amd64": "darwin.x86_64",
"linux_amd64": "linux.x86_64",
"linux_arm64": "linux.aarch64",
# darwin_arm64 shellcheck binaries are not distributed from GitHub releases.
# windows_amd64 shellcheck binaries are not distributed from GitHub releases.
}

def _urls(arch, version):
return [
"https://github.com/koalaman/shellcheck/releases/download/{version}/shellcheck-{version}.{arch}.tar.xz".format(
"https://github.com/vscode-shellcheck/shellcheck-binaries/releases/download/{version}/shellcheck-{version}.{arch}.tar.gz".format(
version = version,
arch = _LABELS[arch],
arch = arch.replace("_", ".", 1),
),
]

def shellcheck_dependencies():
version = "v0.9.0"
sha256 = {
"darwin_amd64": "7d3730694707605d6e60cec4efcb79a0632d61babc035aa16cda1b897536acf5",
"linux_amd64": "700324c6dd0ebea0117591c6cc9d7350d9c7c5c287acbad7630fa17b1d4d9e2f",
"linux_arm64": "179c579ef3481317d130adebede74a34dbbc2df961a70916dd4039ebf0735fae",
"darwin_aarch64": "a75b912015aaa5b2a48698b63f3619783d90abda4d32a31362209315e6c1cdf6",
"darwin_x86_64": "d1244da2aa5d0c2874f3a4a680c6ac79a488ff6dbf9928e12dc80ff3fdc294db",
"linux_x86_64": "0ab5711861e6fcafad5aa21587ee75bbd2b16505d56f41c9ba1191a83d314074",
"linux_aarch64": "b5633bd195cfe61a310bd8dcff2514855afefea908942a0fd4d01fa6451cb4e6",
"linux_armv6hf": "4791d36d84a626c4366746d14ad68daf2c07f502da09319c45fa6c5c0a847aa9",
"windows_x86_64": "a0f021057b6d6a69a22f6b0db0187bcaca3f5195385e92a7555ad63a6e39ee15",
}

for arch, sha256 in sha256.items():
Expand All @@ -36,7 +31,6 @@ def shellcheck_dependencies():
name = "shellcheck_{arch}".format(arch = arch),
build_file_content = """exports_files(["shellcheck"])
""",
strip_prefix = "shellcheck-{version}".format(version = version),
sha256 = sha256,
urls = _urls(arch = arch, version = version),
)

0 comments on commit 81c743a

Please sign in to comment.