[gh-actions] Use stock Homebrew sqlite
GH action's Homebrew should install has sqlite 3.43.0_1+, which has unlock-notify
This commit is contained in:
parent
f00aae6c6c
commit
6a93172cb9
|
@ -55,19 +55,6 @@ jobs:
|
||||||
sudo make install
|
sudo make install
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
- name: Install sqlite
|
|
||||||
# When GH actions has 3.43.0_1+, which has unlock-notify, then this can be
|
|
||||||
# removed and we can just install brew's sqlite
|
|
||||||
run: |
|
|
||||||
wget https://www.sqlite.org/2020/sqlite-autoconf-3310100.tar.gz
|
|
||||||
tar xzf sqlite-autoconf-3310100.tar.gz
|
|
||||||
cd sqlite-autoconf-3310100
|
|
||||||
export CFLAGS='-DSQLITE_ENABLE_UNLOCK_NOTIFY=1'
|
|
||||||
./configure
|
|
||||||
make
|
|
||||||
sudo make install
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
- 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: |
|
||||||
|
@ -76,7 +63,7 @@ jobs:
|
||||||
|
|
||||||
- name: Install other dependencies
|
- name: Install other dependencies
|
||||||
run: |
|
run: |
|
||||||
brew install libunistring confuse libplist libwebsockets libevent libgcrypt json-c protobuf-c libsodium gnutls pulseaudio openssl
|
brew install sqlite libunistring confuse libplist libwebsockets libevent libgcrypt json-c protobuf-c libsodium gnutls pulseaudio openssl
|
||||||
|
|
||||||
- name: Configure
|
- name: Configure
|
||||||
# We configure a non-privileged setup, since how to add a "owntone" system
|
# We configure a non-privileged setup, since how to add a "owntone" system
|
||||||
|
|
Loading…
Reference in New Issue