Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Teamcity (2.73 sec)

  1. .teamcity/pom.xml

                <groupId>org.jetbrains.teamcity</groupId>
                <artifactId>server-api</artifactId>
                <version>${teamcity.dsl.version}</version>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>org.jetbrains.teamcity</groupId>
                <artifactId>configs-dsl-kotlin-latest</artifactId>
                <version>${teamcity.dsl.version}</version>
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Aug 14 07:58:26 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  2. .teamcity/scripts/configure_build_env_on_ec2.sh

    EC2_INSTANCE_TYPE=$(curl -s "http://169.254.169.254/latest/meta-data/instance-type")
    echo "##teamcity[addBuildTag 'ec2-instance-type=$EC2_INSTANCE_TYPE']"
    
    AWS_REGION=$(curl -s "http://169.254.169.254/latest/meta-data/placement/region")
    
    if [[ "$AWS_REGION" == us-* ]]; then
      echo "For $AWS_REGION switching to user teamcityus access token"
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Aug 27 08:28:30 UTC 2025
    - 2K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/common/CommonExtensions.kt

                    checkCleanDirWindows("%teamcity.agent.jvm.user.home%\\.m2\\repository") +
                        checkCleanDirWindows("%teamcity.agent.jvm.user.home%\\.m2\\.gradle-enterprise") +
                        checkCleanDirWindows("%teamcity.agent.jvm.user.home%\\.m2\\.develocity") +
                        checkCleanDirWindows(
                            "%teamcity.agent.jvm.user.home%\\.android",
                            false,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Sep 10 01:37:13 UTC 2025
    - 15K bytes
    - Viewed (0)
  4. .github/workflows/update-jdks.yml

            run: |
              cat << 'EOF' > .teamcity/jdks.yaml.tmp
              # To verify the change, run the build with:
              # @bot-gradle test ReadyForNightly
              # ```
              # stopGradleDaemons=true
              # ```
              EOF
              # Append everything from "version:" onwards
              sed -n '/^version:/,$p' .teamcity/jdks.yaml >> .teamcity/jdks.yaml.tmp
              mv .teamcity/jdks.yaml.tmp .teamcity/jdks.yaml
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Aug 12 07:00:55 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/common/PerformanceTestExtensions.kt

        "-Dorg.gradle.java.installations.auto-download=false",
        "-Porg.gradle.java.installations.auto-download=false",
    ) + os.javaInstallationLocations(arch) +
        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%",
        ).map { (key, value) -> os.escapeKeyValuePair(key, value) }
    
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 4K bytes
    - Viewed (0)
  6. .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)
  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)
Back to top