Added tag v3.3.0 for changeset 55367f2e76c9 #229
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: macOS and iOS CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: deps | |
run: brew install libsndfile libsamplerate vamp-plugin-sdk meson ninja | |
- name: configure macos | |
run: meson build_macos | |
- name: configure ios | |
run: meson build_ios --cross-file cross/ios.txt | |
- name: make macos | |
run: ninja -C build_macos | |
- name: make ios | |
run: ninja -C build_ios | |
- name: unit test macos | |
run: meson test -C build_macos | |
- name: check otherbuilds | |
run: otherbuilds/check.sh | |