mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-23 12:05:47 -04:00
Attempt to fix macOS workflow
This commit is contained in:
parent
f36d1cce6d
commit
769ee0f2c7
13
.github/workflows/macos.yml
vendored
13
.github/workflows/macos.yml
vendored
@ -17,6 +17,15 @@ jobs:
|
|||||||
- name: Install build tools
|
- name: Install build tools
|
||||||
run: brew install automake autoconf libtool pkg-config
|
run: brew install automake autoconf libtool pkg-config
|
||||||
|
|
||||||
|
- name: Install gperf, bison and flex
|
||||||
|
# MacOS comes with an ancient bison, we need a newer version. Homebrew's
|
||||||
|
# bison and flex are keg-only, which means they are not symlinked into
|
||||||
|
# /usr/local because macOS already provides this software.
|
||||||
|
run: |
|
||||||
|
brew install gperf bison flex
|
||||||
|
echo 'export PATH="/usr/local/opt/bison/bin:/usr/local/opt/flex/bin:$PATH"' >> /Users/runner/.bash_profile
|
||||||
|
export PATH="/usr/local/opt/bison/bin:/usr/local/opt/flex/bin:$PATH"
|
||||||
|
|
||||||
- name: Install libinotify-kqueue
|
- name: Install libinotify-kqueue
|
||||||
# brew does not have libinotify package
|
# brew does not have libinotify package
|
||||||
run: |
|
run: |
|
||||||
@ -40,10 +49,6 @@ jobs:
|
|||||||
sudo make install
|
sudo make install
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
- name: Install gperf, bison and flex
|
|
||||||
run: |
|
|
||||||
brew install gperf bison flex
|
|
||||||
|
|
||||||
- name: Install ffmpeg
|
- name: Install ffmpeg
|
||||||
# The libbluray ffmpeg dependency fails without the chown (source: stackoverflow)
|
# The libbluray ffmpeg dependency fails without the chown (source: stackoverflow)
|
||||||
run: |
|
run: |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user