We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4400890 commit 158591cCopy full SHA for 158591c
.github/workflows/ci.yml
@@ -40,11 +40,16 @@ jobs:
40
Cygwin:
41
name: Cygwin
42
runs-on: windows-latest
43
+ strategy:
44
+ matrix:
45
+ include:
46
+ - { platform: x86_64, hosttype: cygwin.i386-64 }
47
+ - { platform: x86, hosttype: cygwin.i386 }
48
env:
49
CHERE_INVOKING: 1
50
CYGWIN_NOWINPATH: 1
51
CC: gcc
- HOSTTYPE: cygwin.i386-64
52
+ HOSTTYPE: ${{ matrix.hosttype }}
53
defaults:
54
run:
55
shell: bash -leo pipefail -o igncr {0}
@@ -54,7 +59,8 @@ jobs:
59
- name: Install Cygwin
60
uses: cygwin/cygwin-install-action@master
56
61
with:
57
- packages: gcc-core gcc-g++ git libiconv-devel ncurses
62
+ platform: ${{ matrix.platform }}
63
+ packages: gcc-core git libiconv-devel ncurses
58
64
- name: Git reset
65
run: |
66
git config --global --add safe.directory "$(pwd)" && git reset --hard
0 commit comments