diff --git a/.github/workflows/build_and_deploy.yaml b/.github/workflows/build_and_deploy.yaml index 5fc81f31..9192a8cc 100644 --- a/.github/workflows/build_and_deploy.yaml +++ b/.github/workflows/build_and_deploy.yaml @@ -59,7 +59,7 @@ jobs: name: Windows ${{ matrix.arch }} strategy: matrix: - arch: [ia32, x64] + arch: [x64] uses: ./.github/workflows/build_windows.yaml secrets: inherit with: @@ -110,7 +110,7 @@ jobs: - name: Prepare artifacts for deployment run: | # Windows - for arch in x64 ia32 arm64 + for arch in x64 arm64 do if [ -d "win-$arch" ]; then mkdir -p packages.element.io/{install,update}/win32/$arch @@ -143,7 +143,7 @@ jobs: if: needs.prepare.outputs.nightly-version != '' run: | # Windows - for arch in x64 ia32 arm64 + for arch in x64 arm64 do [ -d "win-$arch" ] && mv packages.element.io/install/win32/$arch/{*,"Element Nightly Setup"}.exe done @@ -159,7 +159,7 @@ jobs: if: needs.prepare.outputs.nightly-version == '' run: | # Windows - for arch in x64 ia32 arm64 + for arch in x64 arm64 do if [ -d "win-$arch" ]; then pushd packages.element.io/install/win32/$arch diff --git a/.github/workflows/build_and_test.yaml b/.github/workflows/build_and_test.yaml index c940c73c..2485299d 100644 --- a/.github/workflows/build_and_test.yaml +++ b/.github/workflows/build_and_test.yaml @@ -19,7 +19,7 @@ jobs: uses: ./.github/workflows/build_windows.yaml strategy: matrix: - arch: [x64, ia32] + arch: [x64] with: arch: ${{ matrix.arch }} @@ -79,10 +79,6 @@ jobs: artifact: linux-arm64-sqlcipher-static executable: "/opt/Element/element-desktop" prepare_cmd: "sudo apt install -y ./dist/*.deb" - - name: Windows (x86) - os: windows-latest - artifact: win-ia32 - executable: "./dist/win-ia32-unpacked/Element.exe" - name: Windows (x64) os: windows-latest artifact: win-x64 diff --git a/.github/workflows/build_windows.yaml b/.github/workflows/build_windows.yaml index 7faacaf5..d328ec97 100644 --- a/.github/workflows/build_windows.yaml +++ b/.github/workflows/build_windows.yaml @@ -19,7 +19,7 @@ on: arch: type: string required: true - description: "The architecture to build for, one of 'x64' | 'ia32' | 'arm64'" + description: "The architecture to build for, one of 'x64' | 'arm64'" version: type: string required: false @@ -49,11 +49,6 @@ jobs: "target": "aarch64-pc-windows-msvc", "build-args": "--arm64", "arch": "amd64_arm64" - }, - "ia32": { - "target": "i686-pc-windows-msvc", - "build-args": "--ia32", - "arch": "x86" } }