Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cleanupRule (2.02 sec)

  1. .teamcity/src/main/kotlin/promotion/PromotionProject.kt

    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)
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/CommonExtensions.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 {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Sep 10 01:37:13 UTC 2025
    - 15K bytes
    - Viewed (0)
Back to top