Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for Teamcity (3.21 sec)

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

        ;
    
        fun asName() = name.lowercase().toCapitalized()
    }
    
    enum class Os(
        val agentRequirement: String,
        val androidHome: String,
        val jprofilerHome: String,
        val perfTestWorkingDir: String = "%teamcity.build.checkoutDir%",
        val perfTestJavaVendor: JvmVendor = JvmVendor.OPENJDK,
        val buildJavaVersion: JvmVersion = BuildToolBuildJvm.version,
        val perfTestJavaVersion: JvmVersion = JvmVersion.JAVA_17,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  2. .teamcity/pluginData/Check/plugin-settings.xml

          </states>
          <build-types enabled-for-all="false" enabled-for-subprojects="false">
            <build-type id="bt270451" />
          </build-types>
        </webhook>
        <webhook url="https://gradle-bot.grdev.net/teamcity" enabled="true" template="legacy-tailored-json">
          <states>
            <state type="buildAddedToQueue" enabled="false" />
            <state type="buildRemovedFromQueue" enabled="false" />
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue May 18 02:15:16 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/VcsTriggers.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package configurations
    
    val triggerExcludes =
        """
        -:.idea
        -:.github
        -:.teamcity
        -:platforms/documentation/docs/src/docs/release
        """.trimIndent()
    
    fun branchesFilterExcluding(vararg excludedBranch: String) =
        """
    +:*
    ${excludedBranch.joinToString("\n") { "-:$it" }}
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 913 bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/promotion/PublishBranchSnapshotFromQuickFeedback.kt

            val triggerName = this.triggerName
    
            params {
                text(
                    "branch.qualifier",
                    "%dep.${RelativeId("Check_Stage_${triggerName}_Trigger")}.teamcity.build.branch%",
                    label = "Branch qualifier for the published distribution version",
                    description = "The published distribution version looks like '8.13-branch-%branch.qualifier%-20241217145847+0000'.",
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/promotion/PublishNightlyDocumentation.kt

                            }
                        triggerBuild = always()
                        withPendingChangesOnly = true
                        enabled = branch.enableVcsTriggers
                        // https://www.jetbrains.com/help/teamcity/2022.04/configuring-schedule-triggers.html#general-syntax-1
                        // We want it to be triggered only when there're pending changes in the specific vcs root, i.e. GradleMaster/GradleRelease
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Apr 30 14:48:06 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

                        model,
                        ":$performanceProjectName:$taskName",
                        extraParameters =
                            listOf(
                                "-Porg.gradle.performance.branchName" to "%teamcity.build.branch%",
                                "-Porg.gradle.performance.db.url" to "%performance.db.url%",
                                "-Porg.gradle.performance.db.username" to "%performance.db.username%",
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  7. .github/workflows/contributor-pr.yml

        runs-on: ubuntu-latest
        steps:
          - name: git clone
            uses: actions/checkout@v5
          - id: setup-matrix
            run: echo "matrix=$(jq -c -f .github/workflows/extract-unit-test-split.jq .teamcity/subprojects.json)" >> $GITHUB_OUTPUT
          - name: setup java
            uses: actions/setup-java@v5
            with:
              distribution: temurin
              java-version: 17
          - id: determine-sys-prop-args
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Sep 04 22:13:34 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

     *
     * Usage: `mvn compile exec:java@update-test-buckets -DinputTestClassDataJson=/path/to/test-class-data.json`.
     * You can get the JSON file as an artifacts of the "autoUpdateTestSplitJsonOnGradleMaster" pipeline in TeamCity.
     */
    fun main() {
        val model =
            CIBuildModel(
                projectId = "Check",
                branch = VersionedSettingsBranch("master"),
                buildScanTags = listOf("Check"),
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Apr 10 15:09:32 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  9. .github/CODEOWNERS

    ## 2. GBT-related team should be listed first.
    ## 3. Try to keep paths alphabetically sorted within visual groups.
    ## 4. List individual owners last.
    ##
    
    # Build infrastructure
    .teamcity/                                  @gradle/bt-developer-productivity
    .github/                                    @gradle/bt-developer-productivity @gradle/bt-product-operations # This might need to be more finegrained in the future
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Jul 28 01:45:03 UTC 2025
    - 10.9K bytes
    - Viewed (0)
Back to top