Skip to content

Commit 3c83e04

Browse files
committed
Fix Qt removed API link clash in ARM64 CI
1 parent 357c353 commit 3c83e04

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/ci_windows_arm64_native.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,11 @@ jobs:
203203
$originalContent = Get-Content $checkPackagesPath -Raw
204204
Set-Content $checkPackagesPath -Value ($fixCode + "`n" + $originalContent)
205205
206+
$commonConfigPath = "cmake/Modules/CommonConfig.cmake"
207+
$commonConfig = Get-Content $commonConfigPath -Raw
208+
$commonConfig = $commonConfig -replace "QT_DISABLE_DEPRECATED_UP_TO=0x060500", "QT_DISABLE_DEPRECATED_UP_TO=0x060A00"
209+
Set-Content $commonConfigPath -Value $commonConfig
210+
206211
cmake `
207212
-B build `
208213
-G Ninja `

0 commit comments

Comments
 (0)