Skip to content

Commit 009af32

Browse files
Update linux-builds.yml
added Ubuntu 22.04 build with Qt6
1 parent fab4182 commit 009af32

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/linux-builds.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,19 @@ jobs:
2121
run: qmake
2222
- name: make
2323
run: make -j4
24+
25+
build_ubuntu_2204:
26+
runs-on: ubuntu-22.04
27+
28+
steps:
29+
- uses: actions/checkout@v1
30+
- name: install qt
31+
run: |
32+
sudo apt-get update --fix-missing
33+
sudo apt-get install qt6-base-dev
34+
sudo apt-get install qt6-base-private-dev
35+
sudo apt-get install libqt6svg6
36+
- name: qmake
37+
run: qmake
38+
- name: make
39+
run: make -j4

0 commit comments

Comments
 (0)