forked from abrasive/shairport
-
-
Notifications
You must be signed in to change notification settings - Fork 583
36 lines (30 loc) · 985 Bytes
/
check_classic_mac_basic.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Basic libao configuration for macOS with BREW -- classic only, because macOS can't host NQPTP.
on:
workflow_dispatch:
push:
branches: [ "development", "danger" ]
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/[email protected]
- name: Install Dependencies
run: |
brew install automake
brew install openssl
brew install popt
brew install libconfig
brew install libao
- name: Configure
run: |
export CPPFLAGS="-I/usr/local/opt/openssl@3/include"
export LDFLAGS="-L/usr/local/opt/openssl@3/lib"
export PATH="/usr/local/opt/openssl/bin:${PATH}"
export PKG_CONFIG_PATH="/usr/local/opt/openssl@3/lib/pkgconfig"
autoreconf -fi
./configure --with-os=darwin --with-ao --with-stdout --with-dns_sd --with-ssl=openssl
- name: Make
run: |
make