diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2022-05-16 13:32:52 +0100 |
---|---|---|
committer | Jon Turney <jon.turney@dronecode.org.uk> | 2022-05-16 13:36:51 +0100 |
commit | 1a367220addd52e040249e0467111c4fb2674fba (patch) | |
tree | 5b60d4f1358f1d4feb8d8020301dd7e9418bfef6 /.github | |
parent | b79d60b7d27e0a62e36a14e881dab458bb278814 (diff) | |
download | newlib-1a367220addd52e040249e0467111c4fb2674fba.zip newlib-1a367220addd52e040249e0467111c4fb2674fba.tar.gz newlib-1a367220addd52e040249e0467111c4fb2674fba.tar.bz2 |
Cygwin: CI: Drop i686 builds
i686 builds just fail with 'Invalid target processor "i686"' since
commit fcb32b7.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cygwin.yml | 5 |
1 files changed, 1 insertions, 4 deletions
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}' |