diff options
-rw-r--r-- | .appveyor.yml | 4 | ||||
-rw-r--r-- | .github/workflows/cygwin.yml | 5 |
2 files changed, 1 insertions, 8 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 8919918..50a9101 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -18,10 +18,6 @@ environment: CYGWIN_ROOT: C:\cygwin64
PKGARCH: mingw64-x86_64
SETUP: setup-x86_64.exe
- - BUILD: i686-pc-cygwin
- CYGWIN_ROOT: C:\cygwin
- PKGARCH: mingw64-i686
- SETUP: setup-x86.exe
cache: C:\cache
diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml index 2f16c8c..7ad5ccf 100644 --- a/.github/workflows/cygwin.yml +++ b/.github/workflows/cygwin.yml @@ -12,8 +12,6 @@ jobs: include: - target: x86_64-pc-cygwin pkgarch: 64 - - target: i686-pc-cygwin - pkgarch: 32 name: Fedora cross ${{ matrix.target }} steps: @@ -55,7 +53,6 @@ jobs: matrix: include: - pkgarch: x86_64 - - pkgarch: i686 name: Windows native ${{ matrix.pkgarch }} steps: @@ -109,5 +106,5 @@ jobs: make install && (cd */newlib; make info man) && (cd */newlib; make install-info install-man) && - (cd */winsup; test "${{ matrix.pkgarch }}" != 'x86_64' || make check || true) + (cd */winsup; make check || true) shell: C:\cygwin\bin\bash.exe --noprofile --norc -eo pipefail '{0}' |