- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for cleanupRule (0.07 sec)
-
.teamcity/src/main/kotlin/promotion/PromotionProject.kt
import common.OpenJdk17 import common.OpenJdk8 import common.Os import common.VersionedSettingsBranch import common.cleanupRule import common.javaHome import jetbrains.buildServer.configs.kotlin.Project class PromotionProject(branch: VersionedSettingsBranch) : Project({ id("Promotion") name = "Promotion" cleanupRule(historyDays = 14, artifactsDays = 7) buildType(SanityCheck) buildType(PublishNightlySnapshot(branch))
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 15 09:53:08 UTC 2024 - 2.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/extensions.kt
* @param artifactPatterns patterns for artifacts clean-up. If not specified, all artifacts will be removed. */ fun Project.cleanupRule(historyDays: Int, artifactsDays: Int, artifactsPatterns: String? = null) { features { this@cleanupRule.cleanup { baseRule { history(days = historyDays) } baseRule { artifacts(
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 10 03:25:26 UTC 2024 - 13.2K bytes - Viewed (0)