Support wild (#1949)

This commit is contained in:
Taiki Endo
2026-07-23 20:57:02 +09:00
committed by GitHub
parent 4427ee328d
commit 411aa4ba3c
7 changed files with 59 additions and 3 deletions
+1
View File
@@ -15,6 +15,7 @@ done
# in .github/workflows/ci.yml, and match for alias for tools/codegen/src/tools-markdown.rs.
tools+=(
nextest
wild-linker
taplo-cli
typos-cli
wasm-bindgen-cli
+14
View File
@@ -0,0 +1,14 @@
{
"repository": "https://github.com/wild-linker/wild",
"license_markdown": "[Apache-2.0](https://github.com/wild-linker/wild/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/wild-linker/wild/blob/main/LICENSE-MIT)",
"tag_prefix": "",
"version_range": ">= 0.9.0",
"rust_crate": "${package}-linker",
"asset_name": "${package}-linker-${version}-${rust_target}.tar.gz",
"bin": "${package}-linker-${version}-${rust_target}/${package}${exe}",
"platform": {
"x86_64_linux_musl": {},
"aarch64_linux_musl": {},
"riscv64_linux_musl": {}
}
}
+2 -1
View File
@@ -125,7 +125,8 @@ fn main() {
// and tool input option in test-alias in .github/workflows/ci.yml.
let alias = match name.as_str() {
"cargo-nextest" => Some(name.strip_prefix("cargo-").unwrap().to_owned()),
"taplo" | "typos-cli" | "wasm-bindgen" | "wasmtime" => Some(format!("{name}-cli")),
"wild" => Some(format!("{name}-linker")),
"taplo" | "typos" | "wasm-bindgen" | "wasmtime" => Some(format!("{name}-cli")),
_ => None,
};