git.delta.rocks / jrsonnet / refs/commits / 407cfe7da378

difftreelog

ci remove windows gnu builds

Yaroslav Bolyukin2021-07-06parent: #0605926.patch.diff
in: master
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

1 file changed

modified.github/workflows/release.ymldiffbeforeafterboth
56 target:56 target:
57 # Tier 157 # Tier 1
58 - aarch64-unknown-linux-gnu58 - aarch64-unknown-linux-gnu
59 - i686-pc-windows-gnu59 - i686-unknown-linux-gnu
60 - i686-pc-windows-msvc
61 - i686-unknown-linux-gnu60 - x86_64-unknown-linux-gnu
62 - x86_64-apple-darwin61 - x86_64-apple-darwin
63 - x86_64-pc-windows-gnu62 - i686-pc-windows-msvc
64 - x86_64-pc-windows-msvc63 - x86_64-pc-windows-msvc
65 - x86_64-unknown-linux-gnu
6664
67 # Other65 # Other
68 - x86_64-unknown-linux-musl66 - x86_64-unknown-linux-musl
71 os: ubuntu-latest69 os: ubuntu-latest
72 bin: jrsonnet70 bin: jrsonnet
73 name: jrsonnet-linux-gnu-aarch6471 name: jrsonnet-linux-gnu-aarch64
74 - target: i686-pc-windows-gnu
75 os: windows-latest
76 bin: jrsonnet.exe
77 name: jrsonnet-windows-gnu-i686.exe
78 - target: i686-pc-windows-msvc72 - target: i686-pc-windows-msvc
79 os: windows-latest73 os: windows-latest
80 bin: jrsonnet.exe74 bin: jrsonnet.exe
87 os: macOS-latest81 os: macOS-latest
88 bin: jrsonnet82 bin: jrsonnet
89 name: jrsonnet-darwin-amd6483 name: jrsonnet-darwin-amd64
90 - target: x86_64-pc-windows-gnu
91 os: windows-latest
92 bin: jrsonnet.exe
93 name: jrsonnet-windows-gnu-amd64.exe
94 - target: x86_64-pc-windows-msvc84 - target: x86_64-pc-windows-msvc
95 os: windows-latest85 os: windows-latest
96 bin: jrsonnet.exe86 bin: jrsonnet.exe
120 if: ${{ matrix.target == 'i686-unknown-linux-gnu' }}110 if: ${{ matrix.target == 'i686-unknown-linux-gnu' }}
121 run: sudo apt install gcc-multilib111 run: sudo apt install gcc-multilib
122
123 - name: Windows x86 cross compiler
124 if: ${{ matrix.target == 'i686-pc-windows-gnu' }}
125 uses: egor-tensin/setup-mingw@v2
126 with:
127 platform: x86
128112
129 - name: Musl gcc113 - name: Musl gcc
130 if: ${{ endsWith(matrix.target, '-musl') }}114 if: ${{ endsWith(matrix.target, '-musl') }}