Skip to content

unix: Add docs for peerusers and peergrps #266

unix: Add docs for peerusers and peergrps

unix: Add docs for peerusers and peergrps #266

Workflow file for this run

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"