Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CHECK_CLEAN_M2_ANDROID_USER_HOME (0.1 sec)

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

                    "EC2_BUILD_CUSTOMIZATIONS",
                    "KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS",
                    "GRADLE_RUNNER",
                    "KILL_PROCESSES_STARTED_BY_GRADLE",
                    "CHECK_CLEAN_M2_ANDROID_USER_HOME",
                    "EC2_POST_BUILD",
                ),
                steps.items.map(BuildStep::name),
            )
            assertEquals(expectedRunnerParam(), steps.getGradleStep("GRADLE_RUNNER").gradleParams)
        }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Nov 20 07:29:52 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  2. .teamcity/src/test/kotlin/PerformanceTestBuildTypeTest.kt

                listOf(
                    "EC2_BUILD_CUSTOMIZATIONS",
                    "KILL_ALL_GRADLE_PROCESSES",
                    "GRADLE_RUNNER",
                    "KILL_PROCESSES_STARTED_BY_GRADLE",
                    "CHECK_CLEAN_M2_ANDROID_USER_HOME",
                ),
                performanceTest.steps.items.map(BuildStep::name),
            )
            val linuxPaths =
                listOf(
                    "%linux.java8.oracle.64bit%",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Sep 18 12:22:32 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/common/CommonExtensions.kt

            }
        }
    }
    
    fun BuildSteps.checkCleanM2AndAndroidUserHome(
        os: Os = Os.LINUX,
        buildType: BuildType? = null,
    ) {
        script {
            name = "CHECK_CLEAN_M2_ANDROID_USER_HOME"
            executionMode = BuildStep.ExecutionMode.ALWAYS
            scriptContent =
                if (os == Os.WINDOWS) {
                    checkCleanDirWindows("%teamcity.agent.jvm.user.home%\\.m2\\repository") +
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 15.6K bytes
    - Viewed (0)
Back to top