Skip to content

Commit

Permalink
Add build deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Kitenite committed Nov 18, 2024
1 parent 44807f1 commit b6e5ce8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,18 @@ jobs:
with:
node-version: 20

- name: Install system dependencies
shell: bash
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update
sudo apt-get install -y make python3 g++ pkg-config
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install make pkg-config
elif [ "$RUNNER_OS" == "Windows" ]; then
npm install --global --production windows-build-tools
fi
- name: Set Mac API Key
if: startsWith(matrix.os, 'macos')
run: |
Expand Down

0 comments on commit b6e5ce8

Please sign in to comment.