Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Daily (0.26 sec)

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

            triggers {
                branch.nightlyPromotionTriggerHour?.let { triggerHour ->
                    schedule {
                        if (branch.isMainBranch) {
                            schedulingPolicy = daily {
                                this.hour = triggerHour
                            }
                        } else {
                            schedulingPolicy = weekly {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 2.6K bytes
    - Viewed (1)
  2. .teamcity/src/main/kotlin/promotion/StartReleaseCycleTest.kt

            triggers {
                vcs {
                    branchFilter = "+:master"
                    enabled = enableTriggers
                }
                schedule {
                    schedulingPolicy = daily {
                        hour = 3
                    }
                    branchFilter = "+:master"
                    triggerBuild = always()
                    withPendingChangesOnly = false
                    enabled = enableTriggers
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 2K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/promotion/PublishNightlyDocumentation.kt

            triggers {
                branch.nightlyPromotionTriggerHour?.let { triggerHour ->
                    schedule {
                        schedulingPolicy = daily {
                            this.hour = triggerHour
                        }
                        triggerBuild = always()
                        withPendingChangesOnly = true
                        enabled = branch.enableVcsTriggers
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Feb 07 17:05:02 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/StagePasses.kt

                    schedulingPolicy = weekly {
                        dayOfWeek = ScheduleTrigger.DAY.Saturday
                        hour = 1
                    }
                } else {
                    schedulingPolicy = daily {
                        hour = 0
                        minute = 30
                    }
                }
                triggerBuild = always()
                withPendingChangesOnly = true
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                ),
                performanceTests = performanceRegressionTestCoverages
            ),
            Stage(
                StageName.READY_FOR_RELEASE,
                trigger = Trigger.daily,
                specificBuilds = listOf(
                    SpecificBuild.TestPerformanceTest,
                    SpecificBuild.FlakyTestQuarantineLinux,
                    SpecificBuild.FlakyTestQuarantineMacOs,
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 23 01:54:48 GMT 2024
    - 20.9K bytes
    - Viewed (0)
Back to top