Commit 946d86b5 by kewde

ci: disable macos extenrla builds

parent 30934a8f
...@@ -26,9 +26,10 @@ publish ...@@ -26,9 +26,10 @@ publish
echo "building from source to test against external libsqlite3" echo "building from source to test against external libsqlite3"
export NODE_SQLITE3_JSON1=no export NODE_SQLITE3_JSON1=no
if [[ $(uname -s) == 'Darwin' ]]; then if [[ $(uname -s) == 'Darwin' ]]; then
brew update # MacOS external sqlite3 installed through homebrew does not support extension loading (mapbox/node-sqlite3/issues/1509)
brew install sqlite #brew update
npm install --build-from-source --sqlite=$(brew --prefix) --clang=1 #brew install sqlite
#npm install --build-from-source --sqlite=$(brew --prefix) --clang=1
else else
npm install --build-from-source --sqlite=/usr --clang=1 npm install --build-from-source --sqlite=/usr --clang=1
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment