Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for PublishGradleDistributionFullBuild (1.34 sec)

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

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package promotion
    
    abstract class PublishGradleDistributionFullBuild(
        // The branch to be promoted
        promotedBranch: String,
        prepTask: String? = null,
        promoteTask: String,
        triggerName: String,
        gitUserName: String = "bot-teamcity",
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedback.kt

     * limitations under the License.
     */
    
    package promotion
    
    import common.VersionedSettingsBranch
    
    class PublishNightlySnapshotFromQuickFeedback(
        branch: VersionedSettingsBranch,
    ) : PublishGradleDistributionFullBuild(
            promotedBranch = branch.branchName,
            prepTask = branch.prepNightlyTaskName(),
            promoteTask = branch.promoteNightlyTaskName(),
            triggerName = "QuickFeedback",
        ) {
        init {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshot.kt

    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(),
            promoteTask = branch.promoteNightlyTaskName(),
            triggerName = "ReadyforNightly",
        ) {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 27 05:37:08 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/promotion/PublishBranchSnapshotFromQuickFeedback.kt

     */
    
    package promotion
    
    import jetbrains.buildServer.configs.kotlin.ParameterDisplay
    import jetbrains.buildServer.configs.kotlin.RelativeId
    
    object PublishBranchSnapshotFromQuickFeedback : PublishGradleDistributionFullBuild(
        promotedBranch = "%branch.qualifier%",
        triggerName = "QuickFeedback",
        prepTask = "prepSnapshot",
        promoteTask = "promoteSnapshot",
        extraParameters = "-PpromotedBranch=%branch.qualifier%",
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/promotion/PublishRelease.kt

    abstract class PublishRelease(
        prepTask: String,
        promoteTask: String,
        requiredConfirmationCode: String,
        promotedBranch: String,
        init: PublishRelease.() -> Unit = {},
    ) : PublishGradleDistributionFullBuild(
            promotedBranch = promotedBranch,
            prepTask = prepTask,
            promoteTask = promoteTask,
            triggerName = "ReadyforRelease",
            gitUserEmail = "%gitUserEmail%",
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Jul 24 03:08:48 UTC 2025
    - 4K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/promotion/PublishNightlyDocumentation.kt

    import common.VersionedSettingsBranch
    import jetbrains.buildServer.configs.kotlin.triggers.schedule
    import model.StageName
    
    class PublishNightlyDocumentation(
        branch: VersionedSettingsBranch,
    ) : PublishGradleDistributionFullBuild(
            promotedBranch = branch.branchName,
            promoteTask = "publishBranchDocs",
            triggerName = StageName.PULL_REQUEST_FEEDBACK.uuid,
        ) {
        init {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Apr 30 14:48:06 UTC 2025
    - 2.1K bytes
    - Viewed (0)
Back to top