adjust test workflow to qt6

This commit is contained in:
Jan Käberich 2023-03-28 11:58:00 +02:00
parent 50dd9e6002
commit b729600cd8

View File

@ -10,18 +10,20 @@ on:
jobs:
Tests:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libusb-1.0-0-dev qt5-default qt5-qmake qtbase5-dev
sudo apt-get install -y libusb-1.0-0-dev qt6-tools-dev qt6-base-dev
qtchooser -install qt6 $(which qmake6)
- name: Build Tests
run: |
cd Software/PC_Application/LibreVNA-Test
export QT_SELECT=qt6
qmake LibreVNA-Test.pro
make -j9
shell: bash