Remove ia32 from workflows.

This commit is contained in:
Half-Shot 2024-05-20 09:48:30 +01:00
parent ad31ceaea3
commit 01a1d62396
3 changed files with 6 additions and 15 deletions

View file

@ -59,7 +59,7 @@ jobs:
name: Windows ${{ matrix.arch }} name: Windows ${{ matrix.arch }}
strategy: strategy:
matrix: matrix:
arch: [ia32, x64] arch: [x64]
uses: ./.github/workflows/build_windows.yaml uses: ./.github/workflows/build_windows.yaml
secrets: inherit secrets: inherit
with: with:
@ -110,7 +110,7 @@ jobs:
- name: Prepare artifacts for deployment - name: Prepare artifacts for deployment
run: | run: |
# Windows # Windows
for arch in x64 ia32 arm64 for arch in x64 arm64
do do
if [ -d "win-$arch" ]; then if [ -d "win-$arch" ]; then
mkdir -p packages.element.io/{install,update}/win32/$arch mkdir -p packages.element.io/{install,update}/win32/$arch
@ -143,7 +143,7 @@ jobs:
if: needs.prepare.outputs.nightly-version != '' if: needs.prepare.outputs.nightly-version != ''
run: | run: |
# Windows # Windows
for arch in x64 ia32 arm64 for arch in x64 arm64
do do
[ -d "win-$arch" ] && mv packages.element.io/install/win32/$arch/{*,"Element Nightly Setup"}.exe [ -d "win-$arch" ] && mv packages.element.io/install/win32/$arch/{*,"Element Nightly Setup"}.exe
done done
@ -159,7 +159,7 @@ jobs:
if: needs.prepare.outputs.nightly-version == '' if: needs.prepare.outputs.nightly-version == ''
run: | run: |
# Windows # Windows
for arch in x64 ia32 arm64 for arch in x64 arm64
do do
if [ -d "win-$arch" ]; then if [ -d "win-$arch" ]; then
pushd packages.element.io/install/win32/$arch pushd packages.element.io/install/win32/$arch

View file

@ -19,7 +19,7 @@ jobs:
uses: ./.github/workflows/build_windows.yaml uses: ./.github/workflows/build_windows.yaml
strategy: strategy:
matrix: matrix:
arch: [x64, ia32] arch: [x64]
with: with:
arch: ${{ matrix.arch }} arch: ${{ matrix.arch }}
@ -79,10 +79,6 @@ jobs:
artifact: linux-arm64-sqlcipher-static artifact: linux-arm64-sqlcipher-static
executable: "/opt/Element/element-desktop" executable: "/opt/Element/element-desktop"
prepare_cmd: "sudo apt install -y ./dist/*.deb" 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) - name: Windows (x64)
os: windows-latest os: windows-latest
artifact: win-x64 artifact: win-x64

View file

@ -19,7 +19,7 @@ on:
arch: arch:
type: string type: string
required: true required: true
description: "The architecture to build for, one of 'x64' | 'ia32' | 'arm64'" description: "The architecture to build for, one of 'x64' | 'arm64'"
version: version:
type: string type: string
required: false required: false
@ -49,11 +49,6 @@ jobs:
"target": "aarch64-pc-windows-msvc", "target": "aarch64-pc-windows-msvc",
"build-args": "--arm64", "build-args": "--arm64",
"arch": "amd64_arm64" "arch": "amd64_arm64"
},
"ia32": {
"target": "i686-pc-windows-msvc",
"build-args": "--ia32",
"arch": "x86"
} }
} }