Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for promotionBuild (0.17 sec)

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

                this.baseVersion = ******@****.*** { it.baseVersion.version }
                this.snapshot = ******@****.***ot
                this.promotionBuild = this@ModuleIdentityExtension.promotionBuild
                this.buildTimestampFrom(******@****.***imestamp)
                this.commitId = project.buildCommitId
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  2. 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
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 4.2K bytes
    - Viewed (0)
  3. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts

        moduleIdentity.version.convention(GradleVersion.version(versionNumber))
        moduleIdentity.snapshot.convention(isSnapshot)
        moduleIdentity.buildTimestamp.convention(buildTimestamp)
        moduleIdentity.promotionBuild.convention(isPromotionBuild)
    
        moduleIdentity.releasedVersions = provider {
            ReleasedVersionsDetails(
                moduleIdentity.version.get().baseVersion,
                releasedVersionsFile()
            )
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 4.9K bytes
    - Viewed (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") ||
                // :updateReleasedVersionsToLatestNightly and :updateReleasedVersions
                taskNames.any { it.contains("updateReleasedVersions") }
        }
    
    
    /**
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jan 01 01:23:31 GMT 2024
    - 16.2K bytes
    - Viewed (0)
Back to top