summaryrefslogtreecommitdiffstats
path: root/.github/workflows/c-cpp.yml
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2022-08-19 17:22:18 +1000
committerDarren Tucker <dtucker@dtucker.net>2022-08-19 17:22:18 +1000
commit6851f4b8c3fc1b3e1114c56106e4dc31369c8513 (patch)
tree70ddff4eacf8044bfb20c857f4a1e4c93cd20f6d /.github/workflows/c-cpp.yml
parentf96480906893ed93665df8cdf9065865c51c1475 (diff)
Install Cygwin packages based on OS not config.
Diffstat (limited to '.github/workflows/c-cpp.yml')
-rw-r--r--.github/workflows/c-cpp.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml
index 2c5301ed..36d58a42 100644
--- a/.github/workflows/c-cpp.yml
+++ b/.github/workflows/c-cpp.yml
@@ -80,10 +80,10 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: set cygwin git params
- if: ${{ matrix.configs == 'windows-2019' }}
+ if: ${{ matrix.os == 'windows-2019' }}
run: git config --global core.autocrlf input
- name: install cygwin
- if: ${{ matrix.configs == 'windows-2019' }}
+ if: ${{ matrix.os == 'windows-2019' }}
uses: cygwin/cygwin-install-action@master
with:
packages: autoconf, automake, cygwin-devel, gcc-core, make, openssl-devel, zlib-devel