-
Notifications
You must be signed in to change notification settings - Fork 757
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TeamCity change in 'Ideavim / IdeaVim releases' project: runners of '…
…Publish Dev Build' build configuration were updated
- Loading branch information
1 parent
5652774
commit b35b51c
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package patches.buildTypes | ||
|
||
import jetbrains.buildServer.configs.kotlin.v2019_2.* | ||
import jetbrains.buildServer.configs.kotlin.v2019_2.buildSteps.GradleBuildStep | ||
import jetbrains.buildServer.configs.kotlin.v2019_2.buildSteps.gradle | ||
import jetbrains.buildServer.configs.kotlin.v2019_2.buildSteps.script | ||
import jetbrains.buildServer.configs.kotlin.v2019_2.ui.* | ||
|
||
/* | ||
This patch script was generated by TeamCity on settings change in UI. | ||
To apply the patch, change the buildType with id = 'ReleaseDev' | ||
accordingly, and delete the patch script. | ||
*/ | ||
changeBuildType(RelativeId("ReleaseDev")) { | ||
expectSteps { | ||
script { | ||
name = "Pull git tags" | ||
scriptContent = "git fetch --tags origin" | ||
} | ||
script { | ||
name = "Pull git history" | ||
scriptContent = "git fetch --unshallow" | ||
} | ||
gradle { | ||
name = "Calculate new dev version" | ||
tasks = "scripts:calculateNewDevVersion" | ||
} | ||
gradle { | ||
name = "Set TeamCity build number" | ||
tasks = "scripts:setTeamCityBuildNumber" | ||
} | ||
gradle { | ||
tasks = "publishPlugin" | ||
} | ||
} | ||
steps { | ||
update<GradleBuildStep>(2) { | ||
clearConditions() | ||
jdkHome = "%env.JDK_17_0_x64%" | ||
} | ||
} | ||
} |