Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for stageTriggerId (0.13 sec)

  1. .teamcity/src/main/kotlin/configurations/StageTriggers.kt

            dependency(RelativeId(stageTriggerId(model, prevStage, os))) {
                snapshot {
                    onDependencyFailure = FailureAction.FAIL_TO_START
                    onDependencyCancel = FailureAction.FAIL_TO_START
                }
            }
        }
    }
    
    fun stageTriggerId(
        model: CIBuildModel,
        stage: Stage,
        os: Os? = null,
    ) = stageTriggerId(model, stage.stageName, os)
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 30 12:17:39 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/GitHubMergeQueueCheckPass.kt

                    branchFilter = determineBranchFilter(listOf("gh-readonly-queue/${model.branch.branchName}/*", model.branch.branchName))
                }
            }
    
            dependencies {
                snapshot(RelativeId(stageTriggerId(model, StageName.READY_FOR_NIGHTLY))) {
                    onDependencyFailure = FailureAction.FAIL_TO_START
                    onDependencyCancel = FailureAction.FAIL_TO_START
                }
            }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Oct 14 16:28:05 UTC 2025
    - 1.7K bytes
    - Viewed (0)
Back to top