Skip to content

Commit

Permalink
Add setuptools and whl deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Srinivas-E committed Oct 8, 2024
1 parent 48bb808 commit 8d7f06f
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,18 +80,20 @@ jobs:
echo "skip_build=true" >> $GITHUB_ENV # Set an environment variable to control flow
fi
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install setuptools wheel # Install setuptools and wheel
- name: Install USB dependencies
run: sudo apt-get update && sudo apt-get install -y libusb-1.0-0-dev libudev-dev

- name: Install string library build dependencies
run: sudo apt-get install build-essential libc-dev libbsd-dev

- name: Build sdist
if: env.skip_build != 'true'
run: |
echo $TAG_NAME
echo ${{ env.TAG_NAME }}
cd python
echo $TAG_NAME >VERSION
echo ${{ env.TAG_NAME }} >VERSION
cp -r ../lib .
cp -r ../third_party .
mkdir app
Expand Down

0 comments on commit 8d7f06f

Please sign in to comment.