stdsock: Fix a bug in windows close #331
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: MacOSBuild | |
on: | |
push: | |
branches: | |
- 'master' | |
tags: | |
- v* | |
env: | |
INSTALLPREFIX: "_local" | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install autotools | |
run: | | |
brew update | |
brew install libtool | |
brew install autoconf | |
brew install automake | |
brew install swig | |
brew install openssl | |
brew install portaudio | |
- name: Configure | |
run: | | |
mkdir $INSTALLPREFIX | |
./reconf | |
./configure --prefix=$(pwd)/$INSTALLPREFIX/ --enable-internal-trace | |
- name: Build | |
run: | | |
make | |
make install | |
make check SKIP_TESTS="test_mdns test_mdns.py" |