Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for smoke (0.15 sec)

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

            val suffix = if (flakyTestStrategy == FlakyTestStrategy.ONLY)"_FlakyTestQuarantine" else ""
            id("${model.projectId}_SmokeTest_$id$suffix")
            name = "Smoke Tests with 3rd Party Plugins ($task) - ${testJava.version.toCapitalized()} Linux$suffix"
            description = "Smoke tests against third party plugins to see if they still work with the current Gradle version"
    
            if (flakyTestStrategy != FlakyTestStrategy.ONLY) {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/promotion/BasePublishGradleDistribution.kt

                **/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
                """.trimIndent(),
            )
    
            dependencies {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  3. .github/CODEOWNERS

    packaging/public-api                            @gradle/bt-product-operations
    testing/performance/                            @gradle/bt-developer-productivity
    testing/smoke-test/                             @gradle/bt-product-operations
    testing/smoke-test/src/**/*IsolatedProjects*    @gradle/bt-product-operations @gradle/bt-isolated-projects-project
    testing/soak/                                   @gradle/bt-developer-productivity
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Nov 07 21:47:29 UTC 2025
    - 11K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/SmokeIdeTests.kt

            name = "Smoke Ide Tests$suffix"
            description = "Tests against IDE sync process"
    
            requirements {
                // These tests are usually heavy and the build time is twice on EC2 agents
                requiresNotEc2Agent()
            }
    
            applyTestDefaults(
                model = model,
                buildType = this,
                gradleTasks = ":smoke-ide-test:smokeIdeTest",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 09 05:26:45 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  5. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateSmokeTestedPluginsVersions.kt

    import org.gradle.api.tasks.TaskAction
    import org.gradle.api.tasks.UntrackedTask
    import org.gradle.util.internal.VersionNumber
    import java.util.Properties
    
    /**
     * Fetch the latest versions for smoke tested plugins and write a properties file.
     * Never up-to-date, non-cacheable.
     */
    @UntrackedTask(because = "Not worth tracking")
    abstract class UpdateSmokeTestedPluginsVersions : AbstractVersionsUpdateTask() {
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Sep 18 16:06:17 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  6. build-logic/build-update-utils/src/main/kotlin/gradlebuild.update-versions.gradle.kts

        comment = " Generated - Update by running `./gradlew updateSmokeTestedPluginsVersions`"
        propertiesFile = layout.projectDirectory.file("gradle/dependency-management/smoke-tested-plugins.properties")
    }
    
    tasks.register("updateSmokeTestedVersions") {
        dependsOn(updateKotlinVersions, updateAgpVersions, updateSmokeTestedPluginsVersions)
    }
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Oct 24 09:10:28 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  7. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

     *
     * Our performance tests don't work with PTS, yet.
     * Smoke and soak tests are hard to grasp for PTS, that is why we run them without.
     * When running on Windows with PTS, SimplifiedKotlinScriptEvaluatorTest fails. See https://github.com/gradle/gradle-private/issues/3615.
     */
    fun Project.supportsPredictiveTestSelection() = !isPerformanceProject() && !setOf("smoke-test", "soak", "kotlin-dsl", "smoke-ide-test").contains(name)
    
    /**
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Dec 19 06:44:41 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  8. build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

            }
        }
    }
    
    /**
     * Tasks that are called by the (currently separate) promotion build running on CI.
     */
    tasks.register("promotionBuild") {
        description = "Build production distros, smoke test them and publish"
        group = "publishing"
        dependsOn(":packageBuild", "publish")
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 30 16:56:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  9. .teamcity/subprojects.json

        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "smoke-ide-test",
        "path": "testing/smoke-ide-test",
        "unitTests": false,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "smoke-test",
        "path": "testing/smoke-test",
        "unitTests": false,
        "functionalTests": false,
        "crossVersionTests": false
      },
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 18 18:40:11 UTC 2025
    - 37.5K bytes
    - Viewed (0)
  10. ci/official/utilities/setup_macos.sh

    # Pyenv version. We enable this for macOS x86 builds as the default Pyenv on
    # those VMs does not support installing Python 3.12 and above which we need
    # for running smoke tests in nightly/release wheel builds.
    if [[ "${TFCI_MACOS_UPGRADE_PYENV_ENABLE}" == 1 ]]; then
      echo "Upgrading pyenv..."
      echo "Current pyevn version: $(pyenv --version)"
    
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Mon Oct 06 22:42:26 UTC 2025
    - 6.8K bytes
    - Viewed (0)
Back to top