Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ReadyforRelease (0.1 sec)

  1. .teamcity/src/test/kotlin/BuildScanTagUtilsTest.kt

                model.stages[0].getBuildScanCustomValueParam()
            )
            assertEquals(
                "-DbuildScan.PartOf=QuickFeedback,PullRequestFeedback,ReadyforNightly,ReadyforRelease",
                model.stages[1].getBuildScanCustomValueParam()
            )
            assertEquals(
                "-DbuildScan.PartOf=ReadyforRelease",
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Mon Sep 30 07:24:00 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. .teamcity/settings.kts

     |----- Check (buildTypeId: Gradle_Master_Check)
     |        |---- QuickFeedbackLinux (buildTypeId: Gradle_Master_Check_QuickFeedbackLinux)
     |        |---- QuickFeedback
     |        |---- ...
     |        |---- ReadyForRelease
     |
     |----- Promotion (buildTypeId: Gradle_Master_Promotion)
     |        |----- Nightly Snapshot
     |        |----- ...
     |
     |----- Util
             |----- WarmupEc2Agent
             |----- AdHocPerformanceTest
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Mon May 13 07:45:05 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. .teamcity/src/test/kotlin/BuildTypeTest.kt

                    "%additional.gradle.parameters%",
                    "--daemon",
                    "--continue",
                    "-DbuildScan.PartOf=QuickFeedbackLinuxOnly,QuickFeedback,PullRequestFeedback,ReadyforNightly,ReadyforRelease",
                    "-Dscan.tag.CompileAll",
                    "-Porg.gradle.java.installations.auto-download=false",
                    "-Dscan.tag.Check",
                    "-PteamCityBuildId=%teamcity.build.id%",
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Mon Sep 30 07:24:00 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. .teamcity/src/test/kotlin/PerformanceTestBuildTypeTest.kt

                "-s",
                "--no-configuration-cache",
                "%additional.gradle.parameters%",
                "--daemon",
                "--continue",
                "-DbuildScan.PartOf=PullRequestFeedback,ReadyforNightly,ReadyforRelease",
                "-Dscan.tag.PerformanceTest"
            )
    
            assertEquals(
                (
                    listOf(
                        "clean",
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Mon Sep 30 07:24:00 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/promotion/PublishRelease.kt

        init: PublishRelease.() -> Unit = {}
    ) : PublishGradleDistributionFullBuild(
        promotedBranch = promotedBranch,
        prepTask = prepTask,
        promoteTask = promoteTask,
        triggerName = "ReadyforRelease",
        gitUserEmail = "%gitUserEmail%",
        gitUserName = "%gitUserName%",
        extraParameters = "-PconfirmationCode=%confirmationCode%"
    ) {
        init {
            params {
                text(
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/common/BuildScanUtils.kt

    // Generates a build scan custom value "PartOf=X,Y,Z"
    // where X, Y, Z are all the stages including current stage
    // For example, for the stage PullRequestFeedback, the custom value will be "PartOf=PullRequestFeedback,ReadyForNightly,ReadyForRelease"
    private fun Stage.getBuildScanCustomValues(): List<String> {
        return StageName.values()
            .slice(this.stageName.ordinal until StageName.READY_FOR_RELEASE.ordinal + 1)
            .map { it.uuid }
    }
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Mon Sep 30 07:24:00 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/StageTriggers.kt

            }
        }
    }
    
    // https://github.com/gradle/gradle-private/issues/4527
    // https://github.com/gradle/gradle-private/issues/4528
    // Trigger ReadyForNightly and ReadyForRelease for provider-api-migration/public-api-changes-test branch
    // TODO: remove this after the branch is merged
    fun VersionedSettingsBranch.determineBranchFilter(): String {
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Nov 06 08:08:13 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. .teamcity/README.md

    |------ MyTestBranch
            |---------- Check
            |           |--------- QuickFeedbackLinux
            |           |--------- QuickFeedback
            |           |--------- ...
            |           |--------- ReadyForRelease
            |
            |---------- Promotion
            |           |--------- Publish Nightly Snapshot
            |           |--------- Publish Branch Snapshot
            |           |--------- ...
            |
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        READY_FOR_NIGHTLY("Ready for Nightly", "Rerun tests in different environments / 3rd party components", "ReadyforNightly"),
        READY_FOR_RELEASE("Ready for Release", "Once a day: Rerun tests in more environments", "ReadyforRelease"),
        WEEKLY_VALIDATION("Weekly Validation", "Once a week: Run tests in even more environments but less often", "WeeklyValidation"),
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Oct 16 06:14:14 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top