Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for promotionBuild (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/GradleModuleExtension.kt

    }
    
    interface ModuleIdentity {
    
        val version: Property<GradleVersion>
    
        val baseName: Property<String>
    
        val buildTimestamp: Property<String>
    
        val snapshot: Property<Boolean>
    
        val promotionBuild: Property<Boolean>
    
        val releasedVersions: Property<ReleasedVersionsDetails>
    
    }
    
    interface ModuleTargetRuntimes {
    
        /**
         * Declare that this Gradle module runs as part of worker process.
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Oct 30 16:56:31 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  2. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts

        // compute these at the settings-level instead of the project-level.
        identity {
            baseName = "gradle-$name"
            buildTimestamp = buildTimestamp()
            promotionBuild = isPromotionBuild
    
            val finalReleaseSuffix = buildFinalRelease.map { "" }
            val rcSuffix = buildRcNumber.map { "-rc-$it" }
            val milestoneSuffix = buildMilestoneNumber.map { "-milestone-$it" }
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Oct 30 16:56:31 GMT 2025
    - 5.9K bytes
    - Click Count (0)
  3. build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

                dependsOn("signGradleDistributionPublication")
            }
        }
    }
    
    /**
     * 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")
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Oct 30 16:56:31 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  4. 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") ||
                taskNames.any { it.contains("updateReleasedVersions") }
        }
    
    
    /**
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Dec 18 22:01:30 GMT 2025
    - 17.7K bytes
    - Click Count (0)
Back to Top