Make code using getifaddrs uncancellable to prevent a "Unexpected err… #493
This file contains hidden or 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 classic, libao, 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-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - 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 |