From cc94f198e2aef22799135dda6022b250d878bae1 Mon Sep 17 00:00:00 2001 From: Felix Rieseberg Date: Mon, 13 Mar 2023 17:14:29 -0700 Subject: [PATCH] No Linux ia32 --- .github/workflows/build.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b0029ef..bb771a3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,7 +37,22 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: + # Build for supported platforms + # https://github.com/electron/electron-packager/blob/ebcbd439ff3e0f6f92fa880ff28a8670a9bcf2ab/src/targets.js#L9 + # 32-bit Linux unsupported as of 2019: https://www.electronjs.org/blog/linux-32bit-support os: [ macOS-latest, ubuntu-latest, windows-latest ] + arch: [ x64, arm64 ] + include: + - os: windows-latest + arch: ia32 + - os: ubuntu-latest + arch: armv7l + # Publishing artifacts for multiple Windows architectures has + # a bug which can cause the wrong architecture to be downloaded + # for an update, so until that is fixed, only build Windows x64 + exclude: + - os: windows-latest + arch: arm64 steps: - uses: actions/checkout@v3 - name: Setup Node.js