Skip to content

Commit

Permalink
chore: Add test QT6 Windows build to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pktiuk committed Apr 18, 2024
1 parent c0a40b3 commit 5759e8b
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,24 @@ jobs:
fail-fast: false
matrix:
include:
- name: Windows Server 2019 MinGW
- name: Windows Server 2019 MinGW QT5
image: windows-2019
qt-version: "5.15.2"
shell: msys2 {0}
build-type: Debug
qt-arch: "win64_mingw81"
experimental: false
- name: Windows Server 2019 MSVC
- name: Windows Server 2019 MSVC QT5
image: windows-2019
qt-version: "5.15.2"
shell: cmd
cmake-args: -G "Visual Studio 16 2019" "-DSDL2_PATH=%WORKSPACE_DIR%/sdl2/" "-DSDL2_LIBRARY=%WORKSPACE_DIR%/sdl2/lib/x64/SDL2.lib" "-DSDL2_INCLUDE_DIR=%WORKSPACE_DIR%/sdl2/" "-DSDL2_DLL_LOCATION_DIR=%WORKSPACE_DIR%/sdl2/lib/x64/SDL2.dll"
build-type: Debug
qt-arch: "win64_msvc2019_64"
experimental: false
- name: Windows Server 2019 MSVC QT6
image: windows-2019
qt-version: "6.0"
shell: cmd
cmake-args: -G "Visual Studio 16 2019" "-DSDL2_PATH=%WORKSPACE_DIR%/sdl2/" "-DSDL2_LIBRARY=%WORKSPACE_DIR%/sdl2/lib/x64/SDL2.lib" "-DSDL2_INCLUDE_DIR=%WORKSPACE_DIR%/sdl2/" "-DSDL2_DLL_LOCATION_DIR=%WORKSPACE_DIR%/sdl2/lib/x64/SDL2.dll"
build-type: Debug
Expand Down Expand Up @@ -121,7 +131,7 @@ jobs:
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: "5.15.2"
version: ${{ matrix.qt-version }}
host: "windows"
target: "desktop"
arch: ${{ matrix.qt-arch }}
Expand Down

0 comments on commit 5759e8b

Please sign in to comment.