diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 3c928430edaf..711871589f69 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -148,4 +148,5 @@ jobs: AWS_ACCESS_KEY_ID: $(AWS_ACCESS_KEY_ID) AWS_SECRET_ACCESS_KEY: $(AWS_SECRET_ACCESS_KEY) BUILD_NUMBER: $(Build.BuildNumber) + ELECTRON_BUILDER_EXTRA_ARGS: "--x64 --arm64" displayName: Build diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 94beca0de655..398ce97b135c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -78,6 +78,8 @@ jobs: - run: xvfb-run --auto-servernum --server-args='-screen 0, 1600x900x24' make integration name: Run Linux integration tests + env: + ELECTRON_BUILDER_EXTRA_ARGS: "--x64 --arm64" if: runner.os == 'Linux' - run: make integration diff --git a/build/download_binaries.ts b/build/download_binaries.ts index 5b4f960c5e2f..b23d481894df 100644 --- a/build/download_binaries.ts +++ b/build/download_binaries.ts @@ -195,7 +195,7 @@ async function main() { }, multiBar), ]; - if (normalizedPlatform === "darwin") { + if (normalizedPlatform !== "windows") { downloaders.push( new LensK8sProxyDownloader({ version: packageInfo.config.k8sProxyVersion,