Skip to content

Commit 42e5e8c

Browse files
committed
fix(wasm): add backward compatibility for openssh_format attribute in wasm_keygen
When PR branches merge with main for CI testing, main's BUILD files still use openssh_format=False in wasm_keygen rules. This attribute was removed in commit 06d8d71 when switching to the Go wrapper approach. Add the attribute back as deprecated/ignored to maintain backward compatibility during the merge, preventing CI build failures.
1 parent e04b251 commit 42e5e8c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

wasm/wasm_signing.bzl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@ wasm_keygen = rule(
6060
default = "key.secret",
6161
doc = "Name of the secret key file to generate",
6262
),
63+
"openssh_format": attr.bool(
64+
default = False,
65+
doc = "Deprecated: Ignored. wasmsign2 keygen always generates compact format keys.",
66+
),
6367
"_wasmsign2_wrapper": attr.label(
6468
default = "//tools/wasmsign2_wrapper",
6569
executable = True,

0 commit comments

Comments
 (0)