Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for buildTypeId (0.28 sec)

  1. .teamcity/settings.kts

    import projects.GradleBuildToolRootProject
    
    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
     |        |----- ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:45:05 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/CompileAll.kt

            platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties
        """.trimIndent()
    }) {
        companion object {
            fun buildTypeId(model: CIBuildModel) = buildTypeId(model.projectId)
            fun buildTypeId(projectId: String) = "${projectId}_CompileAllBuild"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:52:00 UTC 2023
    - 999 bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/SmokeIdeTests.kt

    package configurations
    
    import common.requiresNotEc2Agent
    import model.CIBuildModel
    import model.Stage
    
    class SmokeIdeTests(model: CIBuildModel, stage: Stage) : BaseGradleBuildType(stage = stage, init = {
        id(buildTypeId(model))
        name = "Smoke Ide Tests"
        description = "Tests against IDE sync process"
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        requirements {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 14:05:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/SanityCheck.kt

    package configurations
    
    import model.CIBuildModel
    import model.Stage
    
    class SanityCheck(model: CIBuildModel, stage: Stage) : BaseGradleBuildType(stage = stage, init = {
        id(buildTypeId(model))
        name = "Sanity Check"
        description = "Static code analysis, checkstyle, release notes verification, etc."
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        applyDefaults(
            model,
            this,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 30 11:15:05 UTC 2021
    - 708 bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/Tag.java

            public String getClassAttr() {
                return "badge badge-warning";
            }
    
            @Override
            public String getUrl() {
                return "https://builds.gradle.org/viewType.html?buildTypeId=Gradle_Check_PerformanceFlakinessDetectionCoordinator&tab=buildTypeHistoryList";
            }
    
            @Override
            public String getTitle() {
                return title;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/common/extensions.kt

            "%additional.gradle.parameters%",
            if (daemon) "--daemon" else "--no-daemon",
            if (isContinue) "--continue" else ""
        )
    
    fun Dependencies.dependsOn(buildTypeId: RelativeId) {
        dependency(buildTypeId) {
            snapshot {
                onDependencyFailure = FailureAction.FAIL_TO_START
                onDependencyCancel = FailureAction.FAIL_TO_START
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/util/RerunFlakyTest.kt

                description = "Additional options for the test task to run (`-PrerunAllTests` is already added implicitly)"
            )
        }
    
        dependencies {
            compileAllDependency(CompileAll.buildTypeId("Check"))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/configurations/Gradleception.kt

        }
    
        dependencies {
            // If SanityCheck fails, Gradleception will definitely fail because the last build step is also sanityCheck
            dependsOn(RelativeId(SanityCheck.buildTypeId(model)))
        }
    
        /*
         To avoid unnecessary rerun, what we do here is a bit complicated:
    
         1. Build a Gradle distribution with a fixed timestamp and hash it, but never use this distribution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 09:57:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

            }
        }
        if (buildType !is CompileAll) {
            buildType.dependencies {
                compileAllDependency(CompileAll.buildTypeId(model))
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            when using the daemon, especially when using small heap and building a large project.
            Due to a bug (https://builds.gradle.org/viewLog.html?buildId=284033&tab=buildResultsDiv&buildTypeId=Gradle_Master_Performance_PerformanceExperimentsLinux) no instances of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top