标签: teamcity-10

TeamCity:向工件zip文件添加其他日志

在TeamCity中,可以指定"工件路径",以便将目录中的所有文件和文件夹添加到Zip文件中:

E:\Logs\**\* => Logs.zip
Run Code Online (Sandbox Code Playgroud)

但是,我想将其他日志文件添加到zip文件中的子文件夹中.是否可以在没有额外的构建步骤来移动/复制文件的情况下执行此操作?例如:

E:\Logs\**\* => Logs.zip
D:\ThirdParty\Logs\*.txt => Logs.zip\ThirdParty\ 
Run Code Online (Sandbox Code Playgroud)

teamcity zip teamcity-10

4
推荐指数
1
解决办法
791
查看次数

使用Teamcity Kotlin DSL触发

我在Kotlin中定义了Teamcity工作,我想添加一个触发器.

我用了:

buildType {
    triggers {
        trigger {
            type = "VCS Trigger"
            enabled = true
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

但这导致了 未知构建触发器

我应该使用什么定义来实现适当的VCS触发器

teamcity kotlin teamcity-10

2
推荐指数
1
解决办法
524
查看次数

标签 统计

teamcity ×2

teamcity-10 ×2

kotlin ×1

zip ×1