From 0855a88433df4a9a95c275ba15e07a97d27f1e47 Mon Sep 17 00:00:00 2001 From: leafspark <78000825+leafspark@users.noreply.github.com> Date: Sat, 2 Nov 2024 09:34:38 -0700 Subject: [PATCH] ci: remove broken x86 build matrix --- .github/workflows/build.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a69a99c..52b7088 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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"