Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for requiresNotSharedHost (0.22 sec)

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

    import common.buildToolGradleParameters
    import common.customGradle
    import common.dependsOn
    import common.functionalTestParameters
    import common.gradleWrapper
    import common.requiresNotEc2Agent
    import common.requiresNotSharedHost
    import common.skipConditionally
    import jetbrains.buildServer.configs.kotlin.BuildSteps
    import jetbrains.buildServer.configs.kotlin.RelativeId
    import jetbrains.buildServer.configs.kotlin.buildSteps.GradleBuildStep
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Feb 27 09:57:17 GMT 2024
    - 6K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/performance-test-extensions.kt

            build/report-*PerformanceTest.zip => $hiddenArtifactDestination
        """.trimIndent()
        detectHangingBuilds = false
        requirements {
            requiresNotEc2Agent()
            requiresNotSharedHost()
        }
        params {
            param("env.JPROFILER_HOME", os.jprofilerHome)
            param("performance.db.username", "tcagent")
        }
    }
    
    fun performanceTestCommandLine(
        task: String,
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Apr 04 07:21:42 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/common/extensions.kt

     * both run on the same bare metal. Some builds require exclusive access to the
     * hardware resources (e.g. performance test).
     */
    fun Requirements.requiresNotSharedHost() {
        doesNotContain("agent.host.type", "shared")
    }
    
    /**
     * This is an undocumented location that forbids anonymous access.
     * We put artifacts here to avoid accidentally exposing sensitive information publicly.
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 10:49:15 GMT 2024
    - 13K bytes
    - Viewed (0)
Back to top