Relax this threshold again a bit #230
Workflow file for this run
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 | |