Skip to content

Commit

Permalink
Install CI ubuntu dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
mliberty1 committed Jun 8, 2023
1 parent 7427674 commit 8e8a0e7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install Ubuntu dependencies
run: sudo apt install -y libudev-dev libusb-1.0-0-dev qt6-base-dev qt6-3d-dev

- name: Display version
run: python -VV

Expand Down Expand Up @@ -101,6 +104,10 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install Ubuntu dependencies
if: matrix.os == 'ubuntu-latest'
run: sudo apt install -y libudev-dev libusb-1.0-0-dev qt6-base-dev qt6-3d-dev

- name: Install python dependencies
run: |
python -m pip install --upgrade pip
Expand Down
1 change: 1 addition & 0 deletions joulescope.spec
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ exe = EXE(
console=False,
icon='joulescope_ui/resources/icon.ico',
codesign_identity=MACOS_CODE_SIGN,
target_arch='universal2' if sys.platform.startswith('darwin') else 'x86_64'
)

coll = COLLECT(
Expand Down

0 comments on commit 8e8a0e7

Please sign in to comment.