Skip to content

Commit

Permalink
Autotools too
Browse files Browse the repository at this point in the history
  • Loading branch information
thetic committed Nov 22, 2022
1 parent f92f223 commit 7d74465
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/basic.yml
Expand Up @@ -34,12 +34,28 @@ jobs:
- os: ubuntu-latest
cc: clang
cxx: clang++
# Cygwin
- os: windows-latest
cc: clang
cxx: clang++
runs-on: ${{ matrix.os }}
steps:
- run: git config --global core.autocrlf input
if: ${{ startswith(matrix.os, 'windows') }}
- name: Checkout
uses: actions/checkout@main
- run: brew install automake
if: ${{ startswith(matrix.os, 'macos') }}
- name: Install Cygwin
uses: cygwin/cygwin-install-action@master
with:
platform: x86
packages: >
automake
gcc-core
gcc-g++
if: ${{ startswith(matrix.os, 'macos') }}

- if: ${{ matrix.cxx }}
run: echo "CXX=${{ matrix.cxx }}" >> $GITHUB_ENV
- if: ${{ matrix.cc }}
Expand Down

0 comments on commit 7d74465

Please sign in to comment.