Skip to content

Commit

Permalink
Use QT6 in builds for Ubuntu 24
Browse files Browse the repository at this point in the history
  • Loading branch information
pktiuk committed Nov 18, 2024
1 parent e726f58 commit 751f89b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install Dependencies
- name: Install Dependencies with QT5
if: matrix.image != 'ubuntu-24.04'
run: sudo apt-get update && sudo apt-get install extra-cmake-modules qttools5-dev qttools5-dev-tools libsdl2-dev libxi-dev libxtst-dev libx11-dev itstool gettext

- name: Install Dependencies with QT6
if: matrix.image == 'ubuntu-24.04'
run: sudo apt-get update && sudo apt-get install extra-cmake-modules qt6-base-dev qt6-tools-dev-tools libqt6core5compat6-dev qt6-tools-dev libsdl2-dev libxi-dev libxtst-dev libx11-dev itstool gettext

- name: Configure CMake
run: cmake -DCPACK_GENERATOR="DEB" -DCMAKE_BUILD_TYPE=Release -DCHECK_FOR_UPDATES=ON -DANTIMICROX_PKG_VERSION="GitHub deb Release" -B ${{ github.workspace }}/build

Expand Down

0 comments on commit 751f89b

Please sign in to comment.