mirror of git://anongit.mindrot.org/openssh.git
Fix cygwin conditional steps.
This commit is contained in:
parent
fd6ee741ab
commit
1b470b9036
|
@ -80,10 +80,10 @@ jobs:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- name: set cygwin git params
|
- name: set cygwin git params
|
||||||
if: ${{ matrix.configs }} == 'windows-2019'
|
if: ${{ matrix.configs == 'windows-2019' }}
|
||||||
run: git config --global core.autocrlf input
|
run: git config --global core.autocrlf input
|
||||||
- name: install cygwin
|
- name: install cygwin
|
||||||
if: ${{ matrix.configs }} == 'windows-2019'
|
if: ${{ matrix.configs == 'windows-2019' }}
|
||||||
uses: cygwin/cygwin-install-action@master
|
uses: cygwin/cygwin-install-action@master
|
||||||
with:
|
with:
|
||||||
packages: autoconf, automake, cygwin-devel, gcc-core, make, openssl-devel, zlib-devel
|
packages: autoconf, automake, cygwin-devel, gcc-core, make, openssl-devel, zlib-devel
|
||||||
|
|
Loading…
Reference in New Issue