Skip to content

Commit

Permalink
[gh-actions] Remove build of sqlite from MacOS workflow
Browse files Browse the repository at this point in the history
Homebrew's sqlite now comes with sqlite3_unlock_notify (Homebrew issue #55077),
so a custom build is no longer required.
  • Loading branch information
ejurgensen committed Aug 21, 2023
1 parent 941fab9 commit d159a8d
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,6 @@ jobs:
sudo make install
cd ..
- name: Install sqlite
# Brew package does not have unlock-notify
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
# The libbluray ffmpeg dependency fails without the chown (source: stackoverflow)
run: |
Expand Down

0 comments on commit d159a8d

Please sign in to comment.