- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 31 for Teamcity (0.09 sec)
-
.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 Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 31 02:38:07 UTC 2024 - 6.6K bytes - Viewed (0) -
.teamcity/README.md
# CI Pipeline Configuration ## Open & import the project In your IDEA, `File` - `Open`, select `.teamcity/pom.xml`, `import as project`, and you'll have a Maven project. ## Project structure Mostly a standard Maven project structure. The entry point `settings.kts` defines the TeamCity project. There are 3 subprojects in the TeamCity project hierarchy: `Check` for Gradle builds, `Promotion` for releasing Gradle versions, `Util` for miscellaneous utilities.
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Mar 06 23:02:25 UTC 2024 - 4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/CheckTeamCityKotlinDSL.kt
name = "CheckTeamCityKotlinDSL" description = "Check Kotlin DSL in .teamcity/" applyDefaultSettings() steps { script { name = "RUN_MAVEN_CLEAN_VERIFY" scriptContent = "./mvnw clean verify -Dmaven.repo.local=../build" workingDir = ".teamcity" } script { name = "CLEAN_M2"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 30 04:10:13 UTC 2024 - 1K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/Gradleception.kt
name = "CALCULATE_MD5_VERSION_FOR_DOGFOODING_DISTRIBUTION" workingDir = "%teamcity.build.checkoutDir%/dogfood-first-for-hash" scriptContent = """ set -x MD5=`find . -type f | sort | xargs md5sum | md5sum | awk '{ print $1 }'` echo "##teamcity[setParameter name='env.ORG_GRADLE_PROJECT_versionQualifier' value='gradleception-${'$'}MD5']"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 08 12:58:46 UTC 2024 - 6.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/CheckProject.kt
params { param("credentialsStorageType", "credentialsJSON") // Disallow Web UI changes to TeamCity settings param("teamcity.ui.settings.readOnly", "true") // Avoid rebuilding same revision if it's already built on another branch param("teamcity.vcsTrigger.runBuildOnSameRevisionInEveryBranch", "false")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 22 07:02:31 UTC 2024 - 3.4K bytes - Viewed (0) -
.teamcity/src/test/kotlin/BuildTypeTest.kt
val buildModel = CIBuildModel( projectId = "Gradle_Check", branch = VersionedSettingsBranch("master"), buildScanTags = listOf("Check"), subprojects = JsonBasedGradleSubprojectProvider(File("../.teamcity/subprojects.json")) ) @Test fun `CompileAll parameters are correct`() { val gradleStep = CompileAll(buildModel, buildModel.stages[0]).steps.getGradleStep(GRADLE_RUNNER_STEP_NAME)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Sep 30 07:24:00 UTC 2024 - 4.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/BasePromotionBuildType.kt
password("env.ORG_GRADLE_PROJECT_botGradleGitHubToken", "%github.bot-gradle.token%") } features { // https://www.jetbrains.com/help/teamcity/shared-resources.html#Viewing+Shared+Resources+Usage // https://blog.jetbrains.com/teamcity/2013/05/explaining-the-shared-resources-plugin/ // we only allow 1 promotion job running at the same time to avoid website xml conflicts feature {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jul 03 00:43:38 UTC 2024 - 2.1K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishGradleDistributionFullBuild.kt
// The branch to be promoted promotedBranch: String, prepTask: String? = null, promoteTask: String, triggerName: String, gitUserName: String = "bot-teamcity", gitUserEmail: String = "bot-teamcity@gradle.com", extraParameters: String = "", vcsRootId: String = gradlePromotionMaster
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Feb 13 14:18:23 UTC 2024 - 1.8K bytes - Viewed (0) -
.teamcity/src/test/kotlin/PerformanceTestBuildTypeTest.kt
val buildModel = CIBuildModel( projectId = "Gradle_Check", branch = VersionedSettingsBranch("master"), buildScanTags = listOf("Check"), subprojects = JsonBasedGradleSubprojectProvider(File("../.teamcity/subprojects.json")) ) @Test fun `create correct PerformanceTest build type for Linux`() { val performanceTest = PerformanceTest( buildModel, Stage(
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Sep 30 07:24:00 UTC 2024 - 7.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/BasePublishGradleDistribution.kt
abstract class BasePublishGradleDistribution( // The branch to be promoted val promotedBranch: String, val prepTask: String?, val triggerName: String, val gitUserName: String = "bot-teamcity", val gitUserEmail: String = "bot-teamcity@gradle.com", val extraParameters: String = "", vcsRootId: String = gradlePromotionMaster, cleanCheckout: Boolean = true ) : BasePromotionBuildType(vcsRootId, cleanCheckout) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Feb 07 17:05:02 UTC 2024 - 3.1K bytes - Viewed (0)