From 316e6c24600e8c0cb03547f5b5ec93ca0855d768 Mon Sep 17 00:00:00 2001 From: Sergio Martins Date: Thu, 10 Apr 2025 18:26:33 +0100 Subject: [PATCH] ci: Add coverage for Qt 6.9 Qt has dropped support for vs2019, so drop it as well. While we could workaround, let's instead give people some incentive to update their toolchain so we can have less maintenance burden of a FOSS project. --- .github/workflows/build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 481d5b49..8b468bfb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: matrix: os: - ubuntu-latest - - windows-2019 + - windows-latest - macos-latest build_type: - Debug @@ -36,7 +36,10 @@ jobs: qt_modules: qtscxml qt_arch: win64_msvc2019_64 macos_architectures: "x86_64;arm64" - + - qt_version: 6.9.0 # Bump to latest freely + qt_modules: qtscxml + qt_arch: win64_msvc2022_64 + macos_architectures: "x86_64;arm64" steps: - name: Install Dependencies on Linux if: ${{ runner.os == 'Linux' }}