5 Commits

Author SHA1 Message Date
Grigo aad66e3ac6 Обновить Jenkinsfile 2026-05-06 20:41:46 +00:00
Grigo 0c20bbb435 Обновить Jenkinsfile 2026-05-06 20:38:28 +00:00
Grigo 371dd08eaa Обновить vcpkg.json 2026-05-04 15:00:19 +00:00
Grigo ffdc77ecd7 Обновить vcpkg.json 2026-05-04 14:56:36 +00:00
Grigo 6a0c4b255f Full lib list 2026-05-04 14:53:07 +00:00
2 changed files with 30 additions and 2 deletions
Vendored
+7 -1
View File
@@ -98,7 +98,13 @@ powershell -NoProfile -ExecutionPolicy Bypass -File gitea-release.ps1
writeFile file: 'taiga-post.ps1', text: ''' writeFile file: 'taiga-post.ps1', text: '''
$ErrorActionPreference = "Continue" $ErrorActionPreference = "Continue"
$commitMsg = git log -1 --pretty=%B $commitMsg = git log -1 --pretty=%B 2>$null
if ([string]::IsNullOrWhiteSpace($commitMsg)) {
Write-Host "No git commit message available"
exit 0
}
$match = [regex]::Match($commitMsg, 'TG-(\\d+)') $match = [regex]::Match($commitMsg, 'TG-(\\d+)')
if (-not $match.Success) { if (-not $match.Success) {
+23 -1
View File
@@ -1,5 +1,27 @@
{ {
"dependencies": [ "dependencies": [
"qtbase" "qt5",
"qt5-serialport",
"qt5-svg",
"qt5-tools",
"qt5-declarative",
"qt",
"qtdeclarative",
"qtserialport",
"qtsvg",
"qttools",
"boost",
"boost-asio",
"boost-filesystem",
"boost-system",
"boost-thread",
"boost-regex",
"boost-date-time",
"boost-program-options",
"boost-serialization",
"boost-random",
"boost-iostreams"
] ]
} }