Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GRADLE_RUNNER (1.31 sec)

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

            val os = Os.LINUX
            val buildTypeThis = this
            val testProject = "smallJavaMultiProject"
    
            fun BuildSteps.gradleStep(tasks: List<String>) {
                gradleWrapper {
                    name = "GRADLE_RUNNER"
                    gradleParams =
                        (
                            tasks +
                                buildToolGradleParameters(isContinue = false)
                        ).joinToString(separator = " ")
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

    import jetbrains.buildServer.configs.kotlin.buildFeatures.pullRequests
    import jetbrains.buildServer.configs.kotlin.buildSteps.script
    import model.CIBuildModel
    
    const val GRADLE_RUNNER_STEP_NAME = "GRADLE_RUNNER"
    const val GRADLE_RETRY_RUNNER_STEP_NAME = "GRADLE_RETRY_RUNNER"
    
    fun checkCleanDirUnixLike(
        dir: String,
        exitOnFailure: Boolean = true,
    ) = """
        REPO=$dir
        if [ -e ${'$'}REPO ] ; then
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Jun 11 12:58:05 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/PerformanceTest.kt

                        repeat(if (performanceTestBuildSpec.type == PerformanceTestType.FLAKINESS_DETECTION) 2 else 1) { repeatIndex: Int ->
                            gradleWrapper {
                                name = "GRADLE_RUNNER${if (repeatIndex == 0) "" else "_2"}"
                                tasks = ""
                                workingDir = os.perfTestWorkingDir
    
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

            val buildTypeThis = this
            steps {
                killProcessStep(buildTypeThis, KILL_ALL_GRADLE_PROCESSES, os)
                substDirOnWindows(os)
                gradleWrapper {
                    name = "GRADLE_RUNNER"
                    workingDir = os.perfTestWorkingDir
                    gradleParams =
                        (
                            performanceTestCommandLine(
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.5K bytes
    - Viewed (0)
Back to top