From 69c02f8efdd2638fc92b54bad6e1236e0d7b52ec Mon Sep 17 00:00:00 2001 From: Geoff Hutchison Date: Tue, 12 Nov 2024 11:21:56 -0500 Subject: [PATCH] Try to get 6.8.0 on Windows again Signed-off-by: Geoff Hutchison --- .github/workflows/build_qt6.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_qt6.yml b/.github/workflows/build_qt6.yml index d525aac720..c350049c49 100644 --- a/.github/workflows/build_qt6.yml +++ b/.github/workflows/build_qt6.yml @@ -88,11 +88,20 @@ jobs: path: avogadrolibs - name: Install Qt + if: runner.os != 'Windows' uses: jurplel/install-qt-action@v3 with: version: ${{ env.QT_VERSION }} aqtversion: '==3.1.*' - modules: 'qt5compat' + + - name: Install Qt (Windows) + if: runner.os == 'Windows' + uses: jurplel/install-qt-action@v3 + with: + version: ${{ env.QT_VERSION }} + aqtversion: '==3.1.*' + host: windows + arch: win64_msvc2022_64 - name: Configure MSVC Command Prompt if: runner.os == 'Windows'