Skip to content

Commit

Permalink
stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
codekansas committed Nov 1, 2024
1 parent 90cbb9a commit 2d28148
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,15 @@ jobs:

- name: Install dependencies
run: |
if [ "${{ runner.os }}" == "Linux" ]; then
sudo apt-get update
sudo apt-get install -y libudev-dev pkg-config
elif [ "${{ runner.os }}" == "macOS" ]; then
brew install libudev pkg-config
else
echo "Unsupported OS: ${{ runner.os }}"
exit 1
fi
python -m pip install --upgrade pip
pip install cibuildwheel
shell: bash
Expand Down

0 comments on commit 2d28148

Please sign in to comment.