diff --git a/.appveyor/after_build.cmd b/.appveyor/after_build.cmd deleted file mode 100644 index 824d24ca2..000000000 --- a/.appveyor/after_build.cmd +++ /dev/null @@ -1,4 +0,0 @@ -vcpkg install --triplet x64-windows openal-soft openssl opus zlib ffmpeg -appveyor DownloadFile https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-win.zip -mkdir %APPVEYOR_BUILD_FOLDER%\build -7z x ninja-win.zip -o%APPVEYOR_BUILD_FOLDER%\build > nul diff --git a/.appveyor/after_build.ps1 b/.appveyor/after_build.ps1 new file mode 100644 index 000000000..d139d740a --- /dev/null +++ b/.appveyor/after_build.ps1 @@ -0,0 +1,29 @@ +$ErrorActionPreference = 'Stop' + +function Pack-Files($ext, $includeExe, $targetPath, $archiveName) { + New-Item $targetPath\imageformats -Type Directory -Force | Out-Null + New-Item $targetPath\platforms -Type Directory -Force | Out-Null + + foreach ($name in @('Qt5Core', 'Qt5Gui', 'Qt5Network', 'Qt5Widgets')) { + Copy-Item $env:QT_DIR\bin\$name.$ext $targetPath\ + } + + Copy-Item $env:QT_DIR\plugins\imageformats\qwebp.$ext $targetPath\imageformats\ + Copy-Item $env:QT_DIR\plugins\imageformats\qjpeg.$ext $targetPath\imageformats\ + Copy-Item $env:QT_DIR\plugins\platforms\qwindows.$ext $targetPath\platforms\ + + $itemsToPack = @("$targetPath\*.$ext", "$targetPath\platforms\*.$ext", "$targetPath\imageformats\*.$ext") + if ($includeExe) { + $itemsToPack += @("$targetPath\Telegram.exe") + } + + 7z a -mmt $archiveName @itemsToPack +} + +Push-Location "$PSScriptRoot\..\build" +try { + Pack-Files dll $true Telegram kepka.zip + Pack-Files pdb $false Telegram pdb.zip +} finally { + Pop-Location +} diff --git a/appveyor.yml b/appveyor.yml index 7fbd8c37e..24ff5643b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -35,10 +35,11 @@ build_script: - cmd: .appveyor\build.cmd after_build: - - ps: .appveyor\after_build.cmd + - ps: .appveyor\after_build.ps1 artifacts: - path: build\kepka.zip + - path: build\pdb.zip notifications: - provider: GitHubPullRequest