Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IntegTest (0.05 sec)

  1. .teamcity/src/main/kotlin/promotion/BasePublishGradleDistribution.kt

                **/build/git-checkout/build/distributions/*.zip => promote-build-distributions
                **/build/git-checkout/build/reports/integTest/** => distribution-tests
                **/build/releases-data-checkout/data/releases.xml
                **/smoke-tests/build/reports/tests/** => post-smoke-tests
                **/build/version-info.properties => version-info.properties
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/GenerateAutoTestedSamplesTestTask.kt

    /**
     * This task scans the main source set and findd samples in javadoc with `class='autoTested'`,
     * then generates a subclass of AbstractAutoTestedSamplesTest for each class including samples and adds them to the integTest.
     *
     * For example, we have two classes ABC.java and XYZ.groovy that include `class='autoTested'`,
     * there will be two files generated: `ABCAutoTestedSamplesTest.groovy` and `XYZAutoTestedSamplesTest.groovy`
     */
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Dec 19 06:44:41 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  3. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

            })
        }
    }
    
    fun addCompileAllTasks() {
        tasks.register("compileAll") {
            description = "Compile all source code, including main, test, integTest, crossVersionTest, testFixtures, etc."
            val compileTasks = project.tasks.matching {
                it is JavaCompile || it is GroovyCompile || it is KotlinCompile
            }
            dependsOn(compileTasks)
        }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Dec 19 06:44:41 UTC 2025
    - 18.9K bytes
    - Viewed (0)
Back to top