From b5b00b192f094b8946f0210934896fbff4c31371 Mon Sep 17 00:00:00 2001 From: PikminGuts92 Date: Thu, 18 Jan 2024 18:24:04 -0500 Subject: [PATCH] Remove 32-bit build --- .github/workflows/audit.yml | 5 +---- .github/workflows/ci.yml | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 599be86..66f0b1f 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -20,9 +20,6 @@ jobs: osname: "linux-x64" - os: windows-latest osname: "win-x64" - - os: windows-latest - osname: "win-x86" - toolchain: "stable-i686-pc-windows-msvc" env: BIN_PATH: ./target/release steps: @@ -43,7 +40,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: ${{ matrix.toolchain || 'stable' }} + toolchain: stable override: true - name: Install audit dependencies shell: bash diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94a0ada..79caa92 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -103,9 +103,6 @@ jobs: osname: "linux-x64" - os: windows-latest osname: "win-x64" - - os: windows-latest - osname: "win-x86" - toolchain: "stable-i686-pc-windows-msvc" env: ZIP_NAME: ${{ github.event.repository.name }}-ci-${{ github.sha }}-${{ matrix.osname }} BIN_PATH: ./target/release @@ -128,7 +125,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: ${{ matrix.toolchain || 'stable' }} + toolchain: stable override: true - uses: actions-rs/cargo@v1 with: