- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for PublishGradleDistributionFullBuild (0.26 sec)
-
.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",
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Feb 13 14:18:23 UTC 2024 - 1.8K bytes - Viewed (0) -
.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",
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Dec 05 00:08:14 UTC 2023 - 2.6K bytes - Viewed (0) -
.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%",
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Dec 05 00:08:14 UTC 2023 - 3.5K bytes - Viewed (0) -
.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% ",
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Dec 05 00:08:14 UTC 2023 - 1.9K bytes - Viewed (0) -
.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 {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Feb 07 17:05:02 UTC 2024 - 2.2K bytes - Viewed (0)