Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for buildType1 (0.22 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

                .mutate(BuildTypeContainer) { it.add named(BuildType, "bt") }
                .mutate(FlavorContainer) { it.add named(Flavor, "flavor1") }
    
            then:
            single(toolChains).name == 'tc'
            platforms.size() == 1
            single(buildTypes).name == 'bt'
            single(flavors).name == 'flavor1'
        }
    
        def "creates binaries for executable"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/projects/CheckProject.kt

            val stagePasses = StagePasses(model, stage, prevStage, stageProject)
            buildType(stagePasses)
            subProject(stageProject)
    
            prevStage = stage
            previousPerformanceTestPasses.addAll(stageProject.performanceTests)
        }
    
        buildType(GitHubMergeQueueCheckPass(model))
    
        buildTypesOrder = buildTypes
        subProjectsOrder = subProjects
    
        cleanupRule(
            historyDays = 14,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 05:52:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

        buildType.killProcessStep(KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS, os)
        buildType.gradleRunnerStep(model, gradleTasks, os, arch, extraParameters, daemon)
    
        buildType.steps {
            extraSteps()
            killProcessStep(buildType, KILL_PROCESSES_STARTED_BY_GRADLE, os, arch, executionMode = ExecutionMode.ALWAYS)
            checkCleanM2AndAndroidUserHome(os, buildType)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/util/UtilProject.kt

    object UtilProject : Project({
        id("Util")
        name = "Util"
    
        buildType(RerunFlakyTest(Os.LINUX))
        buildType(RerunFlakyTest(Os.WINDOWS))
        buildType(RerunFlakyTest(Os.MACOS, Arch.AMD64))
        buildType(RerunFlakyTest(Os.MACOS, Arch.AARCH64))
        buildType(WarmupEc2Agent)
    
        buildType(PublishKotlinDslPlugin)
    
        params {
            param("env.DEVELOCITY_ACCESS_KEY", "%ge.gradle.org.access.key%")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 03:34:53 UTC 2024
    - 521 bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

                def buildType = Attribute.of('buildType', String)
                def flavor = Attribute.of('flavor', String)
                dependencies {
                    attributesSchema {
                        attribute(buildType)
                        attribute(flavor)
                    }
                }
    
                configurations {
                    foo.attributes { attribute(buildType, 'debug'); attribute(flavor, 'free') }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/promotion/PromotionProject.kt

        buildType(SanityCheck)
        buildType(PublishNightlySnapshot(branch))
        buildType(PublishNightlySnapshotFromQuickFeedback(branch))
        buildType(PublishNightlySnapshotFromQuickFeedbackStepCheckReady(branch))
        buildType(PublishNightlySnapshotFromQuickFeedbackStepUpload(branch))
        buildType(PublishNightlySnapshotFromQuickFeedbackStepPromote(branch))
        buildType(PublishBranchSnapshotFromQuickFeedback)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 04:36:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example/app/build.gradle

        // Grab all build types and product flavors
        def buildTypes = android.buildTypes.collect { type ->
            type.name
        }
        def productFlavors = android.productFlavors.collect { flavor ->
            flavor.name
        }
        // When no product flavors defined, use empty
        if (!productFlavors) productFlavors.add('')
        productFlavors.each { productFlavorName ->
            buildTypes.each { buildTypeName ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

    def usage = Attribute.of('usage', String)
    def buildType = Attribute.of('buildType', String)
    def flavor = Attribute.of('flavor', String)
    
    allprojects {
        repositories {
            ivy { url '${ivyHttpRepo.uri}' }
        }
        dependencies {
            attributesSchema {
               attribute(usage)
               attribute(buildType)
               attribute(flavor)
            }
        }
        configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/legacy/LegacyGradleEnterprisePluginCheckInService.java

                }
            }
        }
    
        private static class Attributes implements BuildScanConfig.Attributes {
            private final BuildType buildType;
    
            public Attributes(BuildType buildType) {
                this.buildType = buildType;
            }
    
            @Override
            public boolean isRootProjectHasVcsMappings() {
                return false;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

            failure.assertHasCause("""No matching variant of project :b was found. The consumer was configured to find attribute 'buildType' with value 'debug', attribute 'flavor' with value 'free' but:
      - Variant 'bar':
          - Incompatible because this component declares attribute 'buildType' with value 'release' and the consumer needed attribute 'buildType' with value 'debug'
          - Other compatible attribute:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
Back to top