Skip to content

Commit 43b6b11

Browse files
committed
CI: use Qt ubuntu package on Linux
1 parent d6b1c4e commit 43b6b11

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/ci_linux.yml

+6-7
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,21 @@ jobs:
66
build-linux:
77
strategy:
88
matrix:
9-
qt_version: [5.15.2, 6.5.2]
9+
qt_version_major: [5, 6]
1010
os: [ubuntu-latest, ubuntu-24.04-arm]
1111

1212
runs-on: ${{matrix.os}}
13-
name: build-${{matrix.os}}-qt${{matrix.qt_version}}
13+
name: build-${{matrix.os}}-qt${{matrix.qt_version_major}}
1414

1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v2
1818

1919
- 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
20+
run: |
21+
sudo apt-get -y install \
22+
qtbase${{matrix.qt_version_major}}-dev \
23+
libqt${{matrix.qt_version_major}}svg${{matrix.qt_version_major}}-dev
2524
2625
# Actually needed for Qt6
2726
- name: Install dependencies for "xcb" Qt plugin

0 commit comments

Comments
 (0)