remove i386 windows from daily CI (#4150)
This was failing *forever* (yes, literally). As discussed on Discord, i386 Windows is EOL, there's no reason to run it.
This commit is contained in:
parent
f9a2860a61
commit
77d28f43f6
|
@ -19,8 +19,6 @@ jobs:
|
||||||
cpu: amd64
|
cpu: amd64
|
||||||
- os: windows
|
- os: windows
|
||||||
cpu: amd64
|
cpu: amd64
|
||||||
- os: windows
|
|
||||||
cpu: i386
|
|
||||||
branch: [version-1-2, version-1-6, devel]
|
branch: [version-1-2, version-1-6, devel]
|
||||||
include:
|
include:
|
||||||
- target:
|
- target:
|
||||||
|
@ -73,18 +71,6 @@ jobs:
|
||||||
chmod 755 external/bin/gcc external/bin/g++
|
chmod 755 external/bin/gcc external/bin/g++
|
||||||
echo "${{ github.workspace }}/external/bin" >> $GITHUB_PATH
|
echo "${{ github.workspace }}/external/bin" >> $GITHUB_PATH
|
||||||
|
|
||||||
- name: MSYS2 (Windows i386)
|
|
||||||
if: runner.os == 'Windows' && matrix.target.cpu == 'i386'
|
|
||||||
uses: msys2/setup-msys2@v2
|
|
||||||
with:
|
|
||||||
path-type: inherit
|
|
||||||
msystem: MINGW32
|
|
||||||
install: >-
|
|
||||||
base-devel
|
|
||||||
git
|
|
||||||
mingw-w64-i686-toolchain
|
|
||||||
mingw-w64-i686-cmake
|
|
||||||
|
|
||||||
- name: MSYS2 (Windows amd64)
|
- name: MSYS2 (Windows amd64)
|
||||||
if: runner.os == 'Windows' && matrix.target.cpu == 'amd64'
|
if: runner.os == 'Windows' && matrix.target.cpu == 'amd64'
|
||||||
uses: msys2/setup-msys2@v2
|
uses: msys2/setup-msys2@v2
|
||||||
|
|
Loading…
Reference in New Issue