From 1c8a88447b3ebc1b00651885eccfc2a6a2a84b80 Mon Sep 17 00:00:00 2001 From: emma Date: Mon, 5 Jan 2026 20:06:51 -0800 Subject: [PATCH] fix(npm): android only supports arm64 in goreleaser The test incorrectly listed x64 as a supported arch for android, but goreleaser only builds arm64 for android/termux. --- npm-package/test/integration.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/npm-package/test/integration.test.js b/npm-package/test/integration.test.js index a4b3a13e..664d5baf 100755 --- a/npm-package/test/integration.test.js +++ b/npm-package/test/integration.test.js @@ -371,7 +371,7 @@ async function testPlatformDetection() { const supportedPlatforms = { darwin: ['x64', 'arm64'], linux: ['x64', 'arm64'], - android: ['x64', 'arm64'], + android: ['arm64'], // Only arm64 built for android/termux win32: ['x64', 'arm64'] };