Skip to content

Commit

Permalink
fixed missing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerFlar committed Jan 13, 2025
1 parent d0b65e6 commit 1d50f5b
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ jobs:
with:
python-version: '3.13'

- name: Install Windows SDK
if: matrix.os == 'windows-latest'
run: |
# Install Windows 10 SDK with required components
choco install windows-sdk-10-version-2004-all
- name: Set up Node.js
uses: actions/setup-node@v3
with:
Expand All @@ -63,6 +69,21 @@ jobs:
pip install poetry
poetry install
- name: Install Linux system dependencies
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y \
libpulse0 \
libxkbcommon-x11-0 \
libxcb-cursor0 \
libxcb-icccm4 \
libxcb-keysyms1 \
libxcb-shape0 \
libxcb-xkb1 \
libxcb-render-util0 \
libxcb-image0
- name: Install Node.js dependencies
working-directory: frontend
run: |
Expand Down
2 changes: 2 additions & 0 deletions scripts/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ def main() -> None:
f"{frontend_dir / 'dist'}{';' if args.os == 'windows' else ':'}frontend/dist",
# Add hidden imports for path utilities
"--hidden-import=radio_telemetry_tracker_drone_gcs.utils.paths",
# Add scipy hidden imports
"--hidden-import=scipy.special._cdflib",
]

# Optional: add an icon if you have one in assets/
Expand Down

0 comments on commit 1d50f5b

Please sign in to comment.