Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for promotionBuild (0.07 sec)

  1. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/tasks/BuildReceipt.kt

        @get:Input
        @get:Optional
        abstract val commitId: Property<String>
    
        @get:Input
        abstract val snapshot: Property<Boolean>
    
        @get:Input
        abstract val promotionBuild: Property<Boolean>
    
        @get:Input
        @get:Optional
        abstract val buildTimestamp: Property<Date>
    
        @get:OutputDirectory
        abstract val receiptFolder: DirectoryProperty
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 16 02:21:13 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. 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.
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 30 16:56:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  3. 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" }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 30 16:56:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  4. 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")
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 30 16:56:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  5. 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") }
        }
    
    
    /**
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 18 22:01:30 UTC 2025
    - 17.7K bytes
    - Viewed (0)
Back to top