Replies: 1 comment
-
🕒 Discussion Activity Reminder 🕒 This Discussion has been labeled as dormant by an automated system for having no activity in the last 60 days. Please consider one the following actions: 1️⃣ Close as Out of Date: If the topic is no longer relevant, close the Discussion as 2️⃣ Provide More Information: Share additional details or context — or let the community know if you've found a solution on your own. 3️⃣ Mark a Reply as Answer: If your question has been answered by a reply, mark the most helpful reply as the solution. Note: This dormant notification will only apply to Discussions with the Thank you for helping bring this Discussion to a resolution! 💬 |
Beta Was this translation helpful? Give feedback.
-
Select Topic Area
Question
Body
Hi,
I am seeking guidance on automating the installation and configuration of the Qt Visual Studio 2022 add-in using GitHub Actions. Here’s what I’ve done so far and where I need help:
What I Have Achieved:
Successfully checked out the main project.
Automated the installation of Rust 1.76.0, Node.js, Yarn, and Python.
What I Want to Achieve:
Install Qt VS plug-in: Automatically download and install qt-vsaddin-msvc2022-3.0.2.vsix.
Configure Qt Version and Path in Visual Studio 2022: Use devenv.com to add Qt version 6.6.1 and set the path to the Qt installation in the repository (QT_PATH)
.
Where I Am Stuck:
Qt VS 2022 Add-in Installation: The installation step for the Qt VS Add-in does not seem to execute properly in my GitHub Actions workflow.
Setting Qt Version: The command to set the Qt version in Visual Studio using devenv.com is not working as expected.
Code Snippets:
env:
QT_VERSION: 6.6.1
DEVENV_PATH2: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\devenv.com
QT_PATH: ${{ github.workspace }}\Qt\6.6.1\msvc2019_64
permissions:
contents: read
`
jobs:
build:
runs-on: windows-latest
`
Specific Issues:
Setting Qt Version and Path: The command to set the Qt version and path using devenv.com fails to execute correctly.
Any advice or examples on how to achieve these steps correctly in GitHub Actions would be greatly appreciated. Thank you for your help!
Beta Was this translation helpful? Give feedback.
All reactions