From 6c1a3364c42b9426011806acd236bdc102fdbf1d Mon Sep 17 00:00:00 2001 From: magdev Date: Sun, 3 May 2026 10:08:43 +0200 Subject: [PATCH] ci: drop modules:'qtquickcontrols2' (rolled into base Qt 6) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit aqt's "modules" list is for *additional* modules beyond the base Qt install (qt5compat, qtcharts, qtmultimedia, qtwebsockets, etc.). QtQuick.Controls 2 was a separately-shipped Qt 5 module, but in Qt 6.0+ it was folded into qtdeclarative — part of every base install. aqt 3.3 rejects the obsolete name with: ERROR: The packages ['qtquickcontrols2'] were not found while parsing XML of package information! Project's CMakeLists request `Core Gui Quick QuickControls2 Network Qml` — all in base Qt 6.5. No `modules:` line needed. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitea/workflows/ci.yml | 1 - .gitea/workflows/release.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 6fd4a88..e21d48a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -54,7 +54,6 @@ jobs: uses: jurplel/install-qt-action@v4 with: version: '6.5.*' - modules: 'qtquickcontrols2' dir: ${{ github.workspace }}/qt cache: true setup-python: false diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index b7162c6..4cf086e 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -37,7 +37,6 @@ jobs: uses: jurplel/install-qt-action@v4 with: version: '6.5.*' - modules: 'qtquickcontrols2' dir: ${{ github.workspace }}/qt cache: true setup-python: false