Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PublishNightlySnapshot (1.22 sec)

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

    import jetbrains.buildServer.configs.kotlin.triggers.ScheduleTrigger
    import jetbrains.buildServer.configs.kotlin.triggers.schedule
    
    const val NIGHTLY_SNAPSHOT_BUILD_ID = "Promotion_Nightly"
    
    class PublishNightlySnapshot(
        branch: VersionedSettingsBranch,
    ) : PublishGradleDistributionFullBuild(
            promotedBranch = branch.branchName,
            prepTask = branch.prepNightlyTaskName(),
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 27 05:37:08 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/promotion/PromotionProject.kt

    ) : Project({
            id("Promotion")
            name = "Promotion"
    
            cleanupRule(historyDays = 14, artifactsDays = 7)
    
            buildType(SanityCheck)
            buildType(PublishNightlySnapshot(branch))
            buildType(PublishNightlySnapshotFromQuickFeedback(branch))
            buildType(PublishNightlySnapshotFromQuickFeedbackStepCheckReady(branch))
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 2.8K bytes
    - Viewed (0)
Back to top