Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    import common.VersionedSettingsBranch
    import jetbrains.buildServer.configs.kotlin.triggers.ScheduleTrigger
    import jetbrains.buildServer.configs.kotlin.triggers.schedule
    import vcsroots.gradlePromotionBranches
    
    class PublishNightlySnapshot(branch: VersionedSettingsBranch) : PublishGradleDistributionFullBuild(
        promotedBranch = branch.branchName,
        prepTask = branch.prepNightlyTaskName(),
        promoteTask = branch.promoteNightlyTaskName(),
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 2.6K bytes
    - Viewed (1)
  2. .teamcity/src/main/kotlin/promotion/PromotionProject.kt

    class PromotionProject(branch: VersionedSettingsBranch) : Project({
        id("Promotion")
        name = "Promotion"
    
        cleanupRule(historyDays = 14, artifactsDays = 7)
    
        buildType(SanityCheck)
        buildType(PublishNightlySnapshot(branch))
        buildType(PublishNightlySnapshotFromQuickFeedback(branch))
        buildType(PublishNightlySnapshotFromQuickFeedbackStepCheckReady(branch))
        buildType(PublishNightlySnapshotFromQuickFeedbackStepUpload(branch))
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Feb 29 04:36:37 GMT 2024
    - 2.2K bytes
    - Viewed (0)
Back to top