Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| aad66e3ac6 | |||
| 0c20bbb435 | |||
| 371dd08eaa | |||
| ffdc77ecd7 |
Vendored
+7
-1
@@ -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) {
|
||||||
|
|||||||
+15
-56
@@ -1,68 +1,27 @@
|
|||||||
{
|
{
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"qt5-base",
|
"qt5",
|
||||||
"qt5-tools",
|
"qt5-serialport",
|
||||||
"qt5-webengine",
|
|
||||||
"qt5-svg",
|
"qt5-svg",
|
||||||
"qt5-quickcontrols2",
|
"qt5-tools",
|
||||||
"qt6-base",
|
"qt5-declarative",
|
||||||
"qt6-tools",
|
|
||||||
"qt6-webengine",
|
"qt",
|
||||||
"qt6-svg",
|
"qtdeclarative",
|
||||||
"qt6-quickcontrols2",
|
"qtserialport",
|
||||||
|
"qtsvg",
|
||||||
|
"qttools",
|
||||||
|
|
||||||
|
"boost",
|
||||||
"boost-asio",
|
"boost-asio",
|
||||||
"boost-filesystem",
|
"boost-filesystem",
|
||||||
"boost-system",
|
"boost-system",
|
||||||
"boost-thread",
|
"boost-thread",
|
||||||
"boost-regex",
|
"boost-regex",
|
||||||
"boost-date_time",
|
"boost-date-time",
|
||||||
|
"boost-program-options",
|
||||||
"boost-serialization",
|
"boost-serialization",
|
||||||
"boost-chrono",
|
|
||||||
"boost-program_options",
|
|
||||||
"boost-iostreams",
|
|
||||||
"boost-test",
|
|
||||||
"boost-math",
|
|
||||||
"boost-atomic",
|
|
||||||
"boost-context",
|
|
||||||
"boost-container",
|
|
||||||
"boost-config",
|
|
||||||
"boost-log",
|
|
||||||
"boost-signals2",
|
|
||||||
"boost-timer",
|
|
||||||
"boost-windows-test",
|
|
||||||
"boost-interprocess",
|
|
||||||
"boost-network",
|
|
||||||
"boost-graph",
|
|
||||||
"boost-serialization",
|
|
||||||
"boost-coroutine",
|
|
||||||
"boost-locale",
|
|
||||||
"boost-smart_ptr",
|
|
||||||
"boost-random",
|
"boost-random",
|
||||||
"boost-python",
|
"boost-iostreams"
|
||||||
"boost-wave",
|
|
||||||
"boost-fiber",
|
|
||||||
"boost-bimap",
|
|
||||||
"boost-mp11",
|
|
||||||
"boost-hana",
|
|
||||||
"boost-optional",
|
|
||||||
"boost-fusion",
|
|
||||||
"boost-spirit",
|
|
||||||
"boost-beast",
|
|
||||||
"boost-tuple",
|
|
||||||
"boost-uuid",
|
|
||||||
"boost-pool",
|
|
||||||
"boost-log_setup",
|
|
||||||
"boost-xpressive",
|
|
||||||
"boost-type_traits",
|
|
||||||
"boost-predef",
|
|
||||||
"boost-smart_ptr",
|
|
||||||
"boost-thread",
|
|
||||||
"boost-container",
|
|
||||||
"boost-unordered",
|
|
||||||
"boost-intrusive",
|
|
||||||
"boost-range",
|
|
||||||
"boost-dll",
|
|
||||||
"boost-interprocess",
|
|
||||||
"boost-mpi"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user