GitHub CI: run also macOS

This commit is contained in:
Martin Pulec
2019-11-14 13:19:19 +01:00
parent 462f21355b
commit 9757227e20

View File

@@ -3,8 +3,8 @@ name: C/C++ CI
on: [push]
jobs:
build:
Ubuntu:
name: run Ubuntu
runs-on: ubuntu-latest
steps:
@@ -17,3 +17,20 @@ jobs:
run: make check
- name: make distcheck
run: make distcheck
macOS:
name: run macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: bootstrap
run: /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" && brew install autoconf automake libtool pkg-config
- name: configure
run: ./autogen.sh
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck