Update linux-builds.yml

added Ubuntu 22.04 build with Qt6
This commit is contained in:
githubuser0xFFFF 2023-02-10 13:25:58 +01:00 committed by GitHub
parent fab41828ab
commit 009af32e61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,3 +21,19 @@ jobs:
run: qmake
- name: make
run: make -j4
build_ubuntu_2204:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- name: install qt
run: |
sudo apt-get update --fix-missing
sudo apt-get install qt6-base-dev
sudo apt-get install qt6-base-private-dev
sudo apt-get install libqt6svg6
- name: qmake
run: qmake
- name: make
run: make -j4