Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for Release (0.17 sec)

  1. .teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt

         *
         * Currently, we only enable VCS trigger for `master`/`release`/`releaseNx` branches.
         */
        val enableVcsTriggers: Boolean = nightlyPromotionTriggerHour != null
    
        companion object {
            private
            const val MASTER_BRANCH = "master"
    
            private
            const val RELEASE_BRANCH = "release"
    
            private
            const val EXPERIMENTAL_BRANCH = "experimental"
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  2. .teamcity/README.md

    and test another isolated pipeline from any branch. 
    
    We'll explain everything via an example. Let's say you make some changes on your branch `myTestBranch`
    (we highly recommend to name this branch without prefix and hyphen (`-`) because it's used to generate build type ID) and want to
    test these changes without affecting `master`/`release` pipeline. Here are the instructions.
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Mar 06 23:02:25 GMT 2024
    - 4K bytes
    - Viewed (0)
  3. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/ReleasedVersionsDetails.kt

            // Only use latest patch release of each Gradle version
            allTestedVersions = testedVersions.map { VersionNumber.parse(it.gradleVersion().version) }
                .groupBy { "${it.major}.${it.minor}" }
                .map { (_, v) -> v.maxOrNull()!!.format() }
    
            // Limit to first and last release of each major version
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  4. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

            if (result.exitValue == 0) outputText.trim()
            else "<unknown>" // It's a source distribution, we don't know.
        }
    }
    
    
    // pre-test/master/queue/alice/feature -> master
    // pre-test/release/current/bob/bugfix -> release
    // gh-readonly-queue/master/pr-1234-5678abcdef -> master
    fun toMergeQueueBaseBranch(actualBranch: String): String = when {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 09 22:52:01 GMT 2024
    - 5.7K bytes
    - Viewed (2)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleReleaseNotesPlugin.java

                task.getDestinationFile().convention(extension.getStagingRoot().file("release-notes/raw.html"));
            });
    
            TaskProvider<DecorateReleaseNotes> releaseNotesPostProcess = tasks.register("releaseNotes", DecorateReleaseNotes.class, task -> {
                task.setGroup("release notes");
                task.setDescription("Transforms generated release notes.");
    
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Mar 10 11:32:18 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotes.java

    public abstract class ReleaseNotes {
        /**
         * The source markdown file for the release notes.
         */
        public abstract RegularFileProperty getMarkdownFile();
    
        /**
         * The base CSS file used by all documentation.
         */
        public abstract RegularFileProperty getBaseCssFile();
    
        /**
         * The release notes specific CSS file
         */
        public abstract RegularFileProperty getReleaseNotesCssFile();
    
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.6K bytes
    - Viewed (0)
  7. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateInitPluginTemplateVersionFile.kt

            findLatest("guava", "com.google.guava:guava:(20,)", versionProperties)
            findLatest("commons-math", "org.apache.commons:commons-math3:latest.release", versionProperties)
            findLatest("commons-text", "org.apache.commons:commons-text:latest.release", versionProperties)
            findLatest("kotlin", "org.jetbrains.kotlin:kotlin-gradle-plugin:(1.4,)", versionProperties)
    
            store(versionProperties)
        }
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 19 11:19:07 GMT 2023
    - 5K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

                    append("<title>Gradle @version@ Release Notes</title>").
                    append("<link rel='stylesheet' type='text/css' href='https://assets.gradle.com/lato/css/lato-font.css'/>");
            addCssToHead(document);
            addJavascriptToHead(document);
    
            wrapH2InSectionTopic(document);
            addAnchorsForHeadings(document);
            document.body().prepend("<h1>Gradle Release Notes</h1>");
            addTOC(document);
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Jan 26 13:00:32 GMT 2023
    - 8.1K bytes
    - Viewed (0)
  9. .github/workflows/contributor-pr.yml

        branches:
          - master
      pull_request:
        branches:
          - master
    
    concurrency:
      # On master/release, we don't want any jobs cancelled so the sha is used to name the group
      # On PR branches, we cancel the job if new commits are pushed
      group: ${{ (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/release' ) && format('contributor-pr-base-{0}', github.sha) || format('contributor-pr-{0}', github.ref) }}
      cancel-in-progress: true
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 16 09:36:52 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/promotion/PublishRelease.kt

        requiredConfirmationCode = "rc",
        init = {
            id("Promotion_ReleaseCandidate")
            name = "Release - Release Candidate"
            description = "Promotes the latest successful change on 'release' as a new release candidate"
        }
    )
    
    class PublishMilestone(branch: VersionedSettingsBranch) : PublishRelease(
        promotedBranch = branch.branchName,
        prepTask = "prepMilestone",
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 3.5K bytes
    - Viewed (0)
Back to top