Update RELEASENOTES-DEVELOPMENT.md #415
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: Basic libao configuration for macOS with BREW -- classic only, because macOS can't host NQPTP. | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "development" ] | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: | | |
brew install automake | |
brew install popt | |
brew install libconfig | |
brew install libao | |
- name: Configure | |
run: | | |
autoreconf -fi | |
./configure --with-os=darwin --with-ao --with-stdout --with-dns_sd --with-ssl=openssl | |
- name: Make | |
run: | | |
make |