Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for taskNames (0.17 sec)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

    /**
     * Is a promotion build task called?
     */
    val Project.isPromotionBuild: Boolean
        get() {
            val taskNames = gradle.startParameter.taskNames
            return taskNames.contains("promotionBuild") ||
                // :updateReleasedVersionsToLatestNightly and :updateReleasedVersions
                taskNames.any { it.contains("updateReleasedVersions") }
        }
    
    
    /**
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jan 01 01:23:31 GMT 2024
    - 16.2K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

        val defaultExecuter = "embedded"
    
        // For all the other executers, add an executer specific task
        testType.executers.forEach { executer ->
            val taskName = "$executer${prefix.capitalize()}Test"
            val testTask = createTestTask(taskName, executer, sourceSet, testType) {}
            if (executer == defaultExecuter) {
                // The test task with the default executer runs with 'check'
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Feb 12 13:19:06 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

    - For example: `./gradlew :launcher:quickTest`.
    2. Install Gradle locally and try out a change in behavior manually. 
    - Install: `./gradlew install -Pgradle_installPath=/any/path`
    - Use: `/any/path/bin/gradle taskName`.
    
    It's also a good idea to run `./gradlew sanityCheck` before submitting your change because this will help catch code style issues.
    
    > **NOTE:** Do **NOT** run `gradle build` on the local development environment,
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Feb 09 15:30:53 GMT 2024
    - 15.6K bytes
    - Viewed (0)
Back to top