Skip to content

Commit bd2ef21

Browse files
author
feihong
committed
CMake CI Process Validation
1 parent e02479f commit bd2ef21

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/cmake.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ jobs:
2828
if: runner.os == 'Linux'
2929
run: |
3030
sudo apt-get update
31-
sudo apt-get install -y qt${{ matrix.qt_version }}-base qt${{ matrix.qt_version }}-tools
31+
if [ "${{ matrix.qt_version }}" = "5" ]; then
32+
sudo apt-get install -y qtbase5-dev qt5-default
33+
else
34+
sudo apt-get install -y qt6-base-dev
35+
fi
3236
3337
- name: Install dependencies (Windows)
3438
if: runner.os == 'Windows'

0 commit comments

Comments
 (0)