Skip to content

Commit

Permalink
ci: Build for Qt6 as well
Browse files Browse the repository at this point in the history
  • Loading branch information
iamsergio committed Jun 5, 2024
1 parent 9cea2c3 commit ae05dc3
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ jobs:
- ubuntu-latest
- windows-latest
- macos-13
qt:
- version: 5.15.2
preset: dev
- version: 6.5.0
preset: dev6
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18.x
Expand All @@ -37,15 +42,15 @@ jobs:
if: ${{ runner.os == 'Windows' }}
uses: ilammy/msvc-dev-cmd@v1

- name: Install Qt 5
- name: Install Qt ${{ matrix.qt.version }}
uses: jurplel/install-qt-action@v3
with:
version: 5.15.2
version: ${{ matrix.qt.version }}
cache: true

- name: Build Qt test
run: |
cmake --preset=dev -S test/qt_test/
cmake --preset=${{ matrix.qt.preset }} -S test/qt_test/
cmake --build test/qt_test/build-dev/
- name: Run test
Expand Down

0 comments on commit ae05dc3

Please sign in to comment.