1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 03:29:40 +00:00

Add Qt 6 CI.

This commit is contained in:
Thomas Harte
2025-02-03 20:28:46 -05:00
parent 015a1fbd53
commit 8450ad2856
+22 -2
View File
@@ -85,8 +85,8 @@ jobs:
jobs=1
esac
scons -j"$jobs"
build-qt:
name: Qt / ${{ matrix.os }}
build-qt5:
name: Qt 5 / ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
@@ -105,3 +105,23 @@ jobs:
run: |
qmake -o Makefile clksignal.pro
make
build-qt6:
name: Qt 6 / ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
uses: jurplel/install-qt-action@v3
with:
version: '6.8.3'
archives: 'qtbase qtmultimedia qtx11extras icu'
- name: Make
working-directory: OSBindings/Qt
shell: bash
run: |
qmake -o Makefile clksignal.pro
make