Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for PublishGradleDistributionFullBuild (0.32 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
    
    import vcsroots.gradlePromotionMaster
    
    abstract class PublishGradleDistributionFullBuild(
        // The branch to be promoted
        promotedBranch: String,
        prepTask: String? = null,
        promoteTask: String,
        triggerName: String,
        gitUserName: String = "bot-teamcity",
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Feb 13 14:18:23 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/promotion/PublishBranchSnapshotFromQuickFeedback.kt

    import jetbrains.buildServer.configs.kotlin.ParameterDisplay
    import jetbrains.buildServer.configs.kotlin.RelativeId
    import vcsroots.gradlePromotionBranches
    
    object PublishBranchSnapshotFromQuickFeedback : PublishGradleDistributionFullBuild(
        promotedBranch = "%branch.to.promote%",
        triggerName = "QuickFeedback",
        prepTask = "prepSnapshot",
        promoteTask = "promoteSnapshot",
        extraParameters = "-PpromotedBranch=%branch.qualifier% ",
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshot.kt

    import jetbrains.buildServer.configs.kotlin.triggers.schedule
    import vcsroots.gradlePromotionBranches
    
    class PublishNightlySnapshot(branch: VersionedSettingsBranch) : PublishGradleDistributionFullBuild(
        promotedBranch = branch.branchName,
        prepTask = branch.prepNightlyTaskName(),
        promoteTask = branch.promoteNightlyTaskName(),
        triggerName = "ReadyforNightly",
    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)
  4. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedback.kt

     */
    
    package promotion
    
    import common.VersionedSettingsBranch
    import vcsroots.gradlePromotionBranches
    
    class PublishNightlySnapshotFromQuickFeedback(branch: VersionedSettingsBranch) : PublishGradleDistributionFullBuild(
        promotedBranch = branch.branchName,
        prepTask = branch.prepNightlyTaskName(),
        promoteTask = branch.promoteNightlyTaskName(),
        triggerName = "QuickFeedback",
        vcsRootId = gradlePromotionBranches
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jul 25 21:00:40 GMT 2022
    - 1.3K 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%",
        gitUserName = "%gitUserName%",
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/promotion/PublishNightlyDocumentation.kt

    import jetbrains.buildServer.configs.kotlin.triggers.schedule
    import model.StageName
    import vcsroots.gradlePromotionBranches
    
    class PublishNightlyDocumentation(branch: VersionedSettingsBranch) : PublishGradleDistributionFullBuild(
        promotedBranch = branch.branchName,
        promoteTask = "publishBranchDocs",
        triggerName = StageName.PULL_REQUEST_FEEDBACK.uuid,
        vcsRootId = gradlePromotionBranches
    ) {
        init {
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Feb 07 17:05:02 GMT 2024
    - 2.2K bytes
    - Viewed (0)
Back to top