- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for GradleMaster (0.1 sec)
-
.teamcity/src/test/kotlin/common.kt
// Set the project id here, so we can use methods on the DslContext parentProjectId = AbsoluteId("Gradle") projectId = AbsoluteId("Gradle_Master") settingsRootId = AbsoluteId("GradleMaster") settingsRoot.name = "GradleMaster" addParameters("Branch" to "master") }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 24 06:22:49 UTC 2024 - 662 bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt
package common import jetbrains.buildServer.configs.kotlin.DslContext fun isSecurityFork(): Boolean { return DslContext.settingsRoot.id.toString().lowercase().contains("security") } // GradleMaster -> Master // GradleSecurityAdvisory84mwRelease -> SecurityAdvisory84mwRelease val DslContext.uuidPrefix: String get() = settingsRoot.id.toString().substringAfter("Gradle") data class VersionedSettingsBranch(val branchName: String) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 26 12:59:03 UTC 2024 - 3.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlyDocumentation.kt
// https://www.jetbrains.com/help/teamcity/2022.04/configuring-schedule-triggers.html#general-syntax-1 // We want it to be triggered only when there're pending changes in the specific vcs root, i.e. GradleMaster/GradleRelease triggerRules = "+:root=${VersionedSettingsBranch.fromDslContext().vcsRootId()}:." // The promotion itself will be triggered on gradle-promote's master branch
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Feb 07 17:05:02 UTC 2024 - 2.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshot.kt
// https://www.jetbrains.com/help/teamcity/2022.04/configuring-schedule-triggers.html#general-syntax-1 // We want it to be triggered only when there're pending changes in the specific vcs root, i.e. GradleMaster/GradleRelease triggerRules = "+:root=${VersionedSettingsBranch.fromDslContext().vcsRootId()}:." // The promotion itself will be triggered on gradle-promote's master branch
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Dec 05 00:08:14 UTC 2023 - 2.6K bytes - Viewed (0)