mirror of
https://github.com/tmate-io/tmate.git
synced 2025-05-18 06:11:07 +00:00
37 lines
568 B
YAML
37 lines
568 B
YAML
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 libssh
|
|
autoupdate
|
|
./autogen.sh
|
|
./configure
|
|
make
|
|
make install
|
|
|
|
|
|
|
|
|