We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa35a5c commit 684df66Copy full SHA for 684df66
1 file changed
.github/workflows/cppcmake.yml
@@ -29,10 +29,10 @@ jobs:
29
fail-fast: false
30
matrix:
31
config:
32
+ - name: "ubuntu-24.04"
33
+ os: "ubuntu-24.04"
34
- name: "ubuntu-22.04"
35
os: "ubuntu-22.04"
- - name: "ubuntu-20.04"
- os: "ubuntu-20.04"
36
- name: "windows-x64"
37
os: "windows-latest"
38
cmake_extra: "-T v142,host=x86"
@@ -74,12 +74,8 @@ jobs:
74
version: ${{ matrix.config.qt_ver }}
75
arch: ${{ matrix.config.qt_arch }}
76
77
- - name: Install Qt (Ubuntu focal)
78
- if: matrix.config.os == 'ubuntu-20.04'
79
- run: sudo apt install qtbase5-dev
80
-
81
- - name: Install Qt (Ubuntu jammy)
82
- if: matrix.config.os == 'ubuntu-22.04'
+ - name: Install Qt (Ubuntu)
+ if: startsWith(matrix.config.os, 'ubuntu-')
83
run: sudo apt install qt6-base-dev freeglut3-dev
84
85
- name: Install Qt (MacOS)
0 commit comments