Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for promotion (0.26 sec)

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

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package promotion
    
    import common.VersionedSettingsBranch
    import jetbrains.buildServer.configs.kotlin.ParameterDisplay
    
    abstract class PublishRelease(
        prepTask: String,
        promoteTask: String,
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshot.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package promotion
    
    import common.VersionedSettingsBranch
    import jetbrains.buildServer.configs.kotlin.triggers.ScheduleTrigger
    import jetbrains.buildServer.configs.kotlin.triggers.schedule
    import vcsroots.gradlePromotionBranches
    
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 2.6K bytes
    - Viewed (1)
  3. .teamcity/src/main/kotlin/promotion/SanityCheck.kt

    package promotion
    
    import common.Os
    import common.VersionedSettingsBranch
    import common.gradleWrapper
    import common.requiresOs
    import jetbrains.buildServer.configs.kotlin.BuildType
    import jetbrains.buildServer.configs.kotlin.triggers.vcs
    import vcsroots.gradlePromotionMaster
    import vcsroots.useAbsoluteVcs
    
    // Gradle_Master_Promotion_SanityCheck
    object SanityCheck : BuildType({
        id("Promotion_SanityCheck")
        name = "SanityCheck"
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 977 bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/promotion/StartReleaseCycle.kt

     */
    
    package promotion
    
    import common.gradleWrapper
    import common.promotionBuildParameters
    import jetbrains.buildServer.configs.kotlin.ParameterDisplay
    import jetbrains.buildServer.configs.kotlin.RelativeId
    import vcsroots.gradlePromotionMaster
    
    object StartReleaseCycle : BasePromotionBuildType(vcsRootId = gradlePromotionMaster) {
        init {
            id("Promotion_StartReleaseCycle")
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 2.4K bytes
    - Viewed (1)
  5. .teamcity/src/test/kotlin/PromotionProjectTests.kt

    import org.junit.jupiter.params.provider.CsvSource
    import promotion.PromotionProject
    
    class PromotionProjectTests {
        init {
            DslContext.initForTest()
        }
    
        @Test
        fun `promotion project has expected build types for master branch`() {
            val model = setupModelFor("master")
    
            assertEquals("Promotion", model.name)
            assertEquals(10, model.buildTypes.size)
            assertEquals(
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue Feb 13 14:18:23 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  6. .teamcity/settings.kts

     |        |---- QuickFeedbackLinux (buildTypeId: Gradle_Master_Check_QuickFeedbackLinux)
     |        |---- QuickFeedback
     |        |---- ...
     |        |---- ReadyForRelease
     |
     |----- Promotion (buildTypeId: Gradle_Master_Promotion)
     |        |----- Nightly Snapshot
     |        |----- ...
     |
     |----- Util
             |----- WarmupEc2Agent
             |----- AdHocPerformanceTest
    
    Release (buildTypeId: Gradle_Release)
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/promotion/PublishNightlyDocumentation.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package promotion
    
    import common.VersionedSettingsBranch
    import jetbrains.buildServer.configs.kotlin.triggers.schedule
    import model.StageName
    import vcsroots.gradlePromotionBranches
    
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Wed Feb 07 17:05:02 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/promotion/PublishBranchSnapshotFromQuickFeedback.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package promotion
    
    import jetbrains.buildServer.configs.kotlin.ParameterDisplay
    import jetbrains.buildServer.configs.kotlin.RelativeId
    import vcsroots.gradlePromotionBranches
    
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepCheckReady.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package promotion
    
    import common.VersionedSettingsBranch
    import vcsroots.gradlePromotionBranches
    
    class PublishNightlySnapshotFromQuickFeedbackStepCheckReady(branch: VersionedSettingsBranch) : BasePublishGradleDistribution(
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon Jul 25 21:00:40 GMT 2022
    - 1.2K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedback.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package promotion
    
    import common.VersionedSettingsBranch
    import vcsroots.gradlePromotionBranches
    
    class PublishNightlySnapshotFromQuickFeedback(branch: VersionedSettingsBranch) : PublishGradleDistributionFullBuild(
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon Jul 25 21:00:40 GMT 2022
    - 1.3K bytes
    - Viewed (0)
Back to top