Skip to content

Commit

Permalink
Install a newly missing Qt dependency when building setuptools/PyPI r…
Browse files Browse the repository at this point in the history
…eleases
  • Loading branch information
bartfeenstra committed Jun 8, 2024
1 parent 3630350 commit 2db60b7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release-build-setuptools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@ jobs:
with:
python-version: '3.12'

- name: Install APT dependencies
run: |
sudo apt-get update
apt_packages=(
libegl1-mesa # For Qt
)
sudo apt-get install "${apt_packages[@]}"
- name: Build the distributions
run: ./bin/build-setuptools '${{ github.event.release.tag_name }}'
shell: bash
Expand Down

0 comments on commit 2db60b7

Please sign in to comment.