Skip to content

Commit

Permalink
fix: Fix openssl dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fmarek-kindred committed Sep 29, 2023
1 parent e487c8d commit f0ea790
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
env:
DEBUG: "napi:*"
OPENSSL_DIR: /usr/local/Cellar/[email protected]/1.1.1w
SASL2_DIR: /usr/local/Cellar/cyrus-sasl/2.1.28_2
jobs:
npm:
strategy:
Expand All @@ -31,8 +32,15 @@ jobs:
echo "~/.cargo/config"
cat ~/.cargo/config
brew install [email protected]
echo 'find $(brew --prefix)/ -name "ssl3.h"'
find $(brew --prefix)/ -name "ssl3.h"
echo 'find $(brew --prefix) -name "ssl3.h"'
find $(brew --prefix) -name "ssl3.h"
echp ""
echo 'find $(brew --prefix) -name "sasl.h"'
find $(brew --prefix) -name "sasl.h"
brew install cyrus-sasl
echp ""
echo 'find $(brew --prefix) -name "sasl.h"'
find $(brew --prefix) -name "sasl.h"
buildCommand: npm run build -- --target aarch64-apple-darwin

# - host: windows-latest
Expand Down

0 comments on commit f0ea790

Please sign in to comment.