Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for QuickFeedback (0.78 sec)

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

            assertEquals(10, model.buildTypes.size)
            assertEquals(
                listOf("SanityCheck", "Nightly Snapshot", "Nightly Snapshot (from QuickFeedback)", "Nightly Snapshot (from QuickFeedback) - Check Ready", "Nightly Snapshot (from QuickFeedback) - Upload", "Nightly Snapshot (from QuickFeedback) - Promote", "Publish Branch Snapshot (from Quick Feedback)", "Release - Milestone", "Start Release Cycle", "Start Release Cycle Test"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 14:18:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. .teamcity/settings.kts

    version = "2024.03"
    
    /*
    
    Master (buildTypeId: Gradle_Master)
     |----- Check (buildTypeId: Gradle_Master_Check)
     |        |---- QuickFeedbackLinux (buildTypeId: Gradle_Master_Check_QuickFeedbackLinux)
     |        |---- QuickFeedback
     |        |---- ...
     |        |---- ReadyForRelease
     |
     |----- Promotion (buildTypeId: Gradle_Master_Promotion)
     |        |----- Nightly Snapshot
     |        |----- ...
     |
     |----- Util
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:45:05 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepUpload.kt

        promotedBranch = branch.branchName,
        prepTask = branch.prepNightlyTaskName(),
        triggerName = "QuickFeedback",
        vcsRootId = gradlePromotionBranches
    ) {
        init {
            id("Promotion_SnapshotFromQuickFeedbackStepUpload")
            name = "Nightly Snapshot (from QuickFeedback) - Upload"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 25 21:00:40 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepCheckReady.kt

        prepTask = branch.prepNightlyTaskName(),
        triggerName = "QuickFeedback",
        vcsRootId = gradlePromotionBranches,
        cleanCheckout = false
    ) {
        init {
            id("Promotion_SnapshotFromQuickFeedbackStepCheckReady")
            name = "Nightly Snapshot (from QuickFeedback) - Check Ready"
            description = "Checks that a nightly snapshot can be published from QuickFeedback"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 25 21:00:40 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepPromote.kt

        promotedBranch = branch.branchName,
        prepTask = branch.prepNightlyTaskName(),
        triggerName = "QuickFeedback",
        vcsRootId = gradlePromotionBranches,
        cleanCheckout = false
    ) {
        init {
            id("Promotion_SnapshotFromQuickFeedbackStepPromote")
            name = "Nightly Snapshot (from QuickFeedback) - Promote"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 09 14:10:43 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedback.kt

        prepTask = branch.prepNightlyTaskName(),
        promoteTask = branch.promoteNightlyTaskName(),
        triggerName = "QuickFeedback",
        vcsRootId = gradlePromotionBranches
    ) {
        init {
            id("Promotion_SnapshotFromQuickFeedback")
            name = "Nightly Snapshot (from QuickFeedback)"
            description = "Promotes the latest successful changes on '${branch.branchName}' from Quick Feedback as a new nightly snapshot"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 25 21:00:40 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/promotion/PublishBranchSnapshotFromQuickFeedback.kt

    import vcsroots.gradlePromotionBranches
    
    object PublishBranchSnapshotFromQuickFeedback : PublishGradleDistributionFullBuild(
        promotedBranch = "%branch.to.promote%",
        triggerName = "QuickFeedback",
        prepTask = "prepSnapshot",
        promoteTask = "promoteSnapshot",
        extraParameters = "-PpromotedBranch=%branch.qualifier% ",
        vcsRootId = gradlePromotionBranches
    ) {
        init {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. .teamcity/README.md

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

        QUICK_FEEDBACK("Quick Feedback", "Run checks and functional tests (embedded executer, Windows)", "QuickFeedback"),
        PULL_REQUEST_FEEDBACK("Pull Request Feedback", "Run various functional tests", "PullRequestFeedback"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top