27 lines
653 B
YAML
27 lines
653 B
YAML
name: macOS and iOS CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: deps
|
|
run: brew install libsndfile vamp-plugin-sdk
|
|
- name: make macos universal library
|
|
run: make -f Makefile.macos-universal clean library
|
|
- name: make macos native binaries
|
|
# (these depend on things installed from Homebrew, which I think
|
|
# doesn't install universal anything, so let's just make them native)
|
|
run: make -f Makefile.macos program vamp
|
|
- name: make ios
|
|
run: make -f Makefile.ios clean all
|
|
|