Pack PDBs into a separate artifact (#57)

This commit is contained in:
Friedrich von Never 2018-03-09 21:48:44 +07:00 committed by Stanislav Ershov
parent 05b766a460
commit d28745423a
3 changed files with 31 additions and 5 deletions

View File

@ -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

29
.appveyor/after_build.ps1 Normal file
View File

@ -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
}

View File

@ -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