From 407cfe7da378488c82e15b275c300715ae22d261 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Tue, 06 Jul 2021 06:22:48 +0000 Subject: [PATCH] ci: remove windows gnu builds While being tier-1 platform, it makes no sense to have binary builds for it, as there is no difference to end user which target was used --- --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -56,13 +56,11 @@ target: # Tier 1 - aarch64-unknown-linux-gnu - - i686-pc-windows-gnu - - i686-pc-windows-msvc - i686-unknown-linux-gnu + - x86_64-unknown-linux-gnu - x86_64-apple-darwin - - x86_64-pc-windows-gnu + - i686-pc-windows-msvc - x86_64-pc-windows-msvc - - x86_64-unknown-linux-gnu # Other - x86_64-unknown-linux-musl @@ -71,10 +69,6 @@ os: ubuntu-latest bin: jrsonnet name: jrsonnet-linux-gnu-aarch64 - - target: i686-pc-windows-gnu - os: windows-latest - bin: jrsonnet.exe - name: jrsonnet-windows-gnu-i686.exe - target: i686-pc-windows-msvc os: windows-latest bin: jrsonnet.exe @@ -87,10 +81,6 @@ os: macOS-latest bin: jrsonnet name: jrsonnet-darwin-amd64 - - target: x86_64-pc-windows-gnu - os: windows-latest - bin: jrsonnet.exe - name: jrsonnet-windows-gnu-amd64.exe - target: x86_64-pc-windows-msvc os: windows-latest bin: jrsonnet.exe @@ -119,12 +109,6 @@ - name: Linux x86 cross compiler if: ${{ matrix.target == 'i686-unknown-linux-gnu' }} run: sudo apt install gcc-multilib - - - name: Windows x86 cross compiler - if: ${{ matrix.target == 'i686-pc-windows-gnu' }} - uses: egor-tensin/setup-mingw@v2 - with: - platform: x86 - name: Musl gcc if: ${{ endsWith(matrix.target, '-musl') }} -- gitstuff