Skip to content

Commit

Permalink
Add installing QT6 to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pktiuk committed Apr 9, 2024
1 parent 001669f commit 83efc5d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- uses: actions/checkout@v3

- name: Install Dependencies
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 ninja-build
run: sudo apt-get update && sudo apt-get install extra-cmake-modules qt6-base-dev qt6-tools-dev-tools qttools5-dev qttools5-dev-tools libsdl2-dev libxi-dev libxtst-dev libx11-dev itstool gettext ninja-build

- name: Configure CMake
run: cmake -GNinja -DCHECK_FOR_UPDATES=ON -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -B ${{ github.workspace }}/build
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: "5.15.2"
version: "6"
host: "windows"
target: "desktop"
arch: ${{ matrix.qt-arch }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v3

- name: Install Dependencies
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
run: sudo apt-get update && sudo apt-get install extra-cmake-modules qt6-base-dev qt6-tools-dev-tools qttools5-dev qttools5-dev-tools 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 Release" -B ${{ github.workspace }}/build
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Install Dependencies
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 qt5-default zsync
sudo apt-get install extra-cmake-modules qt6-base-dev qt6-tools-dev-tools qttools5-dev qttools5-dev-tools libsdl2-dev libxi-dev libxtst-dev libx11-dev itstool gettext qt5-default zsync
#Replace original library with the newer one
- name: Build and install newer SDL2
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: "5.15.2"
version: "6"
host: "windows"
target: "desktop"
arch: "win64_mingw81"
Expand Down

0 comments on commit 83efc5d

Please sign in to comment.