Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for RelativeId (3.11 sec)

  1. .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
    
    object StartReleaseCycle : BasePromotionBuildType() {
        init {
            id("Promotion_StartReleaseCycle")
            name = "Start Release Cycle"
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/promotion/PublishBranchSnapshotFromQuickFeedback.kt

     * limitations under the License.
     */
    
    package promotion
    
    import jetbrains.buildServer.configs.kotlin.ParameterDisplay
    import jetbrains.buildServer.configs.kotlin.RelativeId
    
    object PublishBranchSnapshotFromQuickFeedback : PublishGradleDistributionFullBuild(
        promotedBranch = "%branch.qualifier%",
        triggerName = "QuickFeedback",
        prepTask = "prepSnapshot",
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/promotion/BasePublishGradleDistribution.kt

    import common.gradleWrapper
    import common.promotionBuildParameters
    import jetbrains.buildServer.configs.kotlin.BuildSteps
    import jetbrains.buildServer.configs.kotlin.FailureAction
    import jetbrains.buildServer.configs.kotlin.RelativeId
    
    abstract class BasePublishGradleDistribution(
        // The branch to be promoted
        val promotedBranch: String,
        val prepTask: String?,
        val triggerName: String,
        val gitUserName: String = "bot-teamcity",
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Jun 26 12:10:23 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/projects/StageProject.kt

                    artifacts(performanceTestTrigger) {
                        id =
                            "artifact_dependency_${performancePartialTrigger.uuid}_${(performanceTestTrigger.id as RelativeId).relativeId}"
                        artifactRules = "**/* => $artifactDirName"
                    }
                }
            }
            return performancePartialTrigger
        }
    
        private fun createFlameGraphs(
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jul 29 03:24:58 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/common/CommonExtensions.kt

        // Compile All has to succeed before anything else is started
        dependsOn(RelativeId(compileAllId))
        // Get the build receipt from sanity check to reuse the timestamp
        artifacts(RelativeId(compileAllId)) {
            id = "ARTIFACT_DEPENDENCY_$compileAllId"
            cleanDestination = true
            artifactRules = "build-receipt.properties => incoming-distributions"
        }
    }
    
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Sep 10 01:37:13 UTC 2025
    - 15K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/StageTriggers.kt

    import jetbrains.buildServer.configs.kotlin.Dependencies
    import jetbrains.buildServer.configs.kotlin.DslContext
    import jetbrains.buildServer.configs.kotlin.FailureAction
    import jetbrains.buildServer.configs.kotlin.RelativeId
    import jetbrains.buildServer.configs.kotlin.SnapshotDependency
    import jetbrains.buildServer.configs.kotlin.triggers.ScheduleTrigger
    import jetbrains.buildServer.configs.kotlin.triggers.VcsTrigger
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Jun 11 10:33:45 UTC 2025
    - 6.8K bytes
    - Viewed (0)
Back to top