summaryrefslogtreecommitdiffstats
path: root/.github/workflows/MacOS.yml
blob: 37293260f3da4539b7bc68e62df16ed9e1b918a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: MacOS
on:
  push:
    branches:
      - '*'
    paths:
      - '**.c'
      - '**.h'
      - 'compat/*'
      - '.github/workflows/MacOS.yml'
  pull_request:
    branches:
      - '*'
    paths:
      - '**.c'
      - '**.h'
      - 'compat/*'
      - '.github/workflows/MacOS.yml'



jobs:
  MacOS:
    runs-on: macos-latest
    steps:
    - uses: actions/checkout@v2
    - run: |
        brew install automake msgpack
        autoupdate
        ./autogen.sh
        ./configure
        make
        make install