From ee5155c177f3646f3c460b4eb6a6c93e94a6d06a Mon Sep 17 00:00:00 2001 From: Remisa Yousefvand Date: Thu, 31 Oct 2024 22:06:33 +0330 Subject: [PATCH] github action #7 --- .github/workflows/cmake-multi-platform.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 8cf0ae4..ffcae3a 100755 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -75,10 +75,13 @@ jobs: Invoke-WebRequest -Uri "https://download.qt.io/official_releases/online_installers/qt-unified-windows-x64-online.exe" ` -OutFile $installer -TimeoutSec 1200 - # Run the Qt installer in a headless, script-based mode + # Run the Qt installer interactively without extra flags Start-Process -FilePath $installer -ArgumentList ` - '--script', 'install-qt.qs', ` - '-platform minimal' -NoNewWindow -Wait + '--no-interaction', ` + '--confirm-command', ` + '--default-answer', ` + '--install', '--target-dir', 'C:\Qt' ` + '-NoNewWindow -Wait' # Verify Qt installation if (!(Test-Path "C:\Qt\6.5.3\msvc2019_64")) {