ci: remove broken x86 build matrix

This commit is contained in:
leafspark 2024-11-02 09:34:38 -07:00 committed by GitHub
parent 96c31b58c9
commit 0855a88433
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 4 deletions

View File

@ -18,9 +18,6 @@ jobs:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
arch: [x64]
include:
- os: windows-latest
arch: x86
runs-on: ${{ matrix.os }}
steps:
@ -83,7 +80,7 @@ jobs:
if: matrix.os == 'windows-latest'
run: |
$distPath = if ("${{ github.event.inputs.build_type }}" -eq "RELEASE") { "build\release\dist" } else { "build\dev\dist" }
$archSuffix = if ("${{ matrix.arch }}" -eq "x86") { "-x86" } else { "-x64" }
$archSuffix = "-x64"
$exeName = "AutoGGUF$archSuffix.exe"
$versionHash = "${{ github.sha }}".Substring(0, 7)
$hashFile = "AutoGGUF-${{ matrix.os }}-${{ matrix.arch }}-$versionHash.sha256"