We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6b1c4e commit 43b6b11Copy full SHA for 43b6b11
.github/workflows/ci_linux.yml
@@ -6,22 +6,21 @@ jobs:
6
build-linux:
7
strategy:
8
matrix:
9
- qt_version: [5.15.2, 6.5.2]
+ qt_version_major: [5, 6]
10
os: [ubuntu-latest, ubuntu-24.04-arm]
11
12
runs-on: ${{matrix.os}}
13
- name: build-${{matrix.os}}-qt${{matrix.qt_version}}
+ name: build-${{matrix.os}}-qt${{matrix.qt_version_major}}
14
15
steps:
16
- name: Checkout
17
uses: actions/checkout@v2
18
19
- name: Install Qt
20
- uses: jurplel/install-qt-action@v3
21
- with:
22
- version: ${{matrix.qt_version}}
23
- cache: true
24
- cache-key-prefix: QtCache
+ run: |
+ sudo apt-get -y install \
+ qtbase${{matrix.qt_version_major}}-dev \
+ libqt${{matrix.qt_version_major}}svg${{matrix.qt_version_major}}-dev
25
26
# Actually needed for Qt6
27
- name: Install dependencies for "xcb" Qt plugin
0 commit comments