Build: Bump Qt6 from 6.10.2 to 6.11.2 (Automated PR) - #3646
Build: Bump Qt6 from 6.10.2 to 6.11.2 (Automated PR)#3646github-actions[bot] wants to merge 1 commit into
Conversation
0c3b462 to
e03417c
Compare
d181e16 to
8944990
Compare
c8fd4a5 to
85bd4ba
Compare
16a3ef7 to
0a5c241
Compare
c9bf088 to
2d2f4e8
Compare
c7c1dea to
d226dd4
Compare
|
PR has been updated for version 6.11.1 by the workflow Bump dependencies (create-prs). |
590a20b to
7b94f6a
Compare
7b94f6a to
26a604d
Compare
|
We likely need to push up the SDK for macOS. Not sure about windows |
2d1c310 to
3d23518
Compare
3d23518 to
518aeb9
Compare
|
It's actually an Aqtinstall issue waiting for a release on their side. miurahr/aqtinstall#1007 |
6479f6d to
da52b76
Compare
|
PR has been updated for version 6.11.2 by the workflow Bump dependencies (create-prs). |
|
We might want to either use a non released aqtinstall version or move away from aqtinstall to allow a Qt version bump. |
|
@coderabbitai review. This is failing due to a missing aqtinstall release. Propose how to continue here. |
|
Tip For best results, initiate chat on the files or code changes. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
echo '=== PR metadata and changed files ==='
gh pr view 3646 --repo jamulussoftware/jamulus --json number,title,state,baseRefName,headRefName,files,commits,statusCheckRollup \
--jq '{number,title,state,baseRefName,headRefName,files:[.files[].path],commits:[.commits[].messageHeadline],checks:[.statusCheckRollup[]|{name,conclusion,status,detailsUrl}]}'
echo '=== PR diff ==='
gh pr diff 3646 --repo jamulussoftware/jamulus --patch
echo '=== Relevant workflow and dependency references on PR branch ==='
rg -n -i -C 4 'aqtinstall|aqt install|QT_VERSION|Qt6|6\.10\.2|6\.11\.2' \
-g '*.yml' -g '*.yaml' -g '*.py' -g 'requirements*.txt' -g 'pyproject.toml' -g 'CMakeLists.txt' -g '*.cmake' .
echo '=== Upstream aqtinstall issue ==='
gh issue view 1007 --repo miurahr/aqtinstall --json number,title,state,createdAt,updatedAt,closedAt,labels,comments,url \
--jq '{number,title,state,createdAt,updatedAt,closedAt,labels:[.labels[].name],url,comments:[.comments[]|{author:.author.login,createdAt,body}]}'Length of output: 14833 🏁 Script executed: #!/bin/bash
set -euo pipefail
echo '=== Candidate CI scripts ==='
fd -t f .github | sort
echo '=== Windows bootstrap ==='
nl -ba .github/autobuild/windows.ps1 | sed -n '1,180p'
echo '=== macOS bootstrap ==='
nl -ba .github/autobuild/mac.sh | sed -n '1,220p'
echo '=== Dependency bump configuration ==='
if [ -f .github/workflows/bump-dependencies.yaml ]; then
nl -ba .github/workflows/bump-dependencies.yaml | sed -n '1,240p'
fi
if [ -f .github/workflows/bump-dependencies.yml ]; then
nl -ba .github/workflows/bump-dependencies.yml | sed -n '1,240p'
fi
echo '=== aqtinstall references, including shell and PowerShell scripts ==='
rg -n -i -C 5 'aqtinstall|aqt(\.exe)?\s|pip(3)?\s+install' .github
echo '=== Failed job logs: macOS, Windows, Windows JACK ==='
for job in 100799384905 100799384888 100799384801; do
echo "--- job ${job} ---"
gh run view 33800725775 --repo jamulussoftware/jamulus --job "$job" --log-failed || true
doneLength of output: 1346 🏁 Script executed: #!/bin/bash
set -u
numbered_range() {
awk -v first="$2" -v last="$3" 'NR >= first && NR <= last { printf "%6d %s\n", NR, $0 }' "$1"
}
echo '=== Windows bootstrap ==='
numbered_range .github/autobuild/windows.ps1 1 220
echo '=== macOS bootstrap ==='
numbered_range .github/autobuild/mac.sh 1 260
echo '=== autobuild workflow matrix and steps ==='
numbered_range .github/workflows/autobuild.yml 180 340
echo '=== Dependency bump configuration ==='
for f in .github/workflows/bump-dependencies.yaml .github/workflows/bump-dependencies.yml; do
if [ -f "$f" ]; then
echo "--- $f ---"
numbered_range "$f" 1 260
fi
done
echo '=== aqtinstall and pip references ==='
rg -n -i -C 5 'aqtinstall|aqt(\.exe)?\s|pip(3)?\s+install' .github || true
echo '=== Failed job logs ==='
for job in 100799384905 100799384888 100799384801; do
echo "--- job ${job} ---"
gh run view 33800725775 --repo jamulussoftware/jamulus --job "$job" --log-failed || echo "Could not retrieve failed log for job ${job}"
done
exit 0Length of output: 201548 🏁 Script executed: #!/bin/bash
set -euo pipefail
echo '=== Installer commands in CI scripts ==='
rg -n -i -C 8 'aqt|install-qt|install_qt|qtbase|qtdeclarative|qtmultimedia|QT_VERSION' \
.github/autobuild/windows.ps1 .github/autobuild/mac.sh .github/workflows/autobuild.yml
echo '=== Windows setup function near the failed line ==='
awk 'NR >= 100 && NR <= 160 { printf "%6d %s\n", NR, $0 }' .github/autobuild/windows.ps1
echo '=== macOS setup and Qt install sections ==='
rg -n -i -C 12 'aqt|install.*qt|qt.*install|qtbase|qtdeclarative|qtmultimedia' .github/autobuild/mac.sh
echo '=== Upstream fix revision and status ==='
gh pr view 1000 --repo miurahr/aqtinstall \
--json number,title,state,mergedAt,baseRefName,headRefName,commits,url \
--jq '{number,title,state,mergedAt,baseRefName,headRefName,url,commits:[.commits[]|{oid,messageHeadline}]}'
echo '=== aqtinstall releases ==='
gh release list --repo miurahr/aqtinstall --limit 10Length of output: 20175
There are two independent failures:
Recommended continuation:
This is a small, reversible CI compatibility change. The upstream project has had no release after 3.3.0, despite You are interacting with an AI system. |
|
@coderabbitai do you read AGENTS.md? Do you have long term memory? |
|
Tip For best results, initiate chat on the files or code changes.
I read I also have long-term memory for selected, durable repository guidance. For example, implementation constraints, project conventions, and validated architectural facts can be stored when they are useful for later reviews. I do not treat every comment as long-term memory. You are interacting with an AI system. |
This automated Pull Request updates the used Qt6 version to version 6.11.2.
This PR was opened by the workflow Bump dependencies (create-prs)
CHANGELOG: Build: Updated bundled Qt6 to version 6.11.2